02.02.2011, 07:41
You sure this is correct?
Cause I think, this if will be called everytime, since 0.5 and 0.10 and ... are true.
so basically, it checks like this:
Correct me if I'm wrong.
pawn Code:
if(ZombieHP < 0.0 && 0.5 && 0.10 && 0.15 && 0.20 && 0.25 && 0.30 && 0.35 && 0.40 && 0.45 && 0.50 && 0.55 && 0.60 && 0.65 && 0.70 && 0.75 && 0.80 && 0.85 && 0.90 && 0.95 && 100.0 )
so basically, it checks like this:
pawn Code:
if(ZombieHP < 0.0 && true && true && true && true && true && true && true....)

