28.07.2018, 07:42
Let me break it down for you:
local variable "X" shadows a variable at a preceding level, where X is one of the several variables that cause the warning, is pretty self explanatory: a variable named "X" already exists in the indicated file (e.g: callback.inc). You have to go back, remove the new declaration (if not necessary) or rename the variable.
undefined symbol "X" means that the variable X is not being declared in the indicated file (gamemode.pwn).
For the first two parts, you're going to need some time to work on going through all these warnings. I doubt anyone will do it for you, so I hope I've helped.
--
Show me the following lines from vehicleplus.inc: 2138 and 2159 (they are part of a function/they are separate functions, so show me whatever applies).
local variable "X" shadows a variable at a preceding level, where X is one of the several variables that cause the warning, is pretty self explanatory: a variable named "X" already exists in the indicated file (e.g: callback.inc). You have to go back, remove the new declaration (if not necessary) or rename the variable.
undefined symbol "X" means that the variable X is not being declared in the indicated file (gamemode.pwn).
For the first two parts, you're going to need some time to work on going through all these warnings. I doubt anyone will do it for you, so I hope I've helped.
--
Show me the following lines from vehicleplus.inc: 2138 and 2159 (they are part of a function/they are separate functions, so show me whatever applies).