Advertisement
Guest User

Untitled

a guest
Mar 19th, 2019
233
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.15 KB | None | 0 0
  1. WorkMethod:
  2. Value: 3
  3.  
  4. # Kick the player if he use a wrong password for the account
  5. Login:
  6. WrongKick: true
  7.  
  8. # Timer Setup
  9. # CleanRequest = Time to clean cache of the plugin RECOMMENDED 30 (MINUTE)
  10. # RegisterMax = Max time the player has to register the account (SECONDS)
  11. # LoginMax = Max time the player to login to the account (SECONDS)
  12. Timers:
  13. # Time on MINUTE
  14. CleanRequest: 120
  15. # Time on SECONDS
  16. RegisterMax: 60
  17. # Time on SECONDS
  18. LoginMax: 60
  19.  
  20. # Customize the options :D
  21. Options:
  22. MinPasswordLength: 4
  23. MaxPasswordLength: 32
  24. # Supported Encryption Hashers = SHA256, SHA512, SMD5
  25. PasswordHash: 'SHA512'
  26. # Enable Captcha on register EXAMPLE: /register pass pass captchacode
  27. Captcha: false
  28. CaptchaLength: 6
  29. # Use offline UUID "don't recommended and also isn't tested correctly"
  30. OfflineUUID: true
  31. # Anti-Bot Feature (Only Block Connections if the server has X join on Y time)
  32. MaxLogin:
  33. Enabled: true
  34. # Modes
  35. # 1 = Normal (When the Seconds Time pass the player will be able to join again)
  36. # 2 = ShieldMode (When the ShieldDuration time pass the player will be able to join)
  37. # How it's work ShieldMode? A: The plugin triggers the MaxLogin will trigger the ShieldDuration = Adding a new Timer
  38. # This timer will add more seconds of protection. When the MaxLogin count restart the Shield will continue blocking joins until his time reset.
  39. # // SHIELD DURATION IS ON SECONDS.
  40. # Current setup is 30 joins in 10 seconds.
  41. Mode: 1
  42. Max: 30
  43. Seconds: 10
  44. ShieldDuration: 35
  45. # Enable or disable the titles of the plugin
  46. # true = enabled // false = disabled
  47. Titles:
  48. Auto: true
  49. Login: true
  50. Register: true
  51. Successful: true
  52. Sessions:
  53. MaxTimeToApply: 300
  54. NameCheck: true
  55.  
  56. # Handlers = Enable Server Administration = If this is false The plugin will use default server configured on Bungee.
  57. # If balancer is disabled (false) Will use the Single server "AuthS or LobbyS"
  58. # If balancer is enabled (true) Will use the Multi Server "AuthM or LobbyM"
  59. Servers:
  60. AuthHandler: true
  61. LobbyHandler: true
  62. LobbyBalancer: false
  63. AuthBalancer: false
  64. AuthS: 'auth'
  65. LobbyS: 'lobby'
  66. AuthM:
  67. - 'Auth01'
  68. - 'Auth02'
  69. LobbyM:
  70. - 'Lobby01'
  71. - 'Lobby02'
  72.  
  73. # Enable Commands in case you need it.
  74. Commands:
  75. PremiumCMD: false
  76. # This command isn't done at all
  77. CrackedCMD: false
  78.  
  79. # If you have some issues with an api or someone is down disable it here.
  80. # BauxiteAPI is under development please don't use it.
  81. # Fallback 1 = API Mojang
  82. # Fallback 2 = API Cloudprotected
  83. # Fallback 3 = API MineTools
  84. # Fallback 4 = API BauxiteAPI "STILL UNDER IDEAS DON'T USE IT.".
  85. APIS:
  86. Enable:
  87. Mojang:
  88. Enable: true
  89. Fallback: 2
  90. CloudProtected:
  91. Enable: true
  92. Fallback: 1
  93. MineTools:
  94. Enable: true
  95. Fallback: 5
  96. BauxiteAPI:
  97. Enable: false
  98. Fallback: 1
  99.  
  100. # SMTP Configuration
  101. SMTP:
  102. host: 'localhost'
  103. port: '25'
  104. user: 'root'
  105. pass: 'password'
  106. from: 'account@dynamicbungeeauth.net'
  107. file: 'Index.html'
  108. subj: 'DynamicBungeeAuth'
  109.  
  110. # Debug message of APIS
  111. Debug:
  112. apis: true
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement