SA-MP Forums Archive
FAST HELP ME! +1 - 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: FAST HELP ME! +1 (/showthread.php?tid=646984)



FAST HELP ME! +1 - Longover - 28.12.2017

I'm have a problem:
Код:
warning 202: number of arguments does not match definition
In line:
Код:
SendClientMessage(ID, COLOR_YELLOW, "Admin %s[%d] ti-a dat ban pentru %s zile. (Motiv: %s)", name, playerid, zi, reason);



Re: FAST HELP ME! +1 - RIDE2DAY - 28.12.2017

You can't format strings with SendClientMessage, it supports just three arguments: the ID of the player, the color and the message itself.

Use format instead:
PHP код:
new string[128];
format(stringsizeof(string), "Admin %s[%d] ti-a dat ban pentru %s zile. (Motiv: %s)"nameplayeridzireason);
SendClientMessage(IDCOLOR_YELLOWstring); 



Re: FAST HELP ME! +1 - Longover - 28.12.2017

Quote:
Originally Posted by RIDE2DAY
Посмотреть сообщение
You can't format strings with SendClientMessage, it supports just three arguments: the ID of the player, the color and the message itself.

Use format instead:
PHP код:
new string[128];
format(stringsizeof(string), "Admin %s[%d] ti-a dat ban pentru %s zile. (Motiv: %s)"nameplayeridzireason);
SendClientMessage(IDCOLOR_YELLOWstring); 
Thanks!
I give you +1!