03.06.2010, 19:23
If you want to know how to make a kill command just look below:
pawn Код:
public OnPlayerCommandText(playerid, cmdtext[])
}
if (strcmp("/kill", cmdtext, true, 10) == 0)
{
SetPlayerHealth(playerid,0);
return 1;
}