26.08.2014, 11:28
pawn Код:
CMD:heal(playerid, params[])
{
if(InDM[playerid] == 1) return SCM(playerid, -1, "You cannot heal yourself in DM Arena");
SetPlayerHealth(playerid, 100);
return 1;
}
CMD:heal(playerid, params[])
{
if(InDM[playerid] == 0)
{
SetPlayerHealth(playerid, 100);
}
else
{
SCM(playerid, -1, "You cannot heal yourself in DM Arena");
}
}