SA-MP Forums Archive
warning 202 - 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)
+--- Thread: warning 202 (/showthread.php?tid=587153)



warning 202 - norton2 - 28.08.2015

I tried to create a dialog in style "DIALOG_STYLE_TABLIST_HEADERS" caught strcat and receive error.
ERROR:
Код HTML:
warning 202: number of arguments does not match definition
LINE:
Код HTML:
strcat(pFaction, "Los Santos Police Department\tSFF\t%s\n", sizeof(pFaction), GetFactionLeader(1));



Re: warning 202 - Vince - 28.08.2015

format, first.


Re: warning 202 - norton2 - 28.08.2015

Thank you. +REP


Re: warning 202 - Roberto80 - 28.08.2015

Код:
new str[128];
format(str,128, "Los Santos Police Department\tSFF\t%s\n", sizeof(pFaction), GetFactionLeader(1));
strcat(pFaction,str);