[Ajuda] Comando de verificar se tem bots no servidor
#1

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;

Reply
#2

IsPlayerNPC
Reply
#3

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;

Reply
#4

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
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)