Comments

Log in with itch.io to leave a comment.

Adorable game! Great fun. Those horses are neat!

Keep losing my money though :(

Great BASIC work. I'm also just now beginning to recreate some stuff I did years and years ago. Watch this space ;)

All the best from Sweden!

Thanks for the kind comments. Really pleased to hear that you like the game :)

(-1)

Love this. Great backstory too. @bedroom coder, it's possible to have the loading screen not be obscured by the following load message. I've put a TAP together demonstrating this, and a randomise idea. Are you interested in seeing it?

Hi, glad you liked the game. I would love to see the TAP hiding the name of the following load message. I tried to do it with pokes to turn it off and then back on but this seemed to stop the 'Initialising' message at the start of the game. Would also love to hear your randomise idea :)

Yeah the loading POKEs can make a BASIC game go funny. It took me a few tries! In the TAP below, check out the first loader, which I restructured to just one line. The loading message POKE is 23739,111. Then in your main game, check line 3. I moved your POKEs there, and a PAUSE 0 so it waits for a keypress for all the people using turbo loaders.

The CLEAR is to reset the system variables, because the POKE 23739 can mess things up sometimes.

I put RANDOMIZE there too, because it looks like you get the same game every time in the original version.

https://drive.google.com/file/d/1URnxyn7e3zQPCFdq72gH9ebp5bnlS0II/view?usp=shari...

If that link doesn't work, then I could upload it at the Spectrumcomputing forum, but you'd need to join.

Thanks, it downloaded fine. Appreciate your support. I didn't really understand what Randomize did and I did not pick up that it was producing the same game every time and I have play tested it many times.

(3 edits)

RANDOMIZE fixes what the random number sequence that RND uses will be. If you RANDOMIZE a number more than zero, it sets the same (for that number) series  of 'random' numbers every time. If you RANDOMIZE 0 (or just RANDOMIZE) it sets a different series every time based on the spectrum's clock. If you try the following  with RANDOMIZE number versus RANDOMIZE you'll see the difference. The former will give the same sequence every time you RUN, the latter will be different every time.

10 RANDOMIZE 50

20 FOR A=1 TO 10: PRINT RND: NEXT A

Btw I'll be reviewing this for the next issue of Break Space magazine. Is the available version the final release or are there any updates in the pipeline?

Give me more, please, ok?

Ah, this is a great reminder of those lovely type ins. Good work.