03.01.2016, 13:22
You're not closing your if-statement (missing bracket).
If your if-statement has more than one instruction, then I recommend putting them in a function block:
If your if-statement has more than one instruction, then I recommend putting them in a function block:
PHP код:
if(sscanf(params, "i", value))
{
SendClientMessage(playerid, 0xFFFFFFFF, "USAGE: /giveall [Amount]");
return 1;
}

