41123 Lines - warning on line 41124? - 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: 41123 Lines - warning on line 41124? (
/showthread.php?tid=266494)
41123 Lines - warning on line 41124? -
Jack_Leslie - 05.07.2011
I get these warnings on line 41124:
Код:
warning 203: symbol is never used: "Seifensive_GivePlayerMoney"
warning 203: symbol is never used: "Seifensive_GivePlayerWeapon"
warning 203: symbol is never used: "Seifensive_TakePlayerMoney"
warning 203: symbol is never used: "alarm"
warning 203: symbol is never used: "bonnet"
warning 203: symbol is never used: "boot"
warning 203: symbol is never used: "deathcost"
warning 203: symbol is never used: "doors"
warning 203: symbol is never used: "engine"
warning 203: symbol is never used: "ipmatch"
warning 203: symbol is never used: "lights"
warning 203: symbol is never used: "objective"
But the script only has 41123 lines, and I can't find the symbols anywhere?
Re: 41123 Lines - warning on line 41124? -
Bakr - 05.07.2011
That means those variables/functions are never used within your mode. If you cannot find those in your main script via CTRL + F, then they're most likely created and not used in the libraries you have included.
Re: 41123 Lines - warning on line 41124? -
=WoR=Varth - 05.07.2011
It said 41124 because you never used it until at very bottom of your script.
Just remove it with "Find" button.
Re: 41123 Lines - warning on line 41124? -
Jack_Leslie - 05.07.2011
Quote:
and I can't find the symbols anywhere?
|
Which means ANYWHERE :P I tried CTRL + F to find them, but I can't find them anywhere..
Re: 41123 Lines - warning on line 41124? -
Jack_Leslie - 05.07.2011
Quote:
Originally Posted by Bakr
That means those variables/functions are never used within your mode. If you cannot find those in your main script via CTRL + F, then they're most likely created and not used in the libraries you have included.
|
I found them in an includes, thankyou!