30.01.2013, 14:53
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:
Would output 'symbol is assigned a value that is never used: "Number"'
Now, this wouldn't output that warning:
Ex:
Only typing this, without using it anywhere:
pawn Код:
new Number = 2;
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.)