SA-MP Forums Archive
Warning O_O - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Scripting Help (https://sampforum.blast.hk/forumdisplay.php?fid=12)
+---- Forum: Help Archive (https://sampforum.blast.hk/forumdisplay.php?fid=89)
+---- Thread: Warning O_O (/showthread.php?tid=199264)



Warning O_O - SamyRomafia - 15.12.2010

pawn Код:
(3978) : warning 202: number of arguments does not match definition
pawn Код:
new
                string[128]
            ;
            format(string, sizeof(string),">> \"%d\" seconds till \"%s\" named race starts! Type \"/joinrace\" to join the race.",">> Mancano \"%d\" all'inizio della gara \"%s\"! Scrivi \"/joinrace\" per partecipare alla gara.", CountAmount, RaceName);//,">> Mancano \"%d\" all'inizio della gara \"%s\"! Scrivi \"/joinrace\" per partecipare alla gara."
            SendClientMessageToAllLang(GREEN, string);//3978
pawn Код:
SendClientMessageToAllLang(color, langeng[], langpl[], define1[]="", str=0,str2=0, define2[]="", define3[]="", define4[]="",str3=0)
{
    for(new i = 0; i < MAX_PLAYERS; i++)
    {
        if(IsPlayerConnected(i))
        {
            SendClientMessageLang(i, color,langeng, langpl, define1, str, str2, define2, define3, define4,str3);
        }
    }
}



Re: Warning O_O - iggy1 - 15.12.2010

SendClientMessageToAllLang is expecting at least 3 arguments passed. You put just colour and string.