17.03.2010, 17:51
Hello you know the tags like '!=' and '<=' idk what != means? does it mean if is not ?
Originally Posted by [AC
Etch ]
=! mean isnt like : if(gTeam[playerid] != Team_Ls) that mean if the team isn't LS =< that sign mean smaller or equal like : if(level =< 5) // level is equal or smaller than 5 >= that sign mean bigger or equal like : if(level >= 5) // level is equal or bigger than 5 < that sign mean bigger if(level > 5) // level bigger than 5 > that sign mean smaller if(level < 5) // level smaller than 5 |
==
if(IsPlayerAdmin(playerid) == 0)
>=
if(GetPlayerVehicleID(playerid) >= 5)
=<
if(GetPlayerVehicleID(playerid) =< 5)
!=
if(GetPlayerVehicleID(playerid) != 0)
&&
if(GetPlayerVehicleID(playerid) == 5 && IsPlayerAdmin(playerid))
||
if(GetPlayerVehicleID(playerid) >= 10 || IsPlayerAdmin(playerid))
>
if(GetPlayerVehicleID(playerid) > 10)
<
if(GetPlayerVehicleID(playerid) < 10)
Originally Posted by [AC
Etch ]
=< that sign mean smaller or equal like : if(level =< 5) // level is equal or smaller than 5 |
Originally Posted by PowerSurge
pawn Код:
pawn Код:
pawn Код:
pawn Код:
pawn Код:
pawn Код:
pawn Код:
pawn Код:
pawn Код:
pawn Код:
pawn Код:
pawn Код:
pawn Код:
pawn Код:
pawn Код:
pawn Код:
|