local variable "pName" shadows a variable at a preceding level
#2

you defined the variable pName twice, you can try renaming the other one to pName2.

example of what you're doing wrong

pawn Code:
new pName;
new pName;

// more like to be this way to get rid of the warnings.

new pName;
new pNameTwo;
Reply


Messages In This Thread
local variable "pName" shadows a variable at a preceding level - by Jack_Rocker - 05.04.2012, 17:55
Re: local variable "pName" shadows a variable at a preceding level - by Kitten - 05.04.2012, 18:00

Forum Jump:


Users browsing this thread: 1 Guest(s)