Franc1sco / sm-zombiereloaded-3-Franug-Edition

Improved version of zombiereloaded plugin with support for CS:GO and CS:S
https://forums.alliedmods.net/showthread.php?t=277597
GNU General Public License v3.0
41 stars 35 forks source link

Scrip Error #17

Closed ByKyTa closed 5 years ago

ByKyTa commented 6 years ago

//// zombiereloaded.sp // // zr/volfeatures/voltools.inc(116) : warning 219: local variable "volumeIndex" shadows a variable at a preceding level // zr/volfeatures/voltools.inc(221) : warning 219: local variable "volumeIndex" shadows a variable at a preceding level // zr/volfeatures/volanticamp.inc(80) : warning 219: local variable "timer" shadows a variable at a preceding level // zr/volfeatures/volfeatures.inc(378) : warning 219: local variable "volumeIndex" shadows a variable at a preceding level // zr/volfeatures/volfeatures.inc(388) : warning 219: local variable "volumeIndex" shadows a variable at a preceding level // zr/volfeatures/volfeatures.inc(462) : warning 219: local variable "volumeIndex" shadows a variable at a preceding level // zr/volfeatures/volfeatures.inc(551) : warning 219: local variable "volumeIndex" shadows a variable at a preceding level // Code size: 361504 bytes // Data size: 1022200 bytes // Stack/heap size: 16384 bytes // Total requirements: 1400088 bytes // // 7 Warnings. // // Compilation Time: 2.36 sec // ----------------------------------------

Press enter to exit ...

RAYs3T commented 6 years ago

Those are just warnings. You can ignore it.

"shadows a variable" means a global variable with the same name as a local one exist. So the local one shadows the global one.