28.10.2015, 18:48
PHP код:
a && b || c //shit :(
a && (b || c) //ok :)
PHP код:
if(pInfo[playerid][pAdmin] < 1 && (weaponid == 38 || weaponid == 36))
{
new string[110];
format(string,sizeof(string),"%s has been kicked for weapons cheats.", GetName(playerid));
SendClientMessageToAll(COLOR_RED, string);
Kick(playerid);
}