Guest User

RealTimeWeather config

a guest
Sep 1st, 2024
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 9.91 KB | None | 0 0
  1. # RealTimeWeather Configuration File (v1.4.0)
  2. # You can find detailed instructions at: https://github.com/Jack1424/RealTimeWeather/wiki#editing-the-configuration-file
  3.  
  4. ######################################## Real Time Weather Settings ##################################################
  5. # By default, RealTimeWeather will check if an update is available every 24 hours (1734000 ticks) #
  6. # You can change the interval here (or set to 0 to disable update checks) #
  7. # If this is disabled, RealTimeWeather will still check for updates on startup #
  8. # You can find a handy tick calculator here: https://mapmaking.fr/tick/ #
  9. UpdateCheckInterval: 1734000
  10. #
  11. # Set to true for various console messages when time and weather sync are executed #
  12. # This is useful if the plugin is not working, and you want to find out what's wrong #
  13. # This will also provide error messages even when an error is caught and managed by RTM #
  14. # Note: There will be no messages during a time sync because they happen very frequently #
  15. # Note: Unhandled plugin errors will still be logged regardless of the debug value #
  16. Debug: false
  17. ######################################################################################################################
  18.  
  19. ################################# TIME SYNC SETTINGS #################################################################
  20. # Set to true to enable time syncing, or false to disable #
  21. # All time-related settings will be ignored if this is set to false #
  22. SyncTime: false
  23. # #
  24. # By default, RealTimeWeather will apply the time sync settings below to all worlds #
  25. # End and nether worlds will not be synced #
  26. # If you ony want to enable time syncing in some worlds on your server, set this to false #
  27. TimeSyncAllWorlds: true
  28. # #
  29. # List the worlds that you want RealTimeWeather to sync the time in #
  30. # End and nether worlds will not be synced #
  31. # This only works if TimeSyncAllWorlds is set to false #
  32. TimeSyncWorlds:
  33. - world
  34. # #
  35. # Set to false to enable the /time set command (not recommended) #
  36. BlockTimeSetCommand: true
  37. # #
  38. # Prevent players from sleeping in beds at night (they will still be able to set their spawn point) #
  39. # If you disable this, strange things could happen #
  40. DisableBedsAtNight: true
  41. # The message sent to players when they try to sleep at night when beds are disabled #
  42. DisableBedsAtNightMessage: ''
  43. # #
  44. # You can change the time between time syncs from the default (5 seconds) below #
  45. TimeSyncInterval: 100
  46. # #
  47. # Enter the time zone that you want to sync your world(s) with #
  48. # This location CAN be different from your chosen weather location #
  49. # You can find a full list of timezones here: https://en.wikipedia.org/wiki/List_of_tz_database_time_zones#List #
  50. Timezone: 'Etc/UTC'
  51. # #
  52. # Set to default to use "default" Minecraft sunrise/sunset times (always 5:02 AM and 6:36 PM respectfully) #
  53. # Set to real to sync the sunrise/sunset times with a real world location (configure below) #
  54. # Set to custom to use custom sunrise/sunset times (configure below) #
  55. SunriseSunset: default
  56. # Enter the latitude and longitude of the location that you want to sync the sunrise and sunset with #
  57. # If you set this to a place with no sunrise/sunset (like the North Pole), the default times will be used #
  58. # NOTE: You can find the latitude and longitude of a location at https://www.latlong.net/ #
  59. # This feature is provided for free by SunriseSunset.io #
  60. SunriseSunsetLatitude: '0'
  61. SunriseSunsetLongitude: '0'
  62. # Enter the times that you would like to use for sunrise and sunset #
  63. # You MUST include the seconds (even if they're just 00) #
  64. # Sunrise is defined as 23041 ticks and sunset is 12610 ticks in-game #
  65. SunriseCustomTime: '5:02:27 AM'
  66. SunsetCustomTime: '6:36:36 PM'
  67. ######################################################################################################################
  68.  
  69. ################################# WEATHER SYNC SETTINGS ##############################################################
  70. # Set to true to enable weather syncing, or false to disable #
  71. # All weather-related settings will be ignored if this is set to false #
  72. SyncWeather: true
  73. # #
  74. # By default, RealTimeWeather will apply the weather sync settings below to all worlds #
  75. # End and nether worlds will not be synced #
  76. # If you ony want to enable weather syncing in some worlds on your server, set this to false #
  77. WeatherSyncAllWorlds: true
  78. # #
  79. # List the worlds that you want RealTimeWeather to sync the weather in #
  80. # End and nether worlds will not be synced #
  81. # This only works if WeatherSyncAllWorlds is set to false #
  82. WeatherSyncWorlds:
  83. - world
  84. # #
  85. # Set to false to enable the /weather command (not recommended) #
  86. BlockWeatherCommand: false
  87. # #
  88. # Prevent players from sleeping in beds during a thunderstorm (they will still be able to set their spawn point) #
  89. # If you disable this, it could break weather syncing #
  90. DisableBedsDuringThunder: true
  91. # The message sent to players when they try to sleep during a thunderstorm when beds are disabled #
  92. DisableBedsDuringThunderMessage: ''
  93. # #
  94. # You can change the time between weather syncs from the default (5 minutes) below #
  95. # Setting this value below 200 (10 seconds) is not recommended #
  96. # The minimum safe value on a free API plan is 40 (2 seconds) #
  97. # You can find a handy tick calculator here: https://mapmaking.fr/tick/ #
  98. WeatherSyncInterval: 6000
  99. # #
  100. # In order to access the weather sync feature, create an account at https://openweathermap.org/ #
  101. # Then, create an API key at https://openweathermap.org/appid and copy it #
  102. # Finally, paste the API key below and DO NOT SHARE IT WITH OTHERS #
  103. APIKey: '[CENSORED, there is a functional key here in the actual config file]'
  104. # #
  105. # Enter the latitude and longitude of the location that you want to sync your world(s) weather with #
  106. # NOTE: You can find the latitude and longitude of a location at https://www.latlong.net/ #
  107. WeatherLatitude: '44.465340'
  108. WeatherLongitude: '-72.684303'
  109. # #
  110. ######################################################################################################################
Advertisement
Add Comment
Please, Sign In to add comment