02.12.2011, 01:12
(
Последний раз редактировалось English-Conceptz; 02.12.2011 в 02:35.
)
PROBLEM IS SOLVED, BELOW IS A UPDATE FOR THOSE TO LEARN FROM.
"or" in pawno is "||"
example :
if(gPlayerData[playerid][VIP] >= 1 || IsPlayerAdmin(playerid))
if vip level is greater than or equal to 1 or player is admin
more operators:
|| = or
&& = and
> = greater than
< = less than
>= = more than or equal
<= = less than or equal
== = equal
!= = not equal
"or" in pawno is "||"
example :
if(gPlayerData[playerid][VIP] >= 1 || IsPlayerAdmin(playerid))
if vip level is greater than or equal to 1 or player is admin
more operators:
|| = or
&& = and
> = greater than
< = less than
>= = more than or equal
<= = less than or equal
== = equal
!= = not equal