[AJUDA]Sei La Que Isso --'
#1



Code:
pawn Код:
for(new i, x = GetMaxPlayers(); i < x; i++)
    {
    if(ServerInfo[AntHacker] == 1)
    {
    if(IsPlayerConnected(i))
    {
    if(GetPlayerWeapon(i) == 38 || GetPlayerWeapon(i) == 36 || GetPlayerWeapon(i) == 35)
    {
    new strant[80];
    if(PlayerInfo[i][Level] >= 1) return false;
    SendClientMessage(i,cinza,"Vocк Foi Kickado Motivo: Arma Ilegal");
    Kick(i);
    format(strant, sizeof(strant),"[HS]--> %s Foi Kickado Motivo: Arma Ilegal",NomeP);
    SendClientMessageToAll(cinza,strant);
    }
    }
    }
    }
Nгo Sei Porque Ta Pulando Essa Linha Nao Colokei Nada :S

Alguem Sabe o Que Pode Ser?
Reply
#2

Ali tem um "[ANTHACKER]", acho que vocк enviou o cуdigo errado.
Reply
#3

Quote:
Originally Posted by Los
Посмотреть сообщение
Ali tem um "[ANTHACKER]", acho que vocк enviou o cуdigo errado.
Modifikei O Code Mais Ta Dando Mesma Coisa :/
Reply
#4

pawn Код:
for(new i, x = GetMaxPlayers(); i < x; i++)
{
    if(ServerInfo[AntHacker] == 1)
    {
        if(GetPlayerWeapon(i) == 38 || GetPlayerWeapon(i) == 36 || GetPlayerWeapon(i) == 35)
        {
             new strant[80];
             if(PlayerInfo[i][Level] >= 1) return false;
             SendClientMessage(i,cinza,"Vocк Foi Kickado Motivo: Arma Ilegal");
             Kick(i);
             format(strant, sizeof(strant),"[HS]--> %s Foi Kickado Motivo: Arma Ilegal",NomeP);
             SendClientMessageToAll(cinza,strant);
             return 1;
        }
    }
    return 1;
}
Reply
#5

Quote:
Originally Posted by Los
Посмотреть сообщение
pawn Код:
for(new i, x = GetMaxPlayers(); i < x; i++)
{
    if(ServerInfo[AntHacker] == 1)
    {
        if(GetPlayerWeapon(i) == 38 || GetPlayerWeapon(i) == 36 || GetPlayerWeapon(i) == 35)
        {
             new strant[80];
             if(PlayerInfo[i][Level] >= 1) return false;
             SendClientMessage(i,cinza,"Vocк Foi Kickado Motivo: Arma Ilegal");
             Kick(i);
             format(strant, sizeof(strant),"[HS]--> %s Foi Kickado Motivo: Arma Ilegal",NomeP);
             SendClientMessageToAll(cinza,strant);
             return 1;
        }
    }
    return 1;
}
Nao Mudo Nada:/
Reply
#6

Tente enviar a mensagem antes do player ser kickado.
Reply
#7

pawn Код:
for(new i, x = GetMaxPlayers(); i < x; i++)
{
    if(ServerInfo[AntHacker] == 1 && IsPlayerConnected(i) && PlayerInfo[i][Level] <= 1)
    {
        if(GetPlayerWeapon(i) == 38 || GetPlayerWeapon(i) == 36 || GetPlayerWeapon(i) == 35)
        {
            SendClientMessage(i,cinza,"Vocк Foi Kickado Motivo: Arma Ilegal");
            new str[80], nome[24];
            GetPlayerName(playerid, nome, 24);
            format(str, 80,"[HS]--> %s Foi Kickado Motivo: Arma Ilegal", nome);
            SendClientMessageToAll(cinza, str);        
            Kick(i);
            return 1;
        }  
    }
    return 1;
}
Reply
#8

Ainda nгo entendi o problema.
Reply
#9

pawn Код:
for(new i, x = GetMaxPlayers(); i < x; i++)
{
    if(ServerInfo[AntHacker] == 1)
    {
        if(GetPlayerWeapon(i) == 38 || GetPlayerWeapon(i) == 36 || GetPlayerWeapon(i) == 35)
        {
             
             if(PlayerInfo[i][Level] >= 1) return false;
             new
                strant[80],
                carol[24]
             ;
             GetPlayerName(i, carol, 24);
             SendClientMessage(i,cinza,"Vocк Foi Kickado Motivo: Arma Ilegal");
             Kick(i);
             format(strant, sizeof(strant),"[HS]--> %s Foi Kickado Motivo: Arma Ilegal",carol);
             SendClientMessageToAll(cinza,strant);
             break;
        }
    }
    return 1;
}
Reply
#10

pawn Код:
for(new i = 0; i < GetMaxPlayers(); i++) //Pra que 2 Variaveis?
{
    if(!IsPlayerConnected(i)) goto PularPlayer; //Sempre use isto em um Loop de Player.
    if(ServerInfo[AntHacker] == 1)
    {
        if(GetPlayerWeapon(i) == 38 || GetPlayerWeapon(i) == 36 || GetPlayerWeapon(i) == 35)
        {
             
             if(PlayerInfo[i][Level] >= 1) return false;
             new
                strant[80],
                pName[24]
             ;
             GetPlayerName(i, pName, MAX_PLAYER_NAME);
             SendClientMessage(i,cinza,"Vocк Foi Kickado Motivo: Arma Ilegal");
             Kick(i);
             format(strant, sizeof(strant),"[HS]--> %s Foi Kickado Motivo: Arma Ilegal", pName);
             SendClientMessageToAll(cinza, strant);
             break;
        }
        PularPlayer:
    }
    return 1;
}
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)