08.08.2011, 00:04
Try this:
I still don't know why the previous one did not work but try that.
pawn Код:
if (strcmp("heal", cmdtext, true, 10) == 0)
{
if(GetPlayerWantedLevel(playerid) < 1)return SendClientMessage(playerid, 0xFFAE1CFF, "Your wanted level has to be more than 1 to be able to use this cmd");
SetPlayerHealth(playerid, 100);
return 1;
}