Description
Describe the feature
Idle would stop a screen event from triggering again before the allotted time but unlike wait would allow for other screen events to trigger.
Describe the usage
Tracking 2 timers on the same scene.
For instance i have a script that needs to run every 20 minutes under trigger conditions abc
A separate script needs to run every 45 minutes under trigger conditions def.
There is a 3rd condition g that can trigger at any time interval.
Currently with the wait all I can do is have an accumulator on a 1 minute wait timer looking for def and then after 20 cycles checks for abc and runs then continues to 45 to complete Def. Unfortunately during the wait I can never check for condition G.
If there was an idle that would disable the screen trigger without a wait I would be able to check for condition G or beyond while my 2 timing loops are idling.
Is it a duplicate?
- There is no duplicates