CELL.C Demo Game

5

was8bit 2025-07-02 05:24

Everyone is encouraged to remix and post your version of the game :):):)


jpospTynker 2025-07-02 14:46

i don’t expect anybody to beat this version of with atleast 8 coins

CELL.C DEMO GAME.nx | Open in app
2025-07-02 14:46

was8bit 2025-07-02 17:47

Cool, there you go… it’s easier to learn LowResNX by experimenting with a small game … you get the “feel” of how it work…

Try adding a 3rd chamber that requires a 3rd door and a 3rd key

You will have to draw the 3rd door and 3rd key…. Then you will have to add code to make them work..

… if you look at the existing code, you should be able to add the code for the new key and new door..

An important note, variables must be initialized at the top of the code… this is done to avoid the issue of mistyping a variable.. in original LowRes you didn’t need to initialize s variable… this meant if you mistyped a variable, it was treated as a new variable, and since it is easy to mistype, and in long code it is horribly tedious to manually double check all your variables for mystypes… initializing variables means when you mistype a warning will immediately show you which variable you typed has not been initialized … making it super easy to fix ;)


Log in to reply.