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.
Copyright © 2024 BYOND Software.
All rights reserved.
if(src.Dead || src.Spawning)
It'll check if either statement is true.