25.06.2017, 11:31
Quote:
|
Код:
if (a == true && b == true) {
// This only gets excuted if BOTH a AND (&& = and) b are true
}
if (a == true || b == true) {
// This gets executed when either:
// a == true (b can be true or false) OR (|| = or)
// b == true (a can be true or false)
}
|
PHP код:
if(!IsPlayerAdmin(playerid) || pInfo[playerid][Admin] < 4)

