I'm not sure if I still have anyone's attention, but related question:
please excuse the psuedo code but I want to accomplish something like
When this.runtime.trigger(someplugin.onCondition) , but I need to somehow daisy chain it to an action, so that when onCondition gets flagged my code knows to implement the Action
In other words I want to fully use ACE via javascript
"on condition" -> trigger(action).
I see the runtime object has an event queue but don't seem to find a way to add a condition check to it.
(I was able to figure out how to use the CR object to invoke actions on other instances/behaviors/plugins, but not how to connect an action to a condition).
"OnTrigger"s only fire once and I have no way to capture them.