ScriptSheduler improvments

- Add triggerOnInterval feature (every X seconds)
- Fix triggerOnTime triggering scripts only one time
- Update sample task list file
This commit is contained in:
ORelio 2014-07-29 16:52:23 +02:00
parent 47a3cdc783
commit 5cace4e7ff
2 changed files with 39 additions and 7 deletions

View file

@ -10,8 +10,10 @@
triggerOnFirstLogin=false
triggerOnLogin=false
triggerOnTime=true
triggerOnInterval=false
timeValue=19:30
timeValue=08:10
timeInterval=0
script=event.txt
# Another minimal example: some properties may be omitted
@ -30,5 +32,13 @@ triggerOnTime=true
timeValue=00:00
script=midnight.txt
# Example of task occuring every 30 seconds
# Could be used for making a custom antiAFK procedure
[Task]
triggerOnInterval=true
timeInterval=30
script=advanced-anti-afk.txt
# Enjoy!
# - ORelio