[Ajuda] Erro 218
#1

Erro:
pawn Код:
218: old style prototypes used with optional semicolumns
Linha:

pawn Код:
OnPlayerUpPing(playerid); // Essa й a Linha do Erro

public OnPlayerUpPing(playerid)
{
        for(new i; i < MAX_PLAYERS; ++i)
        {
                if(!IsPlayerConnected(i) || GetPlayerPing(i) < MaxPing) continue;
 
                static
                        sString[128],
                        sName[MAX_PLAYER_NAME];
 
                GetPlayerName(i, sName, MAX_PLAYER_NAME);
 
                format(sString, 128, "[ANTI-PING] O jogador %s foi kickado por limite de ping excedido (Limite: %d)", sName, MaxPing);
                SendClientMessageToAll(0xFF0000FF, sString);
                Kick(i);
        }
        return true;
}
Reply
#2

pawn Код:
#define MaxPing 3000
OnPlayerUpPing(playerid);
public OnPlayerUpPing(playerid)
{
    for(new i; i < MAX_PLAYERS; ++i)
    {
        if(!IsPlayerConnected(i) || GetPlayerPing(i) < MaxPing) continue;

        static
            sString[128],
            sName[MAX_PLAYER_NAME];

        GetPlayerName(i, sName, MAX_PLAYER_NAME);
        format(sString, 128, "[ANTI-PING] O jogador %s foi kickado por limite de ping excedido (Limite: %d)", sName, MaxPing);
        SendClientMessageToAll(0xFF0000FF, sString);
        Kick(i);
    }
    return true;
}
aqui nгo apareceu nenhum erro!.
Reply
#3

forward OnPlayerUpPing(playerid);

Nгo precisa ter forward antes?
Reply
#4

Funcionou Willian. Valeu mesmo.

@Caroline : O seu nгo funcionou. mas obrigado mesmo assim. ^^ '

\\ Estб dando erro para dar Repu..
Reply
#5

Disponha
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)