SA-MP Forums Archive
ERROR help faster - 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: ERROR help faster (/showthread.php?tid=445457)



ERROR help faster - markoku - 21.06.2013

I do some stats and i doing like a dialog and i add this pawno givme error look at .

ERROR
Quote:

(794 : error 035: argument type mismatch (argument 2)
(794 : error 035: argument type mismatch (argument 3)

line !
Quote:

format(info, "______________________OPSTO______________________ ",sizeof(info));




Re : ERROR help faster - lelemaster - 21.06.2013

format(info,sizeof(info), "______________________OPSTO__________________ ____ ");


Re: ERROR help faster - Goldilox - 21.06.2013

format(info,sizeof(info)," {YOUR FORMATTED MESSAGE}",{WHAT YOU WANT TO ADD INTO THE FORMAT}");

Example:


pawn Код:
new name[24],string[128];
GetPlayerName(playerid,name,sizeof(name));

CMD:help(playerid,params[])
{
format(string,sizeof(string),"%s needs help.",name);
SendClientMessageToAll(0xFFFFFFAA,string);
}