27.09.2015, 12:01
Quote:
Here you go.
pawn Код:
|
Quote:
Код:
CMD:healme(playerid, params[]) { if(GetPlayerScore(playerid) >= 100) // If the player's score is greater than 100, then they can't use this command. { SetPlayerHealth(playerid, 100); // You can change 100 to any health that you want. } return 1; } |
Secondly i want to know why X337's code has >= 100, while ChandraLouis and Ironmen's code have <= 100 and which is the correct way?