[HELP] Please help me value that is never used - 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: [HELP] Please help me value that is never used (
/showthread.php?tid=80050)
[HELP] Please help me value that is never used -
HeX123 - 01.06.2009
Hi,im new in this forum and i started pawno codding 15 days ago its my problem i do create the gang zone but its error saying
Код:
.../.../...(i cant share my folders :P)(1355) : warning 204: symbol is assigned a value that is never used: "KOW"
the error is this
and 1355. string is this :
Код:
KOW = GangZoneCreate(210.2018, -2755.979, 2977858, -1775.037);
please help me.
Re: Help me please -
kaisersouse - 01.06.2009
Its a warning, not an error. You are getting it because you are assigning value to a variable, but then never calling that variable in the script. You can:
1) ignore the warning until you actually call teh variable "KOW" somewhere in the script
2) add "#pragma unused KOW" (without quotes) at the end of your script
3) *shrug*
Re: [HELP] Please help me value that is never used -
HeX123 - 01.06.2009
Thanks,it working