English Amiga Board


Go Back   English Amiga Board > Coders > Coders. Contest

 
 
Thread Tools
Old 11 March 2019, 02:43   #861
Nightshft
Registered User
 
Nightshft's Avatar
 
Join Date: Mar 2018
Location: Austria
Posts: 617
More enemies, more enemies, ja ja ja ... If you ask me, we need fewer enemies! Damn! Lol

Jokes aside...
I really didn't know the game before this contest and thought it was too hard and therefore checked it out on Mame. Oh. Ok, its supposed to be this way

I feel that collision detection on the arcade maybe is a little more forgiving (a little delay in there?) - perceivable especially when you touch flying creatures while jumping. Just a suggestion.

Awesome work on the game and also the updates Graeme!!

Last edited by Nightshft; 11 March 2019 at 02:51.
Nightshft is offline  
Old 11 March 2019, 11:35   #862
Tigerskunk
Inviyya Dude!
 
Tigerskunk's Avatar
 
Join Date: Sep 2016
Location: Amiga Island
Posts: 2,770
I am super impressed by the dragon rider and those pyramid building dudes.
The game feels so alive now...
Tigerskunk is offline  
Old 11 March 2019, 13:19   #863
mcgeezer
Registered User
 
Join Date: Oct 2017
Location: Sunderland, England
Posts: 2,702
Quote:
Originally Posted by Nightshft View Post
I feel that collision detection on the arcade maybe is a little more forgiving (a little delay in there?) - perceivable especially when you touch flying creatures while jumping. Just a suggestion.
You're totally right here, I haven't tweaked any of the bounds box collision detection yet. I'll build a wire frame for it in the next couple of days to sort it out.


Quote:
Originally Posted by Steril707 View Post
I am super impressed by the dragon rider and those pyramid building dudes.
The game feels so alive now...
Yeah, I'm pleased with the way the Dragon Riders came out too... I've increased their jump speed a little.

The whole speed of enemies, how many are on screen all need tuning, I'm just building the routines to display them for now. I am very tempted to invest the time in building a sprite formation editor, I seem to be re-using the same code over and over now in macros which may make it worth while.
mcgeezer is offline  
Old 11 March 2019, 22:28   #864
mcgeezer
Registered User
 
Join Date: Oct 2017
Location: Sunderland, England
Posts: 2,702
As if there wasn't enough enemies in the game...

[ Show youtube player ]

I had to adjust the blitter/sprite routine slightly to cater for 48x48 sprites in the demon and it looks like I haven't quite got it right yet. I'll fix it tomorrow.

Geezer
mcgeezer is offline  
Old 13 March 2019, 19:36   #865
mcgeezer
Registered User
 
Join Date: Oct 2017
Location: Sunderland, England
Posts: 2,702
I'm hoping the thread contributors could help me out with a bit of an idea I have for Rygar.

I'm tinkering with the idea of adding a set of passwords so that the player can access further rounds in the game.

For example, A password could be unlocked where the player would start at rounds 5, 9, 13, 17 or 21... these are in line with being after the Sunset scene.

I think it will add to the game but I'd like to get some opinions, the arcade would allow you to keep feeding it 10 coins up to round 20... the remaining 7 rounds had to be done with the remaining 3 lives.

What do you's think?

I could perhaps tinker with creating a random key that is written to the disk, this is so that each game adf/install would have different passwords. (although I have no doubt it will be trained anyway).
mcgeezer is offline  
Old 13 March 2019, 21:05   #866
DamienD
Banned
 
DamienD's Avatar
 
Join Date: Aug 2005
Location: London / Sydney
Age: 47
Posts: 20,420
My personal opinion for what it's worth.

Quote:
Originally Posted by mcgeezer View Post
I'm tinkering with the idea of adding a set of passwords so that the player can access further rounds in the game.

For example, A password could be unlocked where the player would start at rounds 5, 9, 13, 17 or 21... these are in line with being after the Sunset scene.
Good idea

Quote:
Originally Posted by mcgeezer View Post
I think it will add to the game but I'd like to get some opinions, the arcade would allow you to keep feeding it 10 coins up to round 20... the remaining 7 rounds had to be done with the remaining 3 lives.

What do you's think?
I don't think this restriction is necessary, makes the game too difficult to complete.

Quote:
Originally Posted by mcgeezer View Post
I could perhaps tinker with creating a random key that is written to the disk, this is so that each game adf/install would have different passwords. (although I have no doubt it will be trained anyway).
No why bother, just keep the passwords universal in the game and not random.
DamienD is offline  
Old 13 March 2019, 21:22   #867
mcgeezer
Registered User
 
