21.04.2013, 12:26
You (or someone else using the same script) posted about this a few days ago.
Basically, USE_TEXTDRAW_SET is defined as 2, so you're doing:
if(2 == 2)
which is, as the warning says, redundant (useless).
Use #if or change the define to a variable.
Basically, USE_TEXTDRAW_SET is defined as 2, so you're doing:
if(2 == 2)
which is, as the warning says, redundant (useless).
Use #if or change the define to a variable.