SA-MP Forums Archive
[Ajuda] (symbol "ProcuradoNivel") - 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] (symbol "ProcuradoNivel") (/showthread.php?tid=474707)



(symbol "ProcuradoNivel") - Alisson Silva Alves - 09.11.2013

pawn Код:
warning 235: public function lacks forward declaration (symbol "ProcuradoNivel")
pawn Код:
public ProcuradoNivel()

Cod Inteiro:

pawn Код:
public ProcuradoNivel()
{
    for(new i = 0; i < MAX_PLAYERS; i++)
    {
        if(IsPlayerConnected(i))
        {
            if(WantedPoints[i] >= 1)
            {
                WantedPoints[i] -= 1;
                SetPlayerWantedLevel(i, WantedPoints[i]);
                format(gstring, sizeof(gstring), "Nнvel De Procurado: %d", WantedPoints[i]);
                SendClientMessage(i, COLOR_YELLOW, gstring);
                SetPlayerChatBubble(i, ".", COLOR_RED, 1, 1);
            }
        }
    }
}

Help ?



Re: (symbol "ProcuradoNivel") - shutt_down - 09.11.2013

forward ProcuradoNivel();


Re: (symbol "ProcuradoNivel") - Alisson Silva Alves - 09.11.2013

Ae Vlw