10.11.2009, 15:45
pawn Код:
if(strcmp("/health",true,7) == 0)
{
new string[48];
new Float:health ;
GetPlayerHealth(playerid,health);
format(string,sizeof(string),"Your health is %i",health);
SendClientMessage(playerid,Color,string);
return 1;
}