Master Motion Tracker and detecting when virtual output gets turned on

I have 10 motion sensors, to simply and reduce the number of rules I want to use output 200 as the "global motion tracker"
 
So I have 10 rules like the following:

WHENEVER Mstr Bedroom Motion (Zn 45) BECOMES NOT SECURE
 THEN TURN Output 200 ON FOR 5 MINS, RESTART TIMER IF RUNNING
 
....
 
Then to do something when any of the 10 motion sensors trigger I have..
 
WHENEVER Output 200 STATE IS TURNED ON
   THEN DO STUFF
 
....
 
The problem is the "DO STUFF" never happens. Why?
 
Back
Top