What is problem?? - 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: What is problem?? (
/showthread.php?tid=647000)
What is problem?? -
Longover - 28.12.2017
Error:
Код:
warning 202: number of arguments does not match definition
on line:
Код:
dini_Remove("%sban.ini", name);
Thanks
Re: What is problem?? -
Luis- - 28.12.2017
PHP код:
new string[128];
format(string, sizeof(string), “%sban.ini”, name);
dini_Remove(string);
You have to use format, dini_Remove only has one parameter.
Re: What is problem?? -
Longover - 28.12.2017
Quote:
Originally Posted by Luis-
PHP код:
new string[128];
format(string, sizeof(string), “%sban.ini”, name);
dini_Remove(string);
You have to use format, dini_Remove only has one parameter.
|
Thanks!