25.04.2014, 12:56
Just to respond to the original problem:
You have a second 'if' inside an 'if' statement. Then, you have a semicolon at the end. Both are not supposed to be in here. The semi colon at the end is only for one-line statements (such as assignments - new var = 1; )
The if statement should only be instantiated once.
pawn Код:
if(text[0] == '!' && if(PlayerInfo[playerid][AdminLevel] >= 1); // line 2482
The if statement should only be instantiated once.