Advertisement
Guest User

TimeControl 2.08 - config.yml

a guest
Feb 18th, 2019
38
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 2.00 KB | None | 0 0
  1. # TimeControl by Alex_qp
  2. # By using this plugin you can control the daycycle of minecraft.
  3. # IMPORTANT: This plugin will change the gamerule 'doDaylightCycle' of all affected worlds to false! If you do not want a world to be ever affected use the option below. Re-enabling the gamerule will cause logic bugs.
  4.  
  5. # Set day- and nighttime as well as day-starts-at and standard-day-length in ticks.
  6. # IMPORTANT: The values for day- and night-time will be the actual length of a day / night. All other configurations are just for shifting the time of a normal minecraft day (see the note below).
  7. # IMPORTANT: day-starts-at and standard-day-length are related to the default minecraft ticks.
  8. # Note: If you mess up by creating logical issues with these settings you will be informed in the console and the plugin will use default values (also displayed there).
  9. # Note: day-starts-at and standard-day-length determine the length of a normal minecraft day (light level). You may want to change these if you think at 0 ticks it is still to dark for you to call it a day. If you are fine with the day being from 0-12000 ticks (as stated in the wiki) do not change these values. Again, it has nothing to do with the actual length of the day/night!
  10. day-time: 48000
  11. night-time: 24000
  12. day-starts-at: 0
  13. standard-day-length: 12000
  14. allow-sleep: true
  15.  
  16. # Set the delay between two time updates in ticks.
  17. # Note: Value 0 is not allowed. Again the plugin will use a standard value instead.
  18. check-delay: 5
  19.  
  20. # Choose whether or not you want to deactivate worlds with no players.
  21. # Note: This can be useful if you want your live map to be synched. If set to false it takes up more RAM.
  22. # Note: If set to false empty worlds will not change their time state.
  23. deactivate-empty-worlds: true
  24.  
  25. # List of worlds you do NOT want to be ever affected.
  26. world-exceptions:
  27.  #- world
  28.   #- world_nether
  29.   #- world_the_end
  30.  
  31. # Choose what world environments you want to exclude entirely.
  32. world-environments:
  33.   normal: false
  34.   nether: true
  35.   the_end: true
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement