Advertisement
Guest User

Untitled

a guest
Feb 16th, 2021
214
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.57 KB | None | 0 0
  1. # All the messages send by the plugin.
  2. messages:
  3. # Supported placeholders for 'redirected' message:
  4. # %from-server% %to-server% %from-group% %to-group% %reason%
  5. redirected:
  6. - "&f"
  7. - "&cAn kick occurred in your connection. &cReason:&r %reason%"
  8. - "&cYou have been send back to the main lobby."
  9. - "&f"
  10. unable-redirect-alias:
  11. - "&f"
  12. - "&cUnable to send you. All servers in that category are unavailable."
  13. - "&f"
  14. unable-redirect-alias-same-category:
  15. - "&f"
  16. - "&cUnable to send you to another server in this category."
  17. - "&f"
  18. alias-no-permission:
  19. - "&cYou don't have enough permissions to join this server group."
  20. alias-not-allowed-server:
  21. - "&cYou cannot use that command here!"
  22.  
  23. # The amount of time between checking if a server is online.
  24. # Players won't be connected to offline servers.
  25. check: 30
  26.  
  27. # The delay that is given to the redirect message.
  28. # When you have a lot of messages when a player joins a certain server this can help to make sure that the redirectplus messages shows as 'newest'.
  29. # The delay is in seconds.
  30. delay: 0
  31.  
  32. # Blacklist. When a kick message contains this word they will NOT get redirected.
  33. # This will result in the player seeing the kick screen.
  34. blacklist:
  35. - "ban"
  36.  
  37. # Detect shutdown in server kick messages
  38. # This can be faster for when you want to shutdowns servers and using RedirectPlus to redirectplus those people.
  39. detect-shutdown:
  40. enabled: true
  41. messages:
  42. - "shutdown"
  43. - "restart"
  44. - "closed"
  45.  
  46. # Don't show the redirect message if the message contains one of the following words.
  47. # Can be useful when redirecting people from a game lobby and stuff.
  48. no-messages:
  49. - "[Silent]"
  50.  
  51. # Disable the uses of aliases on specific servers.
  52. # Useful when having auth servers and AuthMe is not installed on the BungeeCord
  53. disable-aliases:
  54. # A list of servers to disable the aliases on.
  55. servers:
  56. # Regex to identify these servers.
  57. regex: "none"
  58.  
  59. # unknown-group / server
  60. # This will redirect unknown servers to the group listed here:
  61. unknown-group: lobby
  62.  
  63. # Specify defaults here. You can overwrite these settings by adding them to groups them self.
  64. global:
  65. # Spread modes:
  66. # PROGRESSIVE : Fill the server to the progressive-minimal amount, after that fill the next one, giving nicely populated lobbies. Uses LOWEST when the minimal is reached on all servers.
  67. # CYCLE : Cycle to the server to spread the load as much as possible. This can result in players being in a server on their own.
  68. # LOWEST : Send the player to the server with the lowest amount of players online.
  69. # HIGHEST : Send the players to the server with the highest amount of players. (Not adviced!)
  70. spread-mode: PROGRESSIVE
  71.  
  72. # The minimal amount of players that are on a server before the next server gets selected.
  73. progressive-minimal: 20
  74.  
  75. # Server groups and their settings
  76.  
  77. # Log settings, this will show your messages in console so you know what's going on.
  78. log:
  79. # If set to true the plugin will log redirects attempts that are canceled due to blacklisted words.
  80. blacklist: true
  81. # If set to true the plugin will log redirects that fail because no server was found.
  82. redirect-failed: true
  83. # If set to true the plugin will log players that do not get redirected due to the bottom-kick setting enabled.
  84. bottom-kick: false
  85. # If set to true the plugin will log successful redirect attempts.
  86. redirected: true
  87. # If set to true the plugin will log any cancelled redirect attempts due to inactive connections.
  88. inactive: true
  89.  
  90. #EXAMPLE SETUP
  91. groups:
  92. # The main lobby. If kicked from here they should not be redirected so we enable bottom-kick.
  93. # There are no connected servers here.
  94. main-lobby:
  95. bottom-kick: true
  96. spread: true
  97. parent-group: none
  98. servers:
  99. - lobby
  100. connected: {}
  101. # Aliases can be used to redirect people to the server group when they use a certain command (Eg: lobby, hub, survival, towny, etc)
  102. aliases:
  103. - lobby
  104. - test
  105. # This is the survival games group.
  106. # bottom-kick is false, since we want redirects from the connected servers.
  107. # The lobby servers are in the 'servers' list (so they will be redirected to) and the game servers are in the 'connected' list.
  108. survivalworld:
  109. bottom-kick: false
  110. spread: true
  111. parent-group: none
  112. servers:
  113. - survival
  114. connected:
  115. - survival
  116. # Aliases can be used to redirect people to the server group when they use a certain command (Eg: lobby, hub, survival, towny, etc)
  117. aliases:
  118. - survival
  119. - sv
  120.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement