Advertisement
CoolLord22

Untitled

Nov 14th, 2016
139
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.69 KB | None | 0 0
  1. #########################################################
  2. # MCBans Configuration File
  3. # Plugin version 4.3.5 (Firestar, Syamn)
  4. # - Main Site: http://mcbans.com
  5. # - Support Desk: http://support.mcbans.com
  6. # - Community: http://forums.mcbans.com
  7. ##
  8.  
  9. # prefix:
  10. # Prefix used for MCBans plugin messages to users on the server
  11. # DEFAULT: [MCBans]
  12. prefix: "[SP-Bans]"
  13.  
  14. # apiKey:
  15. # Your servers apiKey can be found in your account dashboard http://my.mcbans.com/servers
  16. apiKey: I_REMOVED_MY_SERVER_API_KEY
  17.  
  18. # language:
  19. # Language you want to have displayed to the players
  20. # DEFAULT: default
  21. language: default
  22.  
  23. # permission:
  24. # Choose permission controller: Vault, PermissionsEx, SuperPerms (default), OPs
  25. # DEFAULT: SuperPerms
  26. permission: PermissionsEx
  27.  
  28. # defaultLocal:
  29. # Default reason for users being locally banned from the server, if no reason is provided.
  30. # DEFAULT: "You have been banned!"
  31. defaultLocal: "You have been banned!"
  32.  
  33. # defaultTemp:
  34. # Default reason for users being temporarily banned from the server, if no reason is provided.
  35. # DEFAULT: "You have been temporarily banned!"
  36. defaultTemp: "You have been temporarily banned!"
  37.  
  38. # defaultKick:
  39. # Default reason for users being kicked from the server, if no reason is provided.
  40. # DEFAULT: "You have been kicked!"
  41. defaultKick: "You have been kicked!"
  42.  
  43. #########################################################
  44. # Loging and Debug
  45. # Debugging and MCBans message logging settings
  46. ##
  47.  
  48. # isDebug:
  49. # Enable additional debug messages throughout the plugin
  50. # DEFAULT: false
  51. isDebug: false
  52.  
  53. # logEnable:
  54. # Enable logging MCBans actions and information to a file
  55. # DEFAULT: false
  56. logEnable: false
  57.  
  58. # logFile:
  59. # Location and name of the file to log MCBans plugin data into
  60. # DEFAULT: plugins/MCBans/actions.log
  61. logFile: "plugins/MCBans/actions.log"
  62.  
  63. #########################################################
  64. # Alternate Account Limiting
  65. # Limits the how alternate accounts affect connectability to the server
  66. ##
  67.  
  68. # enableMaxAlts:
  69. # Activate limiting maximum number of alt accounts (true/false)
  70. # Limits the maximum number of alt accounts a user may have before
  71. # being denied access to the server.
  72. # DEFAULT: false
  73. enableMaxAlts: true
  74.  
  75. # maxAlts:
  76. # Maximum number of alternate accounts allowed before denying user
  77. # DEFAULT: 2
  78. maxAlts: 2
  79.  
  80. #########################################################
  81. # Block logger plugin integration
  82. # Support LogBlock, HawkEye, CoreProtect plugin!
  83. ##
  84.  
  85. # affectedWorlds:
  86. # Worlds to issue log data or rollback
  87. # LogBlock and HawkEye Only! CoreProtect not supported this parameter ;(
  88. # DEFAULT: '*' ('*' to all worlds)
  89. # Multiple worlds: world,world_nether,3rdworld (no spaces)
  90. affectedWorlds: '*'
  91.  
  92. # backDaysAgo:
  93. # days ago to roll back a player
  94. # DEFAULT: 20 (0 (<=0) to infinite)
  95. backDaysAgo: 20
  96.  
  97. #########################################################
  98. # MCBans syncing!
  99. # syncing for bans made into the banned-players.txt
  100. ##
  101.  
  102. # enableAutoSync:
  103. # Allow auto sync to banned-players.txt
  104. # DEFAULT: true
  105. enableAutoSync: true
  106.  
  107. # autoSyncInterval:
  108. # sync every "autoSyncInterval" and grab/delete bans in minutes
  109. # DEFAULT: 5 (5 Minutes)
  110. autoSyncInterval: 5
  111.  
  112. #########################################################
  113. # Miscellaneous Settings
  114. # Settings that don't have a part of any other sections
  115. ##
  116.  
  117. # onJoinMCBansMessage:
  118. # Display "Server protected by MCBans.com" advertisement notice to users upon connection.
  119. # DEFAULT: false, RECOMMENDED: true
  120. onJoinMCBansMessage: false
  121.  
  122. # sendDetailPrevBansOnJoin:
  123. # Show detail previous bans information (banned server, reason, issued by) on player join.
  124. # (Require "mcbans.view.bans" permission. "mcbans.hideview" is exempt permission.)
  125. # DEFAULT: true
  126. sendDetailPrevBansOnJoin: true
  127.  
  128. # minRep:
  129. # Minimum reputation a user may have before being disallowed access to the server.
  130. # DEFAULT: 3 (-1 to disable)
  131. minRep: 3
  132.  
  133. # callBackInterval:
  134. # Time (in minutes) between callbacks to the MCBans Master Server
  135. # (Excluding the API connections on userConnect)
  136. # DEFAULT: 15 (15 Minutes)
  137. callBackInterval: 15
  138.  
  139. # timeout:
  140. # Timeout (in seconds) value of connecting mcbans API server while player joining the server.
  141. # DEFAULT: 10 (10 Seconds)
  142. timeout: 10
  143.  
  144. # failsafe:
  145. # If set to true, disallow access to the server when can't auth players,
  146. # unavailable mcbans api servers (timeout), internal plugin error etc.
  147. # DEFAULT: false
  148. failsafe: false
  149.  
  150. #########################################################
  151. # DO NOT TOUCH
  152. # Do not touch this option! It is a check if you are running the recent configuration version
  153. ##
  154. ConfigVersion: 2
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement