28.09.2012, 14:05
hey...
i made an hospital for ppl to heal their selves
i wanna make if player is having 100 hp it tells him, "your health is already full"
i made an hospital for ppl to heal their selves
i wanna make if player is having 100 hp it tells him, "your health is already full"
PHP код:
else if(clickedid == Heal) //Hospital
{
GivePlayerMoney(playerid,-100);
SetPlayerHealth(playerid, 100);
SendClientMessage(playerid, COLOR_WHITE, "you have Healed Your Self");
}