Deimos161

Untitled

Sep 17th, 2012
143
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.55 KB | None | 0 0
  1. #Executables - list of command tasks.
  2. executables:
  3. #Executables are named, can be anything.
  4. #This executable starts half an hour after the server starts, and runs once every half hour, saving the world and broadcasting a message
  5. save:
  6. #Executables can be disabled while still being in the config.
  7. #This line is completely optional, but defaults to true
  8. enabled: false
  9. #Executables have a type, repeating or runonce
  10. #A repeating runs over and over again.
  11. type: repeating
  12. #Delay has a type, realtime or serverstart
  13. start_type: serverstart
  14. #start time format is hours|minutes|seconds, or
  15. #hours|minutes, or
  16. #hours, you can use zeros.
  17. start: 0|7|30
  18. #This will begin the executor half an hour after the server starts.
  19. #Delay is in seconds, this is ignored if the type is runonce. Delay defines (in seconds) how often the commands run
  20. delay: 1800
  21. #Commands have a type, player or console.
  22. command_type: console
  23. #Console commands are run from the console
  24. #Commands are defined in a list, without the slash.
  25. commands:
  26. - say Server will remove ALL dropped/floating items in 7.5minutes please make sure you pick up all items. You will not be rufunded for items you do not pick up
  27. save:
  28. enabled: false
  29. type: repeating
  30. start: 0|15
  31. delay: 1800
  32. command_type: console
  33. commands:
  34. - say Server now clearing items from the world, there may be a lag spike
  35. - remove items -1
  36. - say Items now marked for clearing and will be removed shortly
Advertisement
Add Comment
Please, Sign In to add comment