FT for case ejection gun/????FT
sum(clamp01(ammo("Cannon")<100))>0
*Replace 100 with the max ammo of the main barrel/gun.
*Must use "sum(clamp01(CONDITION))>0" argument.
*"sum(clamp01(....))" is basically the time passed when the condition is met. 0 here = time (in seconds). You don't wanna use simple "ammo("...")< X" argument here as it causes issues.
GHun