Advertisement
BoomerBR

ConsoleScheduler Example Config

Sep 9th, 2015
6,630
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.05 KB | None | 0 0
  1. # Configuration explanation below ~
  2. #
  3. # ALL TIMES ARE IN SECONDS!
  4. # Initial delay is the time before the plugin starts starting
  5. # the commands in the schedule. This is in place so that other
  6. # plugins have the time to start. You could set this to 0,
  7. # but errors may occur.
  8. # Make sure the Command1, Command2, Command3 etc. are numbered
  9. # in succession. This will ensure they all load.
  10. #
  11. # Also make sure you enter a command, heh.
  12. #
  13. # 1 minute = 60 seconds. 1 hour = 3600 seconds
  14. # HOUR in 24-hour format!
  15. # SpecificTime commands ALWAYS repeat!
  16.  
  17. CheckUpdates: true
  18. InitialDelay: 5
  19. CommandSchedule:
  20. Command1:
  21. After: 5
  22. Repeat: true
  23. Interval: 30
  24. Command: say This is an example of a repeating command! It repeats every 30 seconds.
  25. Command2:
  26. After: 10
  27. Repeat: false
  28. Command: say This is an example of a non-repeating command which launches after 10 sec!
  29. Command3:
  30. SpecificTime: true
  31. Hour: 14
  32. Minute: 30
  33. Second: 0
  34. Command: say This is an example of a command which launches at 2:30:00PM!
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement