mirror of
https://github.com/MCCTeam/Minecraft-Console-Client
synced 2025-11-07 17:36:07 +00:00
Last changes for 1.7.3 release
Change config files. Change version number.
This commit is contained in:
parent
49a2d2b681
commit
879c124d6a
7 changed files with 50 additions and 9 deletions
34
MinecraftClient/config/sample-tasks.ini
Normal file
34
MinecraftClient/config/sample-tasks.ini
Normal file
|
|
@ -0,0 +1,34 @@
|
|||
# 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
|
||||
|
||||
[Task]
|
||||
triggerOnFirstLogin=false
|
||||
triggerOnLogin=false
|
||||
triggerOnTime=true
|
||||
timeValue=19:30
|
||||
timeValue=08:10
|
||||
script=event.txt
|
||||
|
||||
# Another minimal example: some properties may be omitted
|
||||
# This is highly recommended for improving task readability
|
||||
|
||||
[Task]
|
||||
triggerOnFirstLogin=true
|
||||
script=startup.txt
|
||||
|
||||
# Of course, the tasks file can contain as much tasks as you want.
|
||||
# Another example tiggered on logging in and every night at midnight:
|
||||
|
||||
[Task]
|
||||
triggerOnLogin=true
|
||||
triggerOnTime=true
|
||||
timeValue=00:00
|
||||
script=midnight.txt
|
||||
|
||||
# Enjoy!
|
||||
# - ORelio
|
||||
Loading…
Add table
Add a link
Reference in a new issue