Advertisement
Guest User

Untitled

a guest
Oct 24th, 2018
221
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 8.13 KB | None | 0 0
  1. # If bungeecord is set to true, banned players will be kicked from BungeeCord itself.
  2. # (Players will not be kicked to the lobby when they are banned.)
  3. # This will also implicitly set ban_sync_ticks and mutes.sync_ticks if not configured.
  4. # This has no effect if the plugin is running under BungeeCord itself.
  5. bungeecord: false
  6.  
  7. sql:
  8. # MySQL, PostgreSQL(pgsql), SQLite, and H2 are supported database drivers.
  9. driver:
  10.  
  11. ## MySQL/PostgreSQL settings ##
  12. # If using SQLite/H2, the database will be stored in the LiteBans plugin folder,
  13. # and most of these settings won't apply.
  14.  
  15. # Database server address to connect to.
  16. # This can be set to a custom file path if using SQLite/H2.
  17. address: sql307.epizy.com
  18.  
  19. # Database name, username and password
  20. database: 'epiz_22878042_litebans'
  21. username: '**********'
  22. password: '**********'
  23.  
  24. table_prefix: 'litebans_'
  25.  
  26. # Database engine. Only applies to MySQL.
  27. engine:
  28.  
  29. # Format: <name>:<class>[:URL]
  30. drivers:
  31.  
  32. durations:
  33. # Can be bypassed with the permission "litebans.unlimited.ban"
  34. tempban_max: 7 days
  35. # Can be bypassed with the permission "litebans.unlimited.mute"
  36. mute_max: 1 day
  37. # If true, players will not get an error when placing bans above the configured limit.
  38. # The duration will be rounded down to the maximum duration instead.
  39. round_down: true
  40.  
  41. mutes:
  42. enabled: true
  43.  
  44. # All of these commands can not be used while muted.
  45. command_blacklist:
  46. - /me
  47. - /say
  48. - /tell
  49. - /whisper
  50. - /reply
  51. - /pm
  52. - /msg
  53. - /emsg
  54. - /epm
  55. - /etell
  56. - /ewhisper
  57. - /w
  58. - /m
  59. - /t
  60. - /r
  61. - /f tag
  62. # If enabled, muted players cannot use commands containing ":", for example: "/minecraft:me".
  63. prevent_bypass: true
  64.  
  65. sync_ticks: 0
  66.  
  67. # All online players will be re-checked for bans per interval when this is set.
  68. # This only makes sense in a multi-server configuration,
  69. # or if you're otherwise manipulating the database while the server is running.
  70. ban_sync_ticks: 0
  71.  
  72. warnings:
  73. # Warnings will expire after this duration has passed.
  74. expire_after: 7 days
  75.  
  76. # Warning actions.
  77. # Format: <amount>[+]:<action>
  78. # If '+' is provided after the amount, the action will execute if the player has that amount of warnings or more.
  79. actions:
  80. - '3:/kick -s:$silent $player Final warning: $reason'
  81. - '4:/tempban -s:$silent $player 1 day Reached 4 warnings: $list'
  82.  
  83. # If enabled, the console will execute warning actions.
  84. # Otherwise, the player who executes the last warning also executes the warning action.
  85. actions_execute_as_console: false
  86.  
  87. # If enabled, all active warnings will be deactivated after a warning action is executed.
  88. delete_warnings_after_action: false
  89.  
  90. notify:
  91. # If enabled, players with the permission 'litebans.notify' or 'litebans.notify.banned_join' will be notified when a banned player tries to join.
  92. banned_player_join: true
  93.  
  94. # If enabled, /dupeip output will be shown on join if the player meets certain conditions.
  95. dupeip_on_join: true
  96.  
  97. # Notify if the player has a banned account on the same IP.
  98. dupeip_on_banned_account: true
  99.  
  100. # If you set this to a lower value, players with X accounts will send dupeip notifications.
  101. dupeip_on_join_threshold: 9999
  102.  
  103. # Log all notifications to the console?
  104. notify_console: false
  105.  
  106. exempt:
  107. enable: true
  108. # By default, the first loaded world is used for permission checks.
  109. permission_world: default
  110.  
  111. # Permission groups that are exempt from bans, mutes, warnings, and kicks.
  112. exempt_groups:
  113. # Players who are exempt from bans, mutes, warnings, and kicks.
  114. # Format: <name/UUID>[:type]
  115. # Type can be ban, mute, warning, or kick.
  116. # Examples: 'Player', 'Player:kick'
  117. exempt_players:
  118.  
  119. geoip:
  120. enable: false
  121. # Anyone from these locations will not be able to join.
  122. # A full list of countries that can be blacklisted:
  123. # https://dev.maxmind.com/geoip/legacy/codes/iso3166/
  124. # You can use /geoip on any IP address. The countries returned from this command can be directly added to the blacklist, for example, "United States".
  125. # The configuration includes "Anonymous Proxy" which matches a few open proxies and high profile VPNs according to the GeoLite2 database.
  126. # This may block some proxies, but it's not completely reliable as a proxy blocking solution.
  127. blacklist: ['Anonymous Proxy']
  128. download:
  129. # Download links for the API and database. They are downloaded to the 'plugins/LiteBans/geoip' folder.
  130. # You shouldn't need to change these, but if it isn't working, you can search for these files.
  131. api:
  132. # Will be extracted and saved as 'GeoLite2-Country.mmdb'.
  133. db:
  134.  
  135. import:
  136. # You can import from: MaxBans/Ultrabans/BanHammer/BanManagerv4/BanManagerv5/BungeeAdminTools/LiteBans/Vanilla.
  137. # Vanilla means importing from banned-players.json, which is also used by Essentials.
  138. from: Vanilla
  139.  
  140. # If enabled, importing will be done from a SQLite database instead of a MySQL database.
  141. # You can ignore this if importing from banned-players.json.
  142. sqlite: false
  143.  
  144. # SQLite file locations:
  145. # MaxBans: plugins/MaxBans/bans.db
  146. # Ultrabans: plugins/Ultrabans/banlist.db
  147. # BanHammer: plugins/BanHammer/BanHammer.db
  148. # LiteBans: plugins/LiteBans/litebans.sqlite
  149. sqlite_file: plugins/LiteBans/litebans.sqlite
  150.  
  151. import_ipbans: true
  152. ## MySQL import settings ##
  153. import_mysql_address: localhost:3306
  154. import_mysql_database: server
  155. import_mysql_username: ''
  156. import_mysql_password: ''
  157.  
  158. # Use display names?
  159. # This means that when moderators and punished players change their name using /nick,
  160. # this name will be used in broadcasts and other messages instead of their regular name.
  161. use_display_names: false
  162.  
  163. # Instead of CONSOLE, this name will be used to represent the console.
  164. console_sender_name: FactionLegends
  165.  
  166. # Players in this list will not show up in /dupeip output. UUIDs can also be specified.
  167. hidden_dupeip_players:
  168.  
  169. # A player cannot be warned again while they are on cooldown.
  170. # This prevents two moderators from warning the same player for the same reason.
  171. warning_cooldown: 30
  172.  
  173. # If enabled, online player names will be auto-completed.
  174. # Example: /ban Pl -> /ban Player
  175. autocomplete_online_player_names: true
  176.  
  177. # This allows /dupeip and /ipreport to scan every single IP address that a player has ever joined with.
  178. # If set to false, it will only scan the last IP address.
  179. dupeip_scan_all_ips: true
  180.  
  181. # /ipreport will not show accounts that have no other players attached by default.
  182. ipreport_minimum_accounts: 1
  183.  
  184. # If disabled, all previous IP addresses will be recorded, allowing /iphistory to work.
  185. # It is not recommended to disable this for SQLite databases.
  186. delete_previous_history: true
  187.  
  188. # If enabled (default), all previous login history will be unbanned when unbanning a player.
  189. unban_all_history: true
  190.  
  191. # This is the amount of bans shown on each page for /banlist.
  192. # Note that ban entries can span 2-3 lines.
  193. banlist_bans_per_page: 5
  194.  
  195. # Only show active bans for /banlist?
  196. banlist_show_active_only: false
  197.  
  198. # If enabled, AuthMe will be detected and IP history will only be added after a player has successfully logged in.
  199. support_authme: false
  200.  
  201. lockdown:
  202. # If enabled, /lockdown will continue after restarts.
  203. persist_enabled: true
  204.  
  205. debug_level: 0
  206.  
  207. # This forces most commands registered by LiteBans to be handled by LiteBans.
  208. # Set it to false if you want another plugin to override a LiteBans command.
  209. # This won't work for commands used from the console.
  210. force_command_override: false
  211.  
  212. # If enabled, this performs an additional two database queries on each join
  213. # in order to provide case-insensitive name bans.
  214. ban_names: false
  215.  
  216. # If a kick message contains any of these, it will not be added to the database.
  217. # You can add '' (empty string) to this list if you don't want any kicks to be added to the database.
  218. ignored_kick_messages: ['Server is being shut down', 'restarting', 'restarting']
  219.  
  220. # This option controls how often notifications are sent from a single player.
  221. # When a player tries to join when banned or talk while muted,
  222. # you won't see any more messages from them for a short while.
  223. notification_throttle_ticks: 12000
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement