Advertisement
Guest User

Untitled

a guest
May 3rd, 2018
195
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.35 KB | None | 0 0
  1. # ________ .__ __________ _____ __ .__
  2. # \______ \ ___.__. ____ _____ _____ |__| ____\______ \__ __ ____ ____ ____ ____ / _ \ __ ___/ |_| |__
  3. # | | < | |/ \\__ \ / \| |/ ___\| | _/ | \/ \ / ___\_/ __ \_/ __ \ / /_\ \| | \ __\ | \
  4. # | ` \___ | | \/ __ \| Y Y \ \ \___| | \ | / | \/ /_/ > ___/\ ___// | \ | /| | | Y \
  5. # /_______ / ____|___| (____ /__|_| /__|\___ >______ /____/|___| /\___ / \___ >\___ >____|__ /____/ |__| |___| /
  6. # \/\/ \/ \/ \/ \/ \/ \//_____/ \/ \/ \/ \/
  7. #
  8. # Author: UraharaNZ Version: 9.05B
  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: 1337
  14. database: 'DynamicBungeeAuth'
  15. user: 'HENK'
  16. password: 'NopeThisIsSecret ;)'
  17.  
  18. # DelayLogin wait 1 or 2 seconds for change server after start a session/register.
  19. DelayLogin: false
  20.  
  21. #Change the UUID of premium players
  22. #true = offline uuid
  23. #false = online uuid
  24. #This will change premium player UUIDs to offline player UUIDS (cracked uuids)
  25. # IM NOT SURE IF IS WORKING FINE!
  26. Do-Not-Use-PremiumUUID: false
  27.  
  28. # Here you can setup a "AntiBot System" where you can set a max login rate per time like (50 players in 1 minute).
  29. MaxLogin:
  30. enabled: true
  31. maximum: 20
  32. seconds: 30
  33. motd:
  34. enabled: false
  35. motd: 'Te veel spelers joinen tegelijk, een ogenblijk geduld aub!'
  36.  
  37. # Set the time of the player have to use the register/login commands.
  38. # Session time out, how long a player has to be offline before they have to run /login again (minutes)
  39. Timers:
  40. LoginTime: 60
  41. RegisterTime: 60
  42. SessionTime: 5
  43.  
  44. # Set your maximum accounts and online accounts per ip.
  45. # Accounts = Registered Accounts.
  46. Maximum:
  47. Accounts: 2
  48. Online: 5
  49.  
  50. # Password Data Setup "Maximum/Minimum Password Length can be used on the register command"
  51. # if The Minimum Password Length = "0" the server will auto set to 3!.
  52. # Current Encryption Support: "DEFAULT = CUSTOM ENCRYPT" "SHA" "SHA-512".
  53. PasswordLength:
  54. Maximum: 10
  55. Minimum: 3
  56. Encryption: 'DEFAULT'
  57.  
  58. # If the players IP does not match the IP within the database, they will require to relogin.
  59. bindCheck: false
  60.  
  61. # Ban here some passwords.
  62. BannedPasswords:
  63. - '123'
  64. - '1234'
  65. - 'asd'
  66. - 'asdf'
  67. - 'dkc'
  68.  
  69. # Accounts that cannot be stolen if a premium player purchases the cracked name.
  70. # use /authadmin setcracked <player> to add names
  71. # These names will be forced to always be cracked accounts
  72. Saved_Accounts:
  73. - 'notch'
  74. - 'null'
  75. - 'sannielollie'
  76.  
  77. # We recommend to enable this for split the load of your servers.
  78. # This methods need to run with Lobby and Auth server for a good balance of load.
  79. Balancer:
  80. LoginServer: false
  81. LobbyServer: false
  82. servers:
  83. auth:
  84. - 'AuthLobby01'
  85. - 'AuthLobby02'
  86. - 'AuthLobby03'
  87. lobby:
  88. - 'Lobby01'
  89. - 'Lobby02'
  90. - 'Lobby03'
  91.  
  92. Redirect:
  93. Enabled: true
  94. Lobby: 'Lobby'
  95.  
  96. # In case you don't will use our balancer you need to setup your servers here
  97. # Always put some servers here for make a "Fallback System."
  98. Servers:
  99. LobbyServer: 'lobby'
  100. AuthServer: 'lobby'
  101.  
  102. #Premium players do not require to register or login
  103. #CHANGING THIS FEATURE TO FALSE OR TRUE REQUIRES A BUNGEECORD RESTART
  104. #If you are using Auth lobby balancers, Make sure you set LobbyServer as one of your Auth Lobbies.
  105. PremiumBypass: true
  106.  
  107. # This feature allow to the cracked users use premium names like notch, etc.
  108. # PLEAZE this option is RECOMMENDED to disable PremiumBypass for security.
  109. # Will be like authme everyone need to register/login but soon will be implemented
  110. # a better system where will work the auto login for the real premium user. :}!
  111. EnableCrackedUsePremiumNames: false
  112.  
  113. #If a server goes down this feature will redirect the player to your defined lobby system
  114. #Supported lobby systems
  115. # - Premium player lobbies / cracked player lobbies
  116. # - Login/Lobby server balancers
  117. # - Normal LobbyServer system
  118. returnLobby:
  119. enabled: true
  120. reasons:
  121. - 'Server gesloten - waarschijnlijk zijn we zo terug!'
  122.  
  123. HubCommand:
  124. enabled: true
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement