Warning 219: local variable "number" shadows a variable at a preceding level - 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: Warning 219: local variable "number" shadows a variable at a preceding level (
/showthread.php?tid=608740)
Warning 219: local variable "number" shadows a variable at a preceding level -
Mijata - 04.06.2016
Код:
pawno\include\dutils.inc(148) : warning 219: local variable "number" shadows a variable at a preceding level
What can be problem?
Re: Warning 219: local variable "number" shadows a variable at a preceding level -
iKevin - 04.06.2016
Well you have a global variable number and there's another variable called number in dutils.inc so it shadows it.
Re: Warning 219: local variable "number" shadows a variable at a preceding level -
Mijata - 04.06.2016
Okay, thanks i will rename it.