06.04.2013, 07:21
Made in 20 seconds and not tested, this is a basic /heal command:
pawn Код:
CMD:heal(playerid, params[])
{
new hp;
new destid;
if(sscanf(params,"ud",destid,hp)) return SCM(playerid, -1,"Usage: /heal <playerid> <ammount>");
SetPlayerHealth(destid,hp);
SendClientMessage(playerid, pink, "Player healed");
return 1;
}
