SA-MP Forums Archive
[AJUDA] Function is not implemented - 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] Function is not implemented (/showthread.php?tid=295586)



[AJUDA] Function is not implemented - Uriknai - 06.11.2011

Toda vez que tento fazer um comando dum tutorial dб um erro. Jб procurei no ******, nгo achei nada
Tem como me ajudar ?
Eis o erro:
Код:
C:\Users\Roxas\Desktop\SAMP\gamemodes\RPGComhelper.pwn(16177) : error: 004: function "SendAdminMessage" is not implemented



Re: [AJUDA] Function is not implemented - gabrielbnv - 06.11.2011

Topo do GM:
pawn Код:
forward SendAdminMessage(color, string[]);
Final do GM:
pawn Код:
public SendAdminMessage(color, string[])
{
    for(new i = 0; i < MAX_PLAYERS; i++)
    {
        if(IsPlayerConnected(i))
        {
            if(PlayerInfo[i][pAdmin] >= 1)
            {
                SendClientMessage(i, color, string);
            }
        }
    }
}



Re: [AJUDA] Function is not implemented - Uriknai - 06.11.2011

Deu, vlw *-*