Join Date: Oct 2017
Location: Sunderland, England
Posts: 2,702
Quote:
Originally Posted by DamienD View Post
My personal opinion for what it's worth.


Good idea


I don't think this restriction is necessary, makes the game too difficult to complete.


No why bother, just keep the passwords universal in the game and not random.
Thanks for the reply buddy,

On the last point... it will just mean someone will post the passwords (probably in the EAB)... and there'll be no learning curve for the player.
mcgeezer is offline  
Old 13 March 2019, 21:52   #868
DamienD
Banned
 
DamienD's Avatar
 
Join Date: Aug 2005
Location: London / Sydney
Age: 47
Posts: 20,420
Quote:
Originally Posted by mcgeezer View Post
On the last point... it will just mean someone will post the passwords (probably in the EAB)... and there'll be no learning curve for the player.
...but you could say the same thing for all games that have passwords to access levels.

I'd image most people would play from the start and use the password only when they reach that level. That's what I always do
DamienD is offline  
Old 13 March 2019, 21:57   #869
mcgeezer
Registered User
 
Join Date: Oct 2017
Location: Sunderland, England
Posts: 2,702
Quote:
Originally Posted by DamienD View Post
...but you could say the same thing for all games that have passwords to access levels.

I'd image most people would play from the start and use the password only when they reach that level. That's what I always do
Exactly! I think we are saying the same thing.
mcgeezer is offline  
Old 13 March 2019, 22:01   #870
malko
Ex nihilo nihil
 
malko's Avatar
 
Join Date: Oct 2017
Location: CH
Posts: 4,856
Quote:
Originally Posted by mcgeezer View Post
[...] I'm tinkering with the idea of adding a set of passwords so that the player can access further rounds in the game.

For example, A password could be unlocked where the player would start at rounds 5, 9, 13, 17 or 21... these are in line with being after the Sunset scene. [...]
Could be a good idea in order to restart a game another day. But will your password keep the weapons, armor, score, etc. ?
I would also allow the user to continue as long as he wants (restart at the beginning of round where the player died).

Quote:
Originally Posted by mcgeezer View Post
I think it will add to the game but I'd like to get some opinions, the arcade would allow you to keep feeding it 10 coins up to round 20... the remaining 7 rounds had to be done with the remaining 3 lives. [...]
To keep the spirit, I would allow only 1 continue per round from this point (so your current lives + 3 for each rounds). It adds difficulty and the game would not be impossible for less good players.

Quote:
Originally Posted by mcgeezer View Post
I could perhaps tinker with creating a random key that is written to the disk, this is so that each game adf/install would have different passwords. (although I have no doubt it will be trained anyway).
Not sure it's a good idea. People like to share theirs successes.
malko is offline  
Old 13 March 2019, 22:24   #871
mcgeezer
Registered User
 
Join Date: Oct 2017
Location: Sunderland, England
Posts: 2,702
Quick update on just more enemies...

Here I've added the Giant Worm that slithers along the lava and comes to the surface...

[ Show youtube player ]
mcgeezer is offline  
Old 13 March 2019, 22:35   #872
jotd
This cat is no more
 
jotd's Avatar
 
Join Date: Dec 2004
Location: FRANCE
Age: 52
Posts: 8,164
Gods generates random passwords so they're unique to each copy
jotd is online now  
Old 13 March 2019, 23:36   #873
invent
pixels
 
invent's Avatar
 
Join Date: May 2014
Location: Australia
Age: 52
Posts: 476
I like the idea of the playing other rounds, it gives the game extra playability, without necessarily having trainers/cheats.

For my ProXima3 shootemup, you can play any level (great to practice and see new levels) but you only ever see the ending sequence if you play them all. Don't want people to miss out on levels they can't get to.

If there were some way of tracking time played and giving access to new rounds if stuck would be nice, but sounds far to complicated to implement.
invent is offline  
Old 14 March 2019, 02:05   #874
Nightshft
Registered User
 
Nightshft's Avatar
 
Join Date: Mar 2018
Location: Austria
Posts: 617
Im 100% with Damien on this.

Levelcodes good idea!
And creating a unique key and thus unique passwords on a machine might be tempting (fun for the coder), but I'd also stick with global passwords. As already said people like to share and these password lists would also be a nice promotion for the game.
Too bad you dont need computer magazines or BBS for this anymore (I loved to read the german ASM magazine) and I remember people and magazines sharing levelcodes f.e. for lemmings.

