The Dink Network

Reply to Re: A Scrip problem

If you don't have an account, just leave the password field blank.
Username:
Password:
Subject:
Antispam: Enter Dink Smallwood's last name (surname) below.
Formatting: :) :( ;( :P ;) :D >( : :s :O evil cat blood
Bold font Italic font hyperlink Code tags
Message:
 
 
September 4th 2007, 01:56 PM
slimeb.gif
DaVince
Peasant He/Him Netherlands
Olde Time Dinkere 
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.