ID:273914
 
So I was wondering how to do something like this :

if(Dead == 1 or Spawning == 1)

Is it possible? Thanks for your help.

p.s That's not actually the check I'm trying to do.
Yes just use the or (||) operator.

if(src.Dead || src.Spawning)


It'll check if either statement is true.
In response to Lugia319
Ah so that's how it's done. Cheers! =D