Reply to Re: Visions
If you don't have an account, just leave the password field blank.
It could be that you have the brackets little messed up. You don't want to close void main before the script is done... Move down 1 of the closing brackets to the end of the script.
void main(void)
{
if(&story == 0)
{
&vision = 1;
}
} <--- This one
I'm kinda tierd so I might have forgot something else, but try that. It may solve your problem
void main(void)
{
if(&story == 0)
{
&vision = 1;
}
} <--- This one
I'm kinda tierd so I might have forgot something else, but try that. It may solve your problem
