mirror of
https://github.com/MCCTeam/Minecraft-Console-Client
synced 2025-11-07 17:36:07 +00:00
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:
parent
47a3cdc783
commit
5cace4e7ff
2 changed files with 39 additions and 7 deletions
|
|
@ -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
|
||||
Loading…
Add table
Add a link
Reference in a new issue