Conditions Improve

can u improve conditions and add an option. to one time use without disabling the conditions, cuz its daily.

example:
if(time == 10:00) { Stop bot; Change training area ( B ); Start bot; }

stop bot, change spot, start bot.
it should work like that.
NO STOP CHANGE START STOP START STOP START STOP START STOP START !!!

Add an “elapsed” to your condition so it only triggers once per minute.

time elapsed (seconds)
this not an option to set it daily, in case of disconnect it wont trigger at the same time daily.

you can add an extra condition for
time (hh:mm:ss)
or time (once)

No. You need to add “elapsed” and set it to like 60s. It will get reset when your time is also true.

for example:
if (Time == 10:00 && Time Elapsed (seconds) == 60) { Stop bot; Change training area ( B ); Start bot; }
is that u mean?
but it not working with me.

You need to use >= for elapsed.

yes, its working now.
but it execute only one task (first task)
for example:
if i make it elapsed >= 60 and time = 00:00
it working only one time at 00:00 but its execute only the first task.

and if i make it elapsed >= 31~59 and time = 00:00
it working two times in 00:00 and 00:31~59
in 00:00 first task only executed, in 00:31~59 all tasks executed.

i can work with elapsed >= 60 and doing conditions for every single task.

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.