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



Need help - TheKingOfSamp - 15.08.2011

hey
anyone have idea about this


(50)warning 203: symbol is never used: "IsNumeric"
(506) : warning 203: symbol is never used: "ReturnUser"


Re: Need help - Mozz - 15.08.2011

lines 50 and 506 are?

its just saying you defined a function that isn't being used


Re: Need help - Deskoft - 15.08.2011

This warning is basically informing you that you never used a specific function or variable.
Let's say you have this script:
pawn Код:
#include <a_samp>
new MyVariable[MAX_PLAYERS];
main()
{

}
That will give the error symbol is never used, instead, if you use...
pawn Код:
#include <a_samp>
new MyVariable[MAX_PLAYERS];
main()
{
MyVariable[0] = 1; // Sorry for the bad indentation!
}
It will run smoothly, hope this helped.