How can I check the status of an effect using Pangoscript

Hi, I'm trying to work out how to detect if an effect is playing or not so I can take an action based on that.
I have individual scripts that run to flash some of the cells through a sequence of colours, and another script for the same cells when an effect is active, but I need some way of detecting if that selected effect is still selected or not. Something like

if (FX1,1) do x

I've been through the object tree several times but can't find something that obviously corrolates to the state of a given effect
 
This where I think it should be in the object tree

Untitled picture.png

I would expect this to represent FX row 1, Cell 1, but this object is always TRUE, no matter the state of the FX cell - If it's active or not, this object is always TRUE. I've tested this using the following watchdog type script

Code:
codename "watchdog"
if (FX.0.0.0.Enabled=FALSE) DisplayPopup "FALSE"; sleep 3000
if (FX.0.0.0.Enabled) DisplayPopup "TRUE"; sleep 3000
restart

I've also tried the other booleans here and none of them change state either
 
Back
Top