12.11.2012, 23:51
Então pessoal, eu tenho este código aqui, mas a intenção dele é apenas Administradores e Vips usarem o mesmo.
Mas.. players normais estão conseguindo desfrutar-los do comando, o que há de errado?
PHP код:
if(strcmp(cmd, "/desligarcel", true) == 0)
{
if(PlayerInfo[playerid][pVIP] < 1 && PlayerInfo[playerid][pAdmin] < 1)
{
SendClientMessage(playerid, COLOR_GRAD2, " Você não é jogador VIP ou ADM");
return 1;
}
if (!PhoneOnline[playerid])
{
PhoneOnline[playerid] = 1;
SendClientMessage(playerid, COLOR_GRAD2, " Você desligou seu celular");
CellTime[playerid] = 0;
Mobile[playerid] = 255;
new pSpecialAction = GetPlayerSpecialAction(playerid);
if (pSpecialAction == SPECIAL_ACTION_USECELLPHONE)
{
SetPlayerSpecialAction(playerid,SPECIAL_ACTION_STOPUSECELLPHONE);
}
}
else if (PhoneOnline[playerid])
{
PhoneOnline[playerid] = 0;
SendClientMessage(playerid, COLOR_GRAD2, " Você ligou seu celular");
}
return true;
}