18.06.2012, 15:57
You're a bit impatient, I'm not going to do this but I will however give you the snippets needed.
That's if they have over 30 grand + has job.
Over 30 grand but dont have job.
That's if they have less than 30 grand + has job.
Less 30 grand but dont have job.
Now for being so impatient, you can work where to put them yourself.
pawn Код:
if(PlayerInfo[playerid][pAccount] >= 30000 && PlayerInfo[playerid][pMember] != 0)
pawn Код:
if(PlayerInfo[playerid][pAccount] >= 30000 && PlayerInfo[playerid][pMember] == 0)
pawn Код:
if(PlayerInfo[playerid][pAccount] < 30000 && PlayerInfo[playerid][pMember] != 0)
pawn Код:
if(PlayerInfo[playerid][pAccount] < 30000 && PlayerInfo[playerid][pMember] == 0)
Now for being so impatient, you can work where to put them yourself.