01.03.2019, 19:54
Men tenta Assim:
Nгo sei se vai funcionar, mas tenta ai kkk
PHP код:
CMD:checkbots(playerid, params[])
{
if(gPlayerLogged[playerid] == 0) { return SendClientMessage(playerid, COLOR_LIGHTRED, "* Voce nao esta conectado."); }
if(PlayerInfo[playerid][pAdmin] >= 1)
{
new bots = 0;
new string[128];
for(new i = 1; i < MAX_PLAYERS; i++)
{
if(IsPlayerNPC(i))
{
bots ++;
format(string, sizeof(string), "[ATENCAO] %s [ID: %d] e um player NPC.", pName[i], i);
SendClientMessage(playerid, COLOR_LIGHTRED, string);
}
}
if(bots == 0) return SendClientMessage(playerid, COLOR_WHITE, "Nenhum BOT encontrado no servidor!");
}
else
{
SendClientMessage(playerid, COLOR_GRAD1, "Voce nao e um admin");
}
return 1;
}