Welcome warning
#2

That's not warnings you should worry about. Those just say that you never use those variables anywhere in the script.

Ex:

Only typing this, without using it anywhere:
pawn Код:
new Number = 2;
Would output 'symbol is assigned a value that is never used: "Number"'

Now, this wouldn't output that warning:

pawn Код:
new Number = 2;

if(Number == 2) Number += 1; //ads 1 to Number variable (this, will _use_ the variable, making the symbol is not assigned a value error to go away.)
Reply


Messages In This Thread
Welcome warning - by shoaib_sait - 30.01.2013, 14:34
Re: Welcome warning - by SKAzini - 30.01.2013, 14:53
Re: Welcome warning - by Patrick - 30.01.2013, 14:55
Re: Welcome warning - by mineralo - 30.01.2013, 15:02
Re: Welcome warning - by SKAzini - 30.01.2013, 15:05

Forum Jump:


Users browsing this thread: 1 Guest(s)