Advertisement
Guest User

Untitled

a guest
Sep 6th, 2018
310
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.72 KB | None | 0 0
  1. # ________ .__ __________ _____ __ .__
  2. # \______ \ ___.__. ____ _____ _____ |__| ____\______ \__ __ ____ ____ ____ ____ / _ \ __ ___/ |_| |__
  3. # | | < | |/ \\__ \ / \| |/ ___\| | _/ | \/ \ / ___\_/ __ \_/ __ \ / /_\ \| | \ __\ | \
  4. # | ` \___ | | \/ __ \| Y Y \ \ \___| | \ | / | \/ /_/ > ___/\ ___// | \ | /| | | Y \
  5. # /_______ / ____|___| (____ /__|_| /__|\___ >______ /____/|___| /\___ / \___ >\___ >____|__ /____/ |__| |___| /
  6. # \/\/ \/ \/ \/ \/ \/ \//_____/ \/ \/ \/ \/
  7. #
  8. # Author: UraharaNZ Version: 9.25B
  9. #
  10. # MySQL Setup "Make sure your server have the less ping ass possible between this server and mysql server for a better performance!".
  11. MySQL:
  12. ip: 'localhost'
  13. port: 3306
  14. database: 'DynamicBungeeAuth'
  15. user: '***********'
  16. password: '************'
  17. UseSSL: true
  18.  
  19. # DelayLogin wait 1 or 2 seconds for change server after start a session/register.
  20. DelayLogin: true
  21.  
  22. # Change the UUID of premium players
  23. # true = offline uuid
  24. # false = online uuid
  25. # This will change premium player UUIDs to offline player UUIDS (cracked uuids)
  26. # IM NOT SURE IF IS WORKING FINE!
  27. Do-Not-Use-PremiumUUID: false
  28.  
  29. # Enable BStats or disable // this is optional is only to get stats of my plugin :P
  30. BStats: false
  31.  
  32. # Enable /premium command usage
  33. EnablePremiumCMD: true
  34.  
  35. # You can disable MojangAPI // This is only for chinese networks mojang sucks there.
  36. DisableMojangAPI: false
  37.  
  38. # Here you can setup a "AntiBot System" where you can set a max login rate per time like (50 players in 1 minute).
  39. MaxLogin:
  40. enabled: true
  41. maximum: 20
  42. seconds: 30
  43. motd:
  44. enabled: false
  45. motd: 'Porfavor, espere unos segundos para entrar.'
  46.  
  47. # Set the time of the player have to use the register/login commands.
  48. # Session time out, how long a player has to be offline before they have to run /login again (minutes)
  49. Timers:
  50. LoginTime: 60
  51. RegisterTime: 80
  52.  
  53. # Set your maximum accounts and online accounts per ip.
  54. # Accounts = Registered Accounts.
  55. Maximum:
  56. Accounts: 2
  57. Online: 2
  58.  
  59. # Password Data Setup "Maximum/Minimum Password Length can be used on the register command"
  60. # if The Minimum Password Length = "0" the server will auto set to 3!.
  61. # Current Encryption Support: "DEFAULT = CUSTOM ENCRYPT" "SHA" "SHA-512" "BCRPYT" "SALTED2MD5".
  62. PasswordLength:
  63. Maximum: 30
  64. Minimum: 3
  65. Encryption: 'DEFAULT'
  66.  
  67. # If the players IP does not match the IP within the database, they will require to relogin.
  68. bindCheck: true
  69.  
  70. # Ban here some passwords.
  71. BannedPasswords:
  72. - '123'
  73. - '1234'
  74. - 'asd'
  75. - 'asdf'
  76. - 'hola'
  77. - 'adios'
  78. - 'abc'
  79. - '098'
  80. - 'password'
  81. - 'constraseña'
  82. - 'pass'
  83. - 'contra'
  84.  
  85. # We recommend to enable this for split the load of your servers.
  86. # This methods need to run with Lobby and Auth server for a good balance of load.
  87. Balancer:
  88. LoginServer: false
  89. LobbyServer: false
  90. servers:
  91. auth:
  92. - 'AuthLobby01'
  93. - 'AuthLobby02'
  94. - 'AuthLobby03'
  95. lobby:
  96. - 'Lobby01'
  97. - 'Lobby02'
  98. - 'Lobby03'
  99.  
  100. Redirect:
  101. Enabled: true
  102. Lobby: 'Lobby'
  103.  
  104. # In case you don't will use our balancer you need to setup your servers here
  105. # Always put some servers here for make a "Fallback System."
  106. Servers:
  107. LobbyServer: 'Lobby'
  108. AuthServer: 'AuthLobby'
  109.  
  110. #Premium players do not require to register or login
  111. #CHANGING THIS FEATURE TO FALSE OR TRUE REQUIRES A BUNGEECORD RESTART
  112. #If you are using Auth lobby balancers, Make sure you set LobbyServer as one of your Auth Lobbies.
  113. PremiumBypass: false
  114.  
  115. # This feature allow to the cracked users use premium names like notch, etc.
  116. # PLEASE this option is RECOMMENDED to disable PremiumBypass for security.
  117. # Will be like authme everyone need to register/login but soon will be implemented
  118. # a better system where will work the auto login for the real premium user. :}!
  119. EnablePremiumProtect: false
  120.  
  121. #If a server goes down this feature will redirect the player to your defined lobby system
  122. #Supported lobby systems
  123. # - Premium player lobbies / cracked player lobbies
  124. # - Login/Lobby server balancers
  125. # - Normal LobbyServer system
  126. returnLobby:
  127. enabled: true
  128. reasons:
  129. - '§aEl servidor se esta reiniciando'
  130.  
  131. HubCommand:
  132. enabled: true
  133.  
  134. # This will fix the mess when you only have 1 server setup with "You are already connected to that server"
  135. # This method already compare if its enable the balancer or not.
  136. Enable:
  137. LobbyRedirect: true
  138. AuthRedirect: true
  139.  
  140. # Sessions
  141. EnableSession: true
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement