12.11.2012, 23:55
PHP код:
if(strcmp(cmd, "/desligarcel", true) == 0)
{
if(PlayerInfo[playerid][pVIP] > 1
if(PlayerInfo[playerid][pSocio] > 1//Adicionei socio pra OWNAR Kk
if(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;
}