SA-MP Forums Archive
[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(playeridparams[])
{
    if(
gPlayerLogged[playerid] == 0) { return SendClientMessage(playeridCOLOR_LIGHTRED"* Voce nao esta conectado."); }
    if(
PlayerInfo[playerid][pAdmin] >= 1)
    {
        new 
bots 0;
        new 
string[128];
        foreach(
Boti)
        {
            
format(stringsizeof(string), "[ATENCAO] %s [ID: %d] e um player NPC."pName[i], i);
            
SendClientMessage(playeridCOLOR_LIGHTREDstring);
            
bots 1;
        }
        if(
bots == 0SendClientMessage(playeridCOLOR_WHITE"Nenhum BOT encontrado no servidor!");
    }
    else 
SendClientMessage(playeridCOLOR_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(playeridparams[])
{
    if(
gPlayerLogged[playerid] == 0) { return SendClientMessage(playeridCOLOR_LIGHTRED"* Vocк nao esta conectado."); }
    if(
PlayerInfo[playerid][pAdmin] >= 1)
    {
        new 
bots 0;
        new 
string[128];
        foreach(
Boti)
        {
            if(
IsPlayerNPC(i))
            {
                
format(stringsizeof(string), "[ATENCAO] %s [ID: %d] e um player NPC."pName[i], i);
                
SendClientMessage(playeridCOLOR_LIGHTREDstring);
                
bots 1;
            }
        }
        if(
bots == 0SendClientMessage(playeridCOLOR_WHITE"Nenhum BOT encontrado no servidor!");
    }
    else 
SendClientMessage(playeridCOLOR_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(playeridparams[])
{
    if(
gPlayerLogged[playerid] == 0) { return SendClientMessage(playeridCOLOR_LIGHTRED"* Voce nao esta conectado."); }
    if(
PlayerInfo[playerid][pAdmin] >= 1)
    {
        new 
bots 0;
        new 
string[128];
        for(new 
1MAX_PLAYERSi++)
        {
            if(
IsPlayerNPC(i))
            {
                
bots ++;
                
format(stringsizeof(string), "[ATENCAO] %s [ID: %d] e um player NPC."pName[i], i);
                
SendClientMessage(playeridCOLOR_LIGHTREDstring);
            }
        }
        if(
bots == 0) return SendClientMessage(playeridCOLOR_WHITE"Nenhum BOT encontrado no servidor!");
    }
    else
    {
        
SendClientMessage(playeridCOLOR_GRAD1"Voce nao e um admin");
    }
    return 
1;

Nгo sei se vai funcionar, mas tenta ai kkk