'Bigger than' problem
#1

Simple:

pawn Код:
if(PlayerInfo[playerid][pBank] > 1000))
Can't find anything about how to make the > (bigger than) and < (smaller then) things.
Reply
#2

https://sampwiki.blast.hk/wiki/Control_Structures#Operators

btw its:
pawn Код:
if(PlayerInfo[playerid][pBank] > 1000)
Reply
#3

pawn Код:
if(PlayerInfo[playerid][pBank] > 1000 && PlayerInfo[playerid][pBank] < 2000)
Meaning: if its bigger then 1001 and smaller then 1999
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)