Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
Tags

sigurdurf

8
Posts
7
Following
A member registered Oct 15, 2013

Recent community posts

No, CHR$ 144 is the first udg character. Next udg character is CHR$ 145 ("b") and so on until the last udg "u" which is CHR$ 164. You have 21 udg characters which you can change as you want (a,b,c,d,e, f, g, ... u).  In the code you posted earlier you changed udg character "n" which is CHR$ 157.

(1 edit)

If you use Facebook then Simon Ferre is now running tutorial lessons for beginners in the group "BASIC on the ZX Spectrum".  If you are not a member of the group there should be a button there somewhere to apply.

https://www.facebook.com/group...

Here is a code that could give you hints. Use W,A,S,D to move the character.   This one uses the return, see how the GOSUB calls line 1000 at the beginning, the RETURN returns to the line after the GOSUB. So you can break up your code in tidier modules using that method.  

https://pastebin.com/pth8acLU

and if you move the code to the beginning, skip the RETURN line, I forgot that one.   

(1 edit)

I can only see part of your code. Do you have a larger for loop, not seen, around the whole thing? It looks like you have a game loop and you recreate the udg every time?  You only need to create the udg once and then you can start your game loop.  Move the code in lines 62 to 75 to the beginning and make sure it is only run once.

Hi, change the for to "FOR C=0 TO 7" . I think you counted one too many there.

Great, thanks :)

How is the rule regarding binary data? Are we allowed to change the whole character set (outside of only changing the UDGs)? Can we load binary files, only to be used as data for the basic program, like graphics, map data, etc. ?