Reply to Re: A Scrip problem
If you don't have an account, just leave the password field blank.
I'm counting the braces and I see 5 opening braces and only 2 closing braces. The amount of opening braces has to be the same amount as the amount of closing braces, or it'll be wrong.
void talk( void )
{
if (&key == 1)
{
//code
}
if (&key == 2)
{
//code
}
}
This is the correct amount and position of the braces.
void talk( void )
{
if (&key == 1)
{
//code
}
if (&key == 2)
{
//code
}
}
This is the correct amount and position of the braces.






