Is there a way to ‘Wait’ for a specific month. I see only wait for time and wait for ** secs/min/weeks etc.
My goal is to pause piston after condition has met, wait till December and resume piston.
Is there a way to ‘Wait’ for a specific month. I see only wait for time and wait for ** secs/min/weeks etc.
My goal is to pause piston after condition has met, wait till December and resume piston.
I wouldn’t setup a wait schedule that long… something might cancel it over time, such as webCoRE / ST updates.
Instead of pausing the piston, add a Boolean variable, let’s call it pistonHold.
Then use a timer (options > show advanced statements) set for December.
IF
Some trigger(s)
AND
Variable pistonHold IS false
THEN
do stuff
set variable pistonHold = true
Every x day of December
DO
set variable pistonHold = false
Couldn’t you just put a restriction in there
Only when $monthname is ‘December’
If
Then
End