Advertisement
Guest User

Untitled

a guest
Oct 22nd, 2017
53
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.92 KB | None | 0 0
  1. #Executables are named, can be anything.
  2. #This executable starts half an hour after the server starts, and runs once every half hour, saving the world and broadcasting a message
  3. #save:
  4. #Executables can be disabled while still being in the config.
  5. #This line is completely optional, but defaults to true
  6. #enabled: false
  7. #Executables have a type, repeating or runonce
  8. #A repeating runs over and over again.
  9. #type: repeating
  10. #Delay has a type, realtime or serverstart
  11. #start_type: serverstart
  12. #start time format is hours|minutes|seconds, or
  13. #hours|minutes, or
  14. #hours, you can use zeros.
  15. #start: 0|30
  16. #This will begin the executor half an hour after the server starts.
  17. #Delay is in seconds, this is ignored if the type is runonce. Delay defines (in seconds) how often the commands run
  18. #delay: 1800
  19. #Commands are defined in a list, without the slash.
  20. #commands:
  21. #- say Server saving...
  22. #- save-all
  23. #- say Server save complete
  24. #This executable runs once every 15 minutes after the server starts, and is used to tax online players
  25. #tax:
  26. #type: repeating
  27. #start_type: serverstart
  28. #start: 0|15
  29. #delay: 900
  30. #commands:
  31. #- ^PLAYER pay ServerAccount 5
  32. #!PLAYER is used to make the following command execute on all players of the server.
  33. #By default, commands are executed by the console.
  34. #This executable stops the server at midnight.
  35. #stop:
  36. #type: runonce
  37. #start_type: realtime
  38. #30 Seconds after midnight.
  39. #start: 0|0|30
  40. #Delay is not required, as this runs only once
  41. #commands:
  42. #- say Server stopping in 30 seconds..
  43. #- ^PAUSE 10
  44. #- say Server stopping in 20 seconds..
  45. #- ^PAUSE 10
  46. #- say Server stopping in 10 seconds..
  47. #- ^PAUSE 5
  48. #- say Server stopping 5 Seconds..
  49. #- ^PAUSE 5
  50. #- say Server stopping!
  51. #- stop
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement