Reply to Re: AHHHHH! sorry.
If you don't have an account, just leave the password field blank.
You made some serious bracket-mess here, pal, so let's check it out.
void main( void )
{
//this bracket means the beginning of the main procedure
if (&intro == 0)
{
//Anything after this bracket, and before the next is executed only if &intro equals 0
//do your freeze and say stuff here
&intro = 1;
}
//If statement ends here
}
//Main procedure ends here
}
This is the correct code. I don't know why it would crash in the say_stop(); code, because I don't see any errors in that. I usually type say_stop all in lowercase, but I don't think DinkC is case sensitive, since it didn't crash before.
void main( void )
{
//this bracket means the beginning of the main procedure
if (&intro == 0)
{
//Anything after this bracket, and before the next is executed only if &intro equals 0
//do your freeze and say stuff here
&intro = 1;
}
//If statement ends here
}
//Main procedure ends here
}
This is the correct code. I don't know why it would crash in the say_stop(); code, because I don't see any errors in that. I usually type say_stop all in lowercase, but I don't think DinkC is case sensitive, since it didn't crash before.