IMHO the game isn't too easy (especially when you begin with it) and it's important to give players enough "continue" possibilities. If starting with a levelcode means you get 3 lives there, one approach could be to set a number of max. "continues" that allow the average player to just reach the next levelcode. I dont think I'd like unlimited continues because thats just like unlimited lives, but I'd not make it too hard for beginning players either. Just my 2 cents.

Quote:
Originally Posted by mcgeezer View Post
Here I've added the Giant Worm that slithers along the lava and comes to the surface...
Your worm is more lethal. IIRC it only kills when it's surfaced completely?

Last edited by Nightshft; 14 March 2019 at 02:13.
Nightshft is offline  
Old 14 March 2019, 13:09   #875
Hewitson
Registered User
 
Hewitson's Avatar
 
Join Date: Feb 2007
Location: Melbourne, Australia
Age: 41
Posts: 3,772
I'm sorry, but I think it's a terrible idea. So far, the main ambition of this project has been to make a game as close as possible to the arcade. I vote for keeping it that way.
Hewitson is offline  
Old 14 March 2019, 13:36   #876
Interceptor
Registered User
 
Interceptor's Avatar
 
Join Date: May 2002
Location: Essex, UK
Posts: 414
depends how much luck/chaos is involved. i'm not familiar with Rygar.

a lot of arcade games I used to play actually turned out to be quite bad games when I played them on MAME as you essentially became dependant on adding more credit, and the gameplay was specifically designed to demand this by throwing impossible odds at you.

the way to tell the good from the bad was often how this was implemented. if a game paused while it waited for you to add money, like final fight or the teenage mutant tortoise games, then it was typically a bad game made to hard to take as much money as you could put in. even the flyers promote this. they were designed to make money over and over. if it forced you back to the start of a level, then I guess it did expect you to crack it with enough practice, quite sure r-type worked this way.

double dragon felt like a good exception to this in that you could get good and go through it in one credit.
Interceptor is offline  
Old 14 March 2019, 13:38   #877
mcgeezer
Registered User
 
Join Date: Oct 2017
Location: Sunderland, England
Posts: 2,702
Quote:
Originally Posted by Hewitson View Post
I'm sorry, but I think it's a terrible idea. So far, the main ambition of this project has been to make a game as close as possible to the arcade. I vote for keeping it that way.
You wouldn't be forced to use the passwords.
mcgeezer is offline  
Old 14 March 2019, 16:38   #878
Foul
Registered User
 
Foul's Avatar
 
Join Date: Jun 2009
Location: Perigueux/France
Age: 49
Posts: 1,516
Send a message via ICQ to Foul Send a message via MSN to Foul
Quote:
Originally Posted by hewitson View Post
i'm sorry, but i think it's a terrible idea. So far, the main ambition of this project has been to make a game as close as possible to the arcade. I vote for keeping it that way.
+1
Foul is offline  
Old 14 March 2019, 19:33   #879
DamienD
Banned
 
DamienD's Avatar
 
Join Date: Aug 2005
Location: London / Sydney
Age: 47
Posts: 20,420
Quote:
Originally Posted by Nightshft View Post
Your worm is more lethal. IIRC it only kills when it's surfaced completely?
Yup

Also, I think the Dragon Rider's jump is too high / slow.
DamienD is offline  
Old 14 March 2019, 22:07   #880
mcgeezer
Registered User
 
Join Date: Oct 2017
Location: Sunderland, England
Posts: 2,702
Quote:
Originally Posted by DamienD View Post
Yup

Also, I think the Dragon Rider's jump is too high / slow.
Fixed the Giant Worm... makes it a bit easier.

[ Show youtube player ]
mcgeezer is offline  
 


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools

Similar Threads
Thread Thread Starter Forum Replies Last Post
Entry: Rygar AGA Edition mcgeezer Coders. Entries 75 28 February 2019 20:41
On the Ball - World Cup Edition AGA djcasey request.Old Rare Games 4 25 January 2013 12:39
On The Ball League Edition AGA , Player Manager 2 StarEye Games images which need to be WHDified 11 22 January 2010 18:21
The Vague #1 AGA-RTG edition is released ! kas1e Amiga scene 12 30 October 2007 00:27
On The Ball: World Cup Edition AGA CodyJarrett request.Old Rare Games 11 27 May 2003 06:14

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT +2. The time now is 16:00.

Top

Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2024, vBulletin Solutions Inc.
Page generated in 0.24198 seconds with 16 queries