Reply to Re: AHHHHH! sorry.
If you don't have an account, just leave the password field blank.
If statements work like this:
void main( void )
{
if (&monkey == 1)
{
say_stop("Yeah, monkey dude!!",1);
}
say_stop("MONKEY!!",1);
}
In this case if &monkey equals 1, Dink would say "Yeah, monkey dude!!" and directly after that he'll say "MONKEY!!".
Now with "if statement ends here" I meant that everything after that one bracket is executed, even if &intro wasn't 0. So basically, that bracket was the end of your if-statement.
I hope it's a bit more clear now, and good luck on your D-Mod!
void main( void )
{
if (&monkey == 1)
{
say_stop("Yeah, monkey dude!!",1);
}
say_stop("MONKEY!!",1);
}
In this case if &monkey equals 1, Dink would say "Yeah, monkey dude!!" and directly after that he'll say "MONKEY!!".
Now with "if statement ends here" I meant that everything after that one bracket is executed, even if &intro wasn't 0. So basically, that bracket was the end of your if-statement.
I hope it's a bit more clear now, and good luck on your D-Mod!