25.02.2010, 12:44
(
Последний раз редактировалось aircombat; 08.04.2011 в 09:52.
)
i made /suspect but problem is when player type a wrong command it shows Unknown Command but it shows you aren't from lspd plz take a look :
________
Vaporizer Volcano
Код:
if(strcmp(cmd,"/suspect", true) == 0)
{
if(GetPlayerSkin(playerid) != 288) return SendClientMessage(playerid, 0xE3E3E3FF, "ERROR: You are not part of the LSP");
new giveplayerid;
tmp = strtok(cmdtext, idx);
SendClientMessage(playerid, 0xE3E3E3FF, "USAGE: /suspect [playerid]");
giveplayerid = strval(tmp);
if(!IsPlayerConnected(giveplayerid)) return SendClientMessage(playerid, 0xE3E3E3FF, "ERROR: Player not Conected!");
{
SendClientMessage(playerid, 0xE3E3E3FF, "Done!");
SetPlayerColor(giveplayerid,0xFF8000FF);
}
return 1;
}
Vaporizer Volcano

