06.08.2016, 12:29
Quote:
|
care to explain why that one is better? when both of them are same ?
|
PHP код:
if(a == 1 || b == 1 || c == 1 && PlayerInfo[playerid][pAdminlevel] < 1)
PHP код:
if(a == 1 || b == 1 || (c == 1 && PlayerInfo[playerid][pAdminlevel] < 1))
PHP код:
if((a == 1 || b == 1 || c == 1) && PlayerInfo[playerid][pAdminlevel] < 1)


