Multiple triggering events

Discuss RoboTask here
Post Reply
javeld
Posts: 1
Joined: Thu Sep 11, 2008 4:10 am

Multiple triggering events

Post by javeld »

If I want to shut down at 6 pm, provided that my virus scan has finished, there has to be some sort of ..and.. condition. Any suggestions how to do this?  
Oleg
Site Admin
Posts: 3014
Joined: Thu Jan 01, 1970 1:00 am
Contact:

Multiple triggering events

Post by Oleg »

You may to start the task by scheduler (or another trigger) but in the task do the following:

If <condition> then
   ...
   do something
   ...
end if

or

If <condition> then
   ...
   do something
   ...
else
   ...
   do something else
   ...
end if
Post Reply