Guest User

Untitled

a guest
Jun 25th, 2018
118
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.36 KB | None | 0 0
  1. ##
  2. # Main Configuration Settings
  3. ##
  4.  
  5. # prefix:
  6. # Prefix used for MCBans plugin messages to users on the server
  7. # DEFAULT: [mcbans]
  8. prefix: [mcbans]
  9.  
  10. # defaultLocal:
  11. # Default reason for users being locally banned from the server, if
  12. # no reason is provided.
  13. # DEFAULT: "You have been banned!"
  14. defaultLocal: "You have been banned!"
  15.  
  16. # defaultTemp:
  17. # Default reason for users being temporarily banned from the server,
  18. # if no reason is provided.
  19. # DEFAULT: "You have been temporarily banned!"
  20. defaultTemp: "You have been temporarily banned!"
  21.  
  22. # defaultKick:
  23. # Default reason for users being kicked from the server, if no reason
  24. # is provided.
  25. # DEFAULT: "You have been kicked!"
  26. defaultKick: "You have been kicked!"
  27.  
  28. ##
  29. # Loging and Debug
  30. # Debugging and MCBans message logging settings
  31. ##
  32.  
  33. # isDebug:
  34. # Enable additional debug messages throughout the plugin
  35. # DEFAULT: false
  36. isDebug: false
  37.  
  38. # logEnable:
  39. # Enable logging MCBans actions and information to a file
  40. # DEFAULT: false
  41. logEnable: false
  42.  
  43. # logFile:
  44. # Location and name of the file to log MCBans plugin data into
  45. # DEFAULT: plugins/mcbans/actions.log
  46. logFile: plugins/mcbans/actions.log
  47.  
  48. ##
  49. # Miscellaneous Setttings
  50. # Settings that don't have a part of any other sections
  51. ##
  52.  
  53. # offlineReason:
  54. # Message displayed to users that are banned from the server, if the
  55. # MCBans Master Server is unavailable.
  56. offlineReason: "You are banned!"
  57.  
  58. # onJoinMCBansMessage:
  59. # Display "Server protected by MCBans.com" advertisement notice to
  60. # users upon connection.
  61. # DEFAULT: false
  62. # RECOMMENDED: true
  63. onJoinMCBansMessage: true
  64.  
  65. # minRep:
  66. # Minimum reputation a user may have before being disallowed access
  67. # to the server.
  68. # DEFAULT: 3
  69. # -1 to disable.
  70. minRep: 3
  71.  
  72. # callBackInterval:
  73. # Time (in Milliseconds) between callbacks to the MCBans Master Server
  74. # (Excluding the API connections on userConnect)
  75. # DEFAULT: 900000 (15 Minutes)
  76. callBackInterval: 900000
  77.  
  78. ##
  79. # Alternate Account Limiting
  80. # Limits the how alternate accounts affect connectability to the server
  81. ##
  82.  
  83. # enableMaxAlts:
  84. # Activate limiting maximum number of alt accounts (true/false)
  85. # Limits the maximum number of alt accounts a user may have before
  86. # being denied access to the server.
  87. # DEFAULT: false
  88. enableMaxAlts: false
  89.  
  90. # maxAlts:
  91. # Maximum number of alternate accounts allowed before denying user
  92. # DEFAULT: 2
  93. maxAlts: 2
  94.  
  95. ##
  96. # User Connection Throttling
  97. # Throttles single user connections over x seconds.
  98. ##
  99.  
  100. # throttleUsers:
  101. # Activate throttling on user connections (true/false)
  102. # Limits the number of times a user can connect in x seconds
  103. # DEFAULT: false
  104. throttleUsers: false
  105.  
  106. # userConnectionTime:
  107. # Time (in Seconds) before the connection counter is reset for users
  108. # DEFAULT: 20
  109. userConnectionTime: 20
  110.  
  111. # userConnectionLimit:
  112. # Maximum number of connections a user may have in the above time limit
  113. # DEFAULT: 2
  114. userConnectionLimit: 2
  115.  
  116. # userLockoutMsg:
  117. # Message displayed to user if they exceed the maximum number of
  118. # connections within the time limit
  119. # DEFAULT: "Connecting too quickly! Please wait a few minutes."
  120. userLockoutMsg: "Connecting too quickly! Please wait a few minutes."
  121.  
  122. # userLockoutTime:
  123. # Time (in Seconds) required for a user to wait before they can attempt
  124. # to connect to the server again after being locked out.
  125. # DEFAULT: 60
  126. userLockoutTime: 60
  127.  
  128. ##
  129. # Server Connection Throttling
  130. # Throttles all connections to the server over x seconds.
  131. ##
  132.  
  133. # throttleAll:
  134. # Activate throttling on all connections (true/false)
  135. # Limits the number of connections allowed in x seconds
  136. throttleAll: false
  137.  
  138. # allConnectionTime:
  139. # Time (in Seconds) before the connection counter is reset globally
  140. # DEFAULT: 15
  141. allConnectionTime: 15
  142.  
  143. # allConnectionLimit:
  144. # Maximum number of connections to the server in the above time limit
  145. # DEFAULT: 5
  146. allConnectionLimit: 5
  147.  
  148. # allLockoutMsg:
  149. # Message displayed to user if the maximum connections to the server
  150. # in the specified time period is exceeded.
  151. # DEFAULT: "Too many connections! Please wait a few minutes."
  152. allLockoutMsg: "Too many connections! Please wait a few minutes."
  153.  
  154. # allLockoutTime:
  155. # Time (in Seconds) required for a user to wait before they can attempt
  156. # to connect to the server again after too many connections.
  157. # DEFAULT: 20
  158. allLockoutTime: 20
Add Comment
Please, Sign In to add comment