Reply to Re: help fudge
If you don't have an account, just leave the password field blank.
You declare it in main.c, like this:
This makes a new variable called "&story" with an initial value of 0. &story is declared in main.c already, so you should probably choose a different name here. Also consider taking a look at my cute little tutorial, it's a good place to start if you're a beginner at making DMODs.
make_global_int("&story", 0);
This makes a new variable called "&story" with an initial value of 0. &story is declared in main.c already, so you should probably choose a different name here. Also consider taking a look at my cute little tutorial, it's a good place to start if you're a beginner at making DMODs.