Advertisement
Guest User

Untitled

a guest
Dec 7th, 2019
179
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.34 KB | None | 0 0
  1. #Main config section
  2. #logingroup = the group of server where are the players sent after they join your network (its usualy for offline networks where you need to have separated /login servers and lobbies)
  3. #fallbackgroup is usually group of your lobby servers
  4. #If you do not have separated login servers and lobby server then set logingroup and fallback group to be the same
  5. balancing:
  6. logingroup: AuthServers
  7. fallbackgroup: Lobbies
  8. #List your own groups of servers here in order to activate the balancing between the servers in the group
  9. enabledgroups:
  10. - Lobbies
  11. - AuthServers
  12. #Here you can create additinal groups of servers that should be balanced
  13. Lobbies:
  14. - Hub
  15. - Hub2
  16. AuthServers:
  17. - Inicio
  18.  
  19. #PLayers will be forced to your logingroup of servers after they join your bungee, disabling this will disable logingroup option in the section above, this is useful when you want to just balance your lobby servers and you want that players stays on server where they last logged off or you want to control this feature with another plugin (like BungeeAuthentificator)
  20. force-login-group: true
  21.  
  22. #Detect if lobby server is offline and redirect players to other lobby which is online (this feature may take additional resources especially RAM, by default this feature is disabled)
  23. offlinedetection: false
  24.  
  25. #How often should MultiLobby check the lobby servers if they are online or offline, the interval is in secs. (By default there is an interval 25 seconds, this means that MultiLobby pings all of your lobby servers every 25 secs, if lobby server does not respond to the ping = server is down and MultiLobby will no more be sending players to this server). If there is no online lobby, all players that are trying to connect will be kicked
  26. detectioninterval: 25
  27.  
  28. #Socket timeout for offline detection or external lobby status in miliseconds. Do not touch this value util you have problems with pinging. If you have higher ping between bungee and lobby machines raise this value 2x higher than the ping value between lobby and bungee machines. Default is 100.
  29. socket-timeout: 200
  30.  
  31. #Allows your players use "slash-server-commands". So if your lobby server is called "Lobby2", you can use /Lobby2 to teleport to Lobby2! (it works only for lobby servers).
  32. slash-lobby: false
  33.  
  34. #Command blacklist (from here you can deny some commands on certain servers, there are 2 examples, if you have auth servers, then you probably do not want to let players teleport to lobby without logging-in. If you want to use this feature font forget to change option enabled: true!
  35. cmdblacklist:
  36. enabled: true
  37. AuthServers:
  38. - /lobby
  39. - /hub
  40. Lobbies:
  41. - /lobby
  42. - /hub
  43.  
  44. #Should command /glag show you local or external number of player connected to lobby servers ? (false=internal bungee status)
  45. glag-external-status: true
  46.  
  47. #Motd can be easily edited from here (if enabled) without having to do /greload which is dangerous command and can lead to serious problems, this motd can be loaded by /mlreload command:
  48. motd: '&6My Super Network'
  49. motdenabled: false
  50.  
  51. #If server is closed should be the player moved to the fallback group of servers ? If disable player will be kicked out of the network
  52. kick-move: true
  53.  
  54. #If the kick reason contains one of the following phrases or words, player will be kicked out of the network instead to a lobby server (works only if the kick-move is enabled)
  55. kick-move-reason-blacklist:
  56. - "ban"
  57. - "kick"
  58.  
  59. #Enable lobby-to-lobby balancing?
  60. #This feature will balance players in lobby servers, this means when you are on lobby server and you want to connect to another lobby server the only option is execute /lobby <num>, but if you want to integrate it with some inventory menu plugins where the player can choose what lobby to go on you need to disable this feature!
  61. lobby-to-lobby-balancing: true
  62.  
  63.  
  64. #gsay prefix:
  65. gsay-prefix: ""
  66.  
  67. #Shared chat:
  68. enable-shared-chat: true
  69. shared-chat-format: "&e&lHUB &8| &3%playername% &8» &7%msg%"
  70. #Force the shared chat format even on the same server as the message sender is on
  71. shared-chat-force-format: false
  72.  
  73. #Glist:
  74. #To use the custom glist you have to disable module "cmd_list" in your bungeecord in modules.yml (delete the line) and delete the file cmd_list.jar from "modules" folder located also in your bungeecord folder.
  75. custom-glist: false
  76. glist-format: "&a[%server%] &f(%numplayers%): %playerlist%"
  77. glist-total: "Total player online: %totalnum%"
  78.  
  79. #Enable /player command ?
  80. player-enabled: false
  81.  
  82. #Enable debug:
  83. debug: false
  84.  
  85. #Protect MultiLobby commands againts abuse ?
  86. cmdcooldown: true
  87.  
  88. #Enable /lobby and /hub command
  89. lobbycommand: true
  90.  
  91. #Every 5 seconds prints info about server status into console (players, server load, allocated RAM), this feature is great if you are trying to analyze Bungee-side lags.
  92. printinfo: false
  93.  
  94. #Messages:
  95. enablekickmsg: false
  96. kickmsg: "¡Has sido movido al lobby! Razón: &reason"
  97. spamblock: "¡Bloqueado como spam!"
  98. alternatives: "Alternativas"
  99. playernotfound: "¡Jugador no encontrado!"
  100. ison: " está jugando en "
  101. badarguments: "Bad arguments"
  102. name: "name"
  103. noperm: "¡No tienes permisos!"
  104. wrongnumber: "¡Has usado el comando erróneo! Usa: /lobby <number>"
  105. cmdblock: "&e&lAREFY &8» &c¡No puedes usar ese comando aquí!"
  106. noonlinelobbyfound: "&c¡No hay lobbies en línea en este momento!"
  107.  
  108.  
  109. #Do not touch the version
  110. version: 4
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement