Guest User

Untitled

a guest
Aug 14th, 2018
194
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.19 KB | None | 0 0
  1. # MaintenanceBungee Plugin by KennyTV
  2. # Version 2.3
  3.  
  4. # Enables maintenance-mode.
  5. enable-maintenance-mode: false
  6.  
  7. # The message shown in the multiplayer server list motd.
  8. # If you put in multiple entries, one of them will be chosen randomly on every ping.
  9. pingmessages:
  10. - "&cMaintenance mode!%NEWLINE%&6We will be back soon!"
  11. #- "Another entry"
  12.  
  13. # Is shown at the top right corner of the server in the serverlist,
  14. # where the playercount would normally be displayed.
  15. playercountmessage: "&4Maintenance"
  16.  
  17. # Is shown when you move your mouse above the text at the top right corner of the server in the serverlist,
  18. # where the playercount would normally be displayed.
  19. playercounthovermessage: "&cCurrently under%NEWLINE%&cmaintenance"
  20.  
  21. # Will be shown, when a player tries to join on the server without the permission.
  22. kickmessage: "&cThe server is currently under maintenance!%NEWLINE%Try again later!"
  23.  
  24. # Some self explanatory messages
  25. no-permission: "&cYou do not have the permission to execute that command."
  26. maintenance-activated: "&6Maintenance mode is now activated."
  27. maintenance-deactivated: "&6Maintenance mode is now deactivated."
  28.  
  29. starttimer-broadcast-mesage: '&8[&eMaintenance&8] &7Maintenance mode will be enabled in &6%MINUTES% minutes&7.'
  30. endtimer-broadcast-mesage: '&8[&eMaintenance&8] &7Maintenance mode will be disabled in &6%MINUTES% minutes&7.'
  31.  
  32. # If using the timer command: In what intervalls before enabling/disabling maintenance there will be a broadcast.
  33. timer-broadcasts-for-minutes: [60, 30, 15, 10, 5, 4, 3, 2, 1]
  34.  
  35. # If set to true, players with the maintenance.joinnotification permission will receive a message,
  36. # that a player tried to join the server while maintenance is enabled.
  37. send-join-notification: false
  38. join-notification: "&e%PLAYER% &ctried to join the server."
  39.  
  40. # If set to true, the server icon will be changed to maintenance-icon.png in the Bungee main/base-folder.
  41. custom-maintenance-icon: false
  42.  
  43. # Only enable MySQL if you really know what you are doing.
  44. mysql:
  45. use-mysql: false
  46. host: host
  47. port: 3306
  48. database: database
  49. username: username
  50. password: password
  51. # A new table with this name will be created on first startup when 'use-mysql' is set to true.
  52. table: maintenance_settings
Add Comment
Please, Sign In to add comment