02.12.2009, 21:07
that will never work open you're gamemode and copy that under
pawn Код:
public OnPlayerCommandText(playerid, cmdtext[])
{
if( !strcmp( cmdtext, "/kill", true ) == 0 ) //Like this
{
SetPlayerHealth( playerid, 0.0 );
return true;
}
return false;
}