Advertisement
Guest User

Untitled

a guest
Apr 14th, 2017
142
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.44 KB | None | 0 0
  1. autorestart {
  2. # Values: Fixed, Realtime or None. The value choses here represents what timer will be used.
  3. enabled=realtime
  4. fixed {
  5. # How long in hours should the auto restart timer be set for?
  6. interval=6
  7. }
  8. realtime {
  9. # How long in hours should the auto restart timer be set for?
  10. intervals=[
  11. "00:00",
  12. "06:00",
  13. "12:00",
  14. "18:00"
  15. ]
  16. }
  17. }
  18. # Localization to be used, All available translations are in the 'localization' folder
  19. language=EN
  20. restart {
  21. # The command to run if 'use-command' has been enabled
  22. command="/changeme"
  23. # If enabled, This will run the configured command instead of restarting the server.
  24. use-command=false
  25. }
  26. timer {
  27. # warning times before reboot in seconds
  28. broadcast=[
  29. 600,
  30. 300,
  31. 240,
  32. 180,
  33. 120,
  34. 60,
  35. 30,
  36. 10,
  37. 5,
  38. 4,
  39. 3,
  40. 2,
  41. 1
  42. ]
  43. # The required amount of players online to start a vote
  44. min-players=2
  45. notifications {
  46. # Should a sound be played when a restart broadcast is sent?
  47. playsound=true
  48. sound {
  49. # The sound that should play for the notification. (Vanilla sounds can be found here: http://minecraft.gamepedia.com/Sounds.json)
  50. sound-to-play="block.note.pling"
  51. # When should the sound notification start? (This should be the same as one of your broadcast timers)
  52. when-to-start=600
  53. }
  54. title {
  55. # Should a title message pop up in the middle of the screen
  56. enabled=true
  57. # The title message to be displayed ({hours},{minutes},{seconds} will be replaced
  58. message="The server will be restarting in {minutes}:{seconds}"
  59. # How long should the title message show up for before disappearing? (in seconds)
  60. staytime=3
  61. }
  62. }
  63. # Time before another vote to restart can begin. (In minutes)
  64. re-vote=10
  65. # How long should it be before players are allowed to start a vote after the server has restarted (In minutes)
  66. start-vote=60
  67. # Time until the restart after a vote has passed in seconds (default 300 = 5 minutes)
  68. vote-passed=300
  69. # % of online players to vote yes before a restart is triggered.
  70. vote-percent=50
  71. }
  72. tps {
  73. # How long after the server starts until the TPS check initiates. (In minutes)
  74. check-delay=15
  75. # The minimum TPS to initiate a restart timer
  76. minimum=10
  77. # The reason to broadcast if 'use-reason' is enabled
  78. reason-message="Server TPS is below the minimum."
  79. # If set to true, When the restart timer reaches 0, The TPS will be checked again
  80. # If the TPS is above the minimum, the restart is canceled
  81. restart-cancel=false
  82. # The broadcast message sent to everyone if the restart was canceled
  83. restart-cancel-message="&bThe server will not restart. The TPS is now above the minimum"
  84. # Time until the restart after a TPS check has failed, in seconds (default 300 = 5 minutes)
  85. timer=300
  86. # If enabled, the server will initiate a restart timer if the TPS is below the minimum set.
  87. use=false
  88. # If enabled, there will be a reason broadcast alongside the countdown for the restart.
  89. use-reason=true
  90. }
  91. voting {
  92. # Enable or Disable the ability for players to vote for a server restart
  93. enabled=true
  94. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement