[Ajuda] Comando de verificar se tem bots no servidor - Printable Version
+- SA-MP Forums Archive (
https://sampforum.blast.hk)
+-- Forum: Non-English (
https://sampforum.blast.hk/forumdisplay.php?fid=9)
+--- Forum: Languages (
https://sampforum.blast.hk/forumdisplay.php?fid=33)
+---- Forum: Português/Portuguese (
https://sampforum.blast.hk/forumdisplay.php?fid=34)
+---- Thread: [Ajuda] Comando de verificar se tem bots no servidor (
/showthread.php?tid=664467)
Comando de verificar se tem bots no servidor -
SmokeKiLL - 01.03.2019
Estou tentando criar um comando para verificar se tem bots no servidor, mas nгo estб funcionando.
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];
foreach(Bot, i)
{
format(string, sizeof(string), "[ATENCAO] %s [ID: %d] e um player NPC.", pName[i], i);
SendClientMessage(playerid, COLOR_LIGHTRED, string);
bots = 1;
}
if(bots == 0) SendClientMessage(playerid, COLOR_WHITE, "Nenhum BOT encontrado no servidor!");
}
else SendClientMessage(playerid, COLOR_GRAD1, "Voce nao e um admin");
return 1;
}
Re: Comando de verificar se tem bots no servidor -
G4M30V3R - 01.03.2019
IsPlayerNPC
Re: Comando de verificar se tem bots no servidor -
SmokeKiLL - 01.03.2019
Eu fiz assim e ainda nгo pega ;-;
PHP код:
CMD:checkbots(playerid, params[])
{
if(gPlayerLogged[playerid] == 0) { return SendClientMessage(playerid, COLOR_LIGHTRED, "* Vocк nao esta conectado."); }
if(PlayerInfo[playerid][pAdmin] >= 1)
{
new bots = 0;
new string[128];
foreach(Bot, i)
{
if(IsPlayerNPC(i))
{
format(string, sizeof(string), "[ATENCAO] %s [ID: %d] e um player NPC.", pName[i], i);
SendClientMessage(playerid, COLOR_LIGHTRED, string);
bots = 1;
}
}
if(bots == 0) SendClientMessage(playerid, COLOR_WHITE, "Nenhum BOT encontrado no servidor!");
}
else SendClientMessage(playerid, COLOR_GRAD1, "Voce nao e um admin");
return 1;
}
Re: Comando de verificar se tem bots no servidor -
matheusdorado - 01.03.2019
Men tenta Assim:
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;
}
Nгo sei se vai funcionar, mas tenta ai kkk