2014-05-14 21:39:26 +02:00
|
|
|
# Minecraft Console Client
|
|
|
|
|
# ScriptScheduler Tasks
|
|
|
|
|
# Example config file
|
|
|
|
|
|
|
|
|
|
# Structure of a task: [Task] Followed by triggers and other settings.
|
|
|
|
|
# The example below contains all the possible fields for a task
|
|
|
|
|
# Time is HH:mm format, several different hours can be provided
|
2020-04-02 18:59:57 +02:00
|
|
|
# Action command can be "script" or any other internal command
|
2014-05-14 21:39:26 +02:00
|
|
|
|
|
|
|
|
[Task]
|
|
|
|
|
triggerOnFirstLogin=false
|
|
|
|
|
triggerOnLogin=false
|
|
|
|
|
triggerOnTime=true
|
2014-07-29 16:52:23 +02:00
|
|
|
triggerOnInterval=false
|
2014-05-14 21:39:26 +02:00
|
|
|
timeValue=19:30
|
|
|
|
|
timeValue=08:10
|
2014-07-29 16:52:23 +02:00
|
|
|
timeInterval=0
|
2020-04-02 18:59:57 +02:00
|
|
|
action=script event.txt
|
2014-05-14 21:39:26 +02:00
|
|
|
|
|
|
|
|
# Another minimal example: some properties may be omitted
|
|
|
|
|
# This is highly recommended for improving task readability
|
|
|
|
|
|
|
|
|
|
[Task]
|
|
|
|
|
triggerOnFirstLogin=true
|
2020-04-02 18:59:57 +02:00
|
|
|
action=script startup.txt
|
2014-05-14 21:39:26 +02:00
|
|
|
|
|
|
|
|
# Of course, the tasks file can contain as much tasks as you want.
|
2018-02-12 21:03:11 -05:00
|
|
|
# Another example triggered on logging in and every night at midnight:
|
2014-05-14 21:39:26 +02:00
|
|
|
|
|
|
|
|
[Task]
|
|
|
|
|
triggerOnLogin=true
|
|
|
|
|
triggerOnTime=true
|
|
|
|
|
timeValue=00:00
|
2020-04-02 18:59:57 +02:00
|
|
|
action=log It's midnight!
|
2014-05-14 21:39:26 +02:00
|
|
|
|
2014-07-29 16:52:23 +02:00
|
|
|
# Example of task occuring every 30 seconds
|
2020-04-02 18:59:57 +02:00
|
|
|
# Could be used for jumping as antiAFK method
|
2014-07-29 16:52:23 +02:00
|
|
|
|
|
|
|
|
[Task]
|
|
|
|
|
triggerOnInterval=true
|
|
|
|
|
timeInterval=30
|
2020-04-02 18:59:57 +02:00
|
|
|
action=move up
|
2014-07-29 16:52:23 +02:00
|
|
|
|
2014-05-14 21:39:26 +02:00
|
|
|
# Enjoy!
|
2018-02-12 21:03:11 -05:00
|
|
|
# - ORelio
|