Reply to Re: Timer
If you don't have an account, just leave the password field blank.
Please post a question on a specific file in the file discussion for that file in the future. And about your problem:
First define a new global variable by adding this line in main.c:
make_global_int("&varry", 0);
(I'm using the variable name &varry for this example...)
Next, do this in timer.c (Sparrow's file):
Replace this line:
//if (&your_var == whatever) goto done;
with:
if (&varry == 1)
{
goto done;
}
Finally, in the script you posted add the line:
&varry = 1;
First define a new global variable by adding this line in main.c:
make_global_int("&varry", 0);
(I'm using the variable name &varry for this example...)
Next, do this in timer.c (Sparrow's file):
Replace this line:
//if (&your_var == whatever) goto done;
with:
if (&varry == 1)
{
goto done;
}
Finally, in the script you posted add the line:
&varry = 1;






