I have a piston that executes once/day at 7am. Can I have it execute at 7am and 8am or do I have to have two separate pistons?
Paul
I have a piston that executes once/day at 7am. Can I have it execute at 7am and 8am or do I have to have two separate pistons?
Paul
A snapshot would be helpful. Off the top of my head, here are my thoughts:
-This is possible if you use an if time= statement (NOT ‘every day at 7 am’)
I think the construct might be something like this:
If time=7 am then
do 7 am specific stuff [or nothing]
end if
if time=8 am then
do 8 am specific stuff [or nothing]
end if
do everything you want repeated at both times
Again, context is important but for your generic question, this is one possible solution.
Sorry for not including a snapshot. Here is an example of the piston that works but how would I modify this to execute twice a day at different times?
Thanks for this. I didn’t realize I could click on the ‘and’ operator and change the logical expression to an ‘or’. I made the change and it works perfectly.
Paul