The Dink Network

stupid question actually

October 20th 2003, 10:36 AM
duck.gif
in what file can you change what start's up (the health bar etc.)
in know, a form of stupidity hit me, sorry
October 20th 2003, 10:41 AM
fish.gif
Simeon
Peasant He/Him Netherlands
Any fool can use a computer. Many do. 
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.
October 21st 2003, 08:20 AM
duck.gif
it's a good answer, althought it isn't what i wanted. I want to know what file decides what happens if you push the start button. It creates dink, and you can see his fist and stuff like that
October 21st 2003, 08:36 AM
fish.gif
Simeon
Peasant He/Him Netherlands
Any fool can use a computer. Many do. 
Ah, you need to open start-1.c for that.

start-1.c = Start button
start-2.c = Load button
start-4.c = Quit button
October 27th 2003, 08:06 AM
duck.gif
thanks