Advertisement
Guest User

Untitled

a guest
Jul 24th, 2019
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.13 KB | None | 0 0
  1. # _
  2. # /\ /\__ _ _ __| |__ ___ _ __
  3. # / /_/ / _` | '__| '_ \ / _ \| '__|
  4. # / __ / (_| | | | |_) | (_) | |
  5. # \/ /_/ \__,_|_| |_.__/ \___/|_|
  6. #
  7. # An open-source project by Mykyta (TechToolbox)
  8. # https://harbor.nkomarn.xyz
  9. #
  10. # Ahoy, matey! You've arrived at the configuration file, where things get a bit scary.
  11. # Every single thing within this plugin is customizable (at least I tried to make it that way),
  12. # so every message and plugin module can be modified here. If you would like to report a bug
  13. # or suggest a feature, make sure to add an issue on the GitHub page for this plugin!
  14. # GitHub URL: https://github.com/nkomarn/Harbor/issues
  15.  
  16. values:
  17. # How often to run the clock task (used to detect sleep, AFK players, time actionbar, etc.)
  18. # Lower this value for relatively slow servers
  19. clock: 1
  20. # Percent of players that need to sleep to skip night (must be between 0 to 100)
  21. percent: 25
  22. # Time that it takes to be considered AFK (in minutes)
  23. timeout: 15
  24.  
  25. features:
  26. # Toggle night skipping feature. Configure amount of players needed to skip above (percent)
  27. skip: true
  28. # Clear weather when skipping night
  29. weather: true
  30. # Toggle the spawning of phantoms (false = no phantom spawning)
  31. phantoms: false
  32. # Toggle exclusion of operators/players with permission "harbor.bypass" from sleep count
  33. bypass: true
  34. # Toggle exclusion of players in creative and spectator mode
  35. ignore: true
  36. # Prevent all players from entering a bed
  37. block: false
  38. # Detect AFK players and remove them from the sleep count
  39. afk: true
  40. # Displays a notification when a new update is released
  41. notifier: true
  42.  
  43. messages:
  44. chat:
  45. # Toggle chat messages
  46. chat: true
  47. # "Night skipped" chat messages
  48. skipped:
  49. - "&eThe night has been skipped."
  50. # Display which player went to bed
  51. sleeping: "&e[player] &7is now sleeping &7(&a[sleeping]&7/&e[online]&7). &a[needed] &7more needed to skip the night."
  52. # Display when a player left their bed
  53. left: "&e[player] &7got out of bed (&c[sleeping]&7/&e[online]&7), &a[needed] &7more needed to skip."
  54. # Shown when a player tries to sleep and sleeping is blocked
  55. blocked: "&cSleeping is disabled."
  56. # Sent to player when they sleep with "harbor.bypass" permission
  57. bypass: "&eYou've been excluded from the sleep count."
  58. # Shown when a player goes AFK
  59. afk: "&7[player] is now AFK."
  60. # Shown when a player comes back after being AFK
  61. unafk: "&7[player] is no longer AFK."
  62. actionbar:
  63. # Enable/Disable actionbar message
  64. actionbar: false
  65. # Shown when some players are in bed
  66. sleeping: "&e[sleeping] out of [online] players are sleeping ([needed] more needed to skip)."
  67. # Shown when all players are in bed
  68. everyone: "&eEveryone is sleeping. Sweet dreams!"
  69. # Shown when a player tries to sleep and sleeping is blocked
  70. blocked: "&cSleeping is disabled."
  71. title:
  72. # Enable/Disable title messages
  73. title: false
  74. morning:
  75. top: "&6Good morning!"
  76. bottom: "&7Ah, such wonderful weather."
  77. evening:
  78. top: "&cIt's getting a bit late."
  79. bottom: "&7Might want to hit the hay..."
  80. sleeping:
  81. top: "&8ZZZZZZ..."
  82. bottom: "&7Sweet dreams."
  83. miscellaneous:
  84. # Prefix for Harbor command/miscellaneous messages
  85. prefix: "&9[&bSingularity&3Sleep&9] "
  86. # Prefix for player list names when a player is AFK
  87. afkprefix: ""
  88. # Display server version in console
  89. running: "&7Running on version [version]."
  90. # Sent in console when the plugin isn't compatible with the server
  91. incompatible: "&7Spigot [version] isn't compatible with Harbor."
  92. # Harbor reload message
  93. reloaded: "&7Reloaded plugin."
  94. reloaderror: "&7Error reloading Harbor."
  95. # Sent when player doesn't have permissions to run command
  96. permission: "&cInsufficient permissions."
  97. # Sent when command argument isn't recognized
  98. unrecognized: "&cUrecognized command."
  99.  
  100. gui:
  101. # Title for menu that shows when a player executes /sleeping
  102. sleeping: "Sleeping Players | Page [page]"
  103.  
  104. # Spooky controls (don't change)
  105. version: 1.5.1
  106. debug: false
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement