Oof8-bit 2025-09-01 16:28 (Edited)
this program is a similar program to Roblox version pre1.1 added vip and one more blox payment
Sylveon 2025-09-02 00:33
Thx for inspiring me on a game engine in LowRes NX! :3
Oof8-bit 2025-09-03 00:37
does anyone know how i can use save with the variables
Sylveon 2025-09-07 19:48 (Edited)
@Oof8-bit yes I do! You can use persistent memory! :3
Here’s an example code that a varable saves whatever you write in it:
REM SYLVEON
GLOBAL MY_VAR, MY_VAR_2
MY_VAR = PEEK($E000)
MY_VAR_2 = PEEK( ($E000)+(1) )
' IF YOU WANT IT TO UPDATE AUTOMATICLY
' ON VBL CALL SVAR
'IF YOU WANT TO SAVE THE CURRENT STATE NORMALY
'CALL SVAR
PRINT "CURRENT STATE OF MY_VAR:"
PRINT MY_VAR
PRINT "CURRENT STATE OF MY_VAR_2:"
PRINT MY_VAR_2
PRINT " "
PRINT "CHANGE MY_VAR VALUE"
INPUT ">";VL$
PRINT "CHANGE MY_VAR_2 VALUE"
INPUT ">";VL2$
MY_VAR=VAL(VL$)
MY_VAR_2=VAL(VL2$)
CALL SVAR
PRINT "SAVED"
SUB SVAR
POKE $E000,MY_VAR
POKE ($E000)+(1),MY_VAR_2
END SUB
Sylveon 2025-09-07 19:51 (Edited)
@Oof8-bit and also here’s my game engine progress :3
Yes I started making something like this in 2022 that flopped really Hard bc I didn’t really know how to program in NX yet :3
Oof8-bit 2025-09-10 00:56
thanks
Oof8-bit 2025-09-10 23:46
so sylveon i just change MY_VAR to Blox or whatever
Oof8-bit 2025-09-12 00:08
also can u make it where you enter the variable can u make it the variable automatically enter it so people don’t cheat BLOX in. TY
Sylveon 2025-09-13 15:19
@Oof8-bit yeah, just change all the references From My_var, My_var_2 to your variable name
Sylveon 2025-09-13 15:24
And yes, that’s a good idea to prevent cheating, here’s the new code :3
REM SYLVEON
GLOBAL MY_VAR, MY_VAR_2
REM MAKE VARIBLES LOAD ON START
MY_VAR = PEEK($E000)
MY_VAR_2 = PEEK( ($E000)+(1) )
' IF YOU WANT IT TO UPDATE AUTOMATICLY
' ON VBL CALL SVAR
'IF YOU WANT TO SAVE THE CURRENT STATE NORMALY
'CALL SVAR
MY_VAR=67
CALL SVAR
' MY_VAR WILL BE 67 EVERY TIME ACROSS THE WHOLE PROGRAM :3
SUB SVAR
POKE $E000,MY_VAR
POKE ($E000)+(1),MY_VAR_2
END SUB
Oof8-bit 2025-09-19 04:57
umm sorry for asking for so much but i was going to say that it says variable is not initialized. does u know how to fix
Sylveon 2025-09-29 15:41
@Oof8-bit Ok send your current code :3 because I tryed the code I sent u and it functions properly :3