24.08.2011, 23:36
Here look:
Код:
if (strcmp("/kill", cmdtext, true, 10) == 0)
{
if(CommandUse==1)//can use
{
SetPlayerHealth(playerid,0);
return 1;
}
if(CommandUse==0)//cant use
{
SendClientMessage(playerid,COLOR_RED,"You cannot use this command in jail!");
return 1;
}
}

