Reply to Re: A Scrip problem
If you don't have an account, just leave the password field blank.
The problem is simple, you still have TWO opening braces after your second condition.
Remember this:
- You only need one opening bracket after a function declaration (that's void blah()), and close it when you're done with that function.
- The exact same deal for conditions (if's).
- When you're done coding, count the amount of brackets (and the positions of them) in your code. If there are multiple in a row, or if the amount of {'s doesn't match the amount of }'s, you made a mistake somewhere.
Remember this:
- You only need one opening bracket after a function declaration (that's void blah()), and close it when you're done with that function.
- The exact same deal for conditions (if's).
- When you're done coding, count the amount of brackets (and the positions of them) in your code. If there are multiple in a row, or if the amount of {'s doesn't match the amount of }'s, you made a mistake somewhere.






