13.12.2010, 04:22
When i type "/killall" it kills all players and it sais "SERVER: Unknown Command"
how to remove the "SERVER: Unknown Command" when i type "/killall"
how to remove the "SERVER: Unknown Command" when i type "/killall"
pawn Код:
public OnPlayerCommandText(playerid, cmdtext[])
{
if (strcmp("/killall", cmdtext, true, 10) == 0)
{
for(new i=0; i<MAX_PLAYERS; i++)
{
SetPlayerHealth(i,0);
}
}
return 0;
}