Reply to Re: stupid question actually
If you don't have an account, just leave the password field blank.
Well, you can open main.c to edit the values there:
make_global_int("&lifemax", 10);
make_global_int("&life", 10);
//or other ones
or you can add lines like these to start-1.c (where the game starts) and set them to the values you like:
&lifemax = 20;
&life = 20;
If you use the Skeleton, there are already some lines like those in start-1.c. You can change those or add your own ones, see main.c for the variables you can change.
make_global_int("&lifemax", 10);
make_global_int("&life", 10);
//or other ones
or you can add lines like these to start-1.c (where the game starts) and set them to the values you like:
&lifemax = 20;
&life = 20;
If you use the Skeleton, there are already some lines like those in start-1.c. You can change those or add your own ones, see main.c for the variables you can change.