05.08.2016, 10:19
When player health will less that 20 it will Send him Message "ou Can't Leave The DeathMatch because you have less that 20 Health" and about 70% is taken from Wiki ![Cheesy](images/smilies/biggrin.png)
![Cheesy](images/smilies/biggrin.png)
Код:
CMD:leave(playerid,params[]) { new Float:health; GetPlayerHealth(playerid,health); if (health > 20.0) { SendClientMessage(playerid,-1, "You Can't Leave The DeathMatch because you have less that 20 Health"); } return 1; }