17.04.2014, 09:42
For the warning : symbol is not used, there is a pre-processor instruction which hides it from compiling log (just like the lose indentation).
The symbol is #pragma unused VarName
For example, #pragma unused EventOnPlayerDeath will hide the "warning : symbol is never used ("EventOnPlayerDeath")" from the compiling log.
But don't create vars you'll not use : it's wasting RAM.
As someone said : show us the line 1 of your code, we can't guess it.
The symbol is #pragma unused VarName
For example, #pragma unused EventOnPlayerDeath will hide the "warning : symbol is never used ("EventOnPlayerDeath")" from the compiling log.
But don't create vars you'll not use : it's wasting RAM.
As someone said : show us the line 1 of your code, we can't guess it.