Advertisement
Guest User

Untitled

a guest
Jan 22nd, 2020
758
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 14.50 KB | None | 0 0
  1. #
  2. # The following variables can be used in most messages that involve a punishment:
  3. #
  4. # Punishment specific variables
  5. # $id - The ID of the punishment in the database.
  6. # $type - Type of punishment - ban, mute, warn, kick.
  7. # $reason - the reason for the punishment
  8. # $executor - the moderator's name, or their display name (/nick) if this is enabled in the configuration
  9. # $executorUUID - the moderator's UUID
  10. # $permanent - whether this punishment is permanent
  11. # $ipban - whether this is an IP-ban
  12. # $silent - whether this punishment was executed silently (-s)
  13. # $active - whether this punishment is active
  14. #
  15. # Affected player specific variables
  16. # $playerDisplayName - player display name. If display names are not enabled in the configuration or if the player's display name is not available in the message's context, the player's regular name will be used instead.
  17. # $playerName - player name
  18. # $playerUUID - UUID of affected player
  19. # $playerIP - IP of affected player
  20. # $geoip - Country of affected player, requires GeoIP to be enabled in the configuration, won't work with imported bans
  21. #
  22. # Servers
  23. # These variables represent a server.
  24. # If the plugin is installed on Spigot, a server is represented by the "server_name" option in config.yml.
  25. # If the plugin is installed on BungeeCord, a server is represented by their name in the "servers" section in the proxy's config.yml.
  26. # $serverScope - the scope of the punishment (the server(s) it will affect)
  27. # $serverOrigin - the origin of the punishment (the server/subserver it was placed on)
  28. #
  29. # Dates
  30. # Example format: "2017-02-03", depends on time_format
  31. # $dateStart - date the punishment was placed
  32. # $dateEnd - date the punishment will expire, "forever" if permanent
  33. #
  34. # Durations
  35. # Example format: "20 days, 5 hours, 2 minutes". If permanent, "forever", if expired, "expired" (both are configurable).
  36. # $duration - time until expiry
  37. # $originalDuration - the full duration of the punishment.
  38. # $timeSince - time since placement
  39. #
  40. # Placeholders
  41. # These variables represent messages in this configuration (messages.yml)
  42. # $base - banned_message_base
  43. # $appealMessage - banned_message_appeal_message
  44. #
  45. # Global variables
  46. # $activeBans, $activeMutes, $activeWarnings - total number of global active punishments
  47. # $totalBans, $totalMutes, $totalWarnings - total number of global punishments (including inactive ones)
  48. #
  49. # Vault-specific variables
  50. # $playerPrefix - Vault chat prefix of affected player
  51. # $playerSuffix - Vault chat suffix of affected player
  52. # $executorPrefix - Vault chat prefix of executor
  53. # $executorSuffix - Vault chat suffix of executor
  54. # Any message can be disabled by setting it to "". Empty messages will not be sent by the plugin.
  55. #
  56. # JSON examples:
  57. # broadcast_ban: '&e$bannedPlayer &chas been banned. {hoverText: &aHover text here!}'
  58. # Hover text requires "litebans.json.hover_text" to view, players without this permission will see messages without hover text.
  59. #
  60. # https://docs.oracle.com/javase/tutorial/i18n/format/simpleDateFormat.html
  61. # Example time format with hours + minutes:
  62. # time_format: 'dd/MM/yyyy HH:mm'
  63. time_format: yyyy-MM-dd
  64. history_time_format: yyyy-MM-dd
  65. banned_message_base: |
  66. &cYou are banned from this server!&f
  67.  
  68. Banned on: $dateStart
  69. Banned by: $executor
  70. Reason: $reason&f
  71. banned_message: |-
  72. $base
  73. Expires in: $duration
  74. $appealMessage
  75. banned_message_permanent: |-
  76. $base
  77. You are permanently banned!
  78. $appealMessage
  79. banned_message_appeal_message: 'Appeal at: &nhttp://atomixprisonmc.net'
  80. banned_message_geoip_blacklist: |-
  81. &cYou are banned from this server!&f
  82.  
  83. Your location is blacklisted: $geoip
  84. default_ban_reason: Appeal at atomixprisonmc.net or purchase an unban.
  85. default_mute_reason: Rule Breaking
  86. permission_error: '&cYou don''t have permission!'
  87. muted: '&cYou are muted ($duration remaining)!'
  88. muted_permanent: '&cYou are permanently muted!'
  89. notify:
  90. banned_player_join: '&c$player&f tried to join, but is banned ($duration)!'
  91. banned_geoip_blacklist: '&c$player&f tried to join, but is blacklisted ($geoip)!'
  92. error_no_reason_provided: '&cYou must provide a reason for this punishment!'
  93. error_no_sql_connection: '&cLiteBans is not connected to a database!'
  94. internal_error: '&cAn internal error occurred while attempting to perform this command.'
  95. duration_limit_error: '&cMaximum duration allowed: $duration'
  96. warned_join: '&cYou have new warnings:'
  97. warned_join_entry: |-
  98. &4 - Warned by &c$executor&4: &c$reason
  99. &4(&c$timeSince ago&4)
  100. command:
  101. ban:
  102. usage: '&cUsage: /ban [-s] <player> [duration] [reason]'
  103. unban_usage: '&cUsage: /unban <player>'
  104. example: '&cExample: /ban Player 7d [reason]'
  105. silent_prefix: '&f[&7Silent&f] '
  106. broadcast_ban: '&b$executor &7banned &c$bannedPlayer &7for ''&c$reason&7'''
  107. broadcast_tempban: '&b$executor &7tempbanned &c$bannedPlayer &7for &a$tempDuration&7
  108. for ''&c$reason&7'''
  109. broadcast_ip_ban: '&b$executor &7IP-banned &c$bannedPlayer &7for ''&c$reason&7'''
  110. broadcast_temp_ip_ban: '&b$executor &7temp IP-banned &c$bannedIP &7for &a$tempDuration&7
  111. for ''&c$reason&7'''
  112. broadcast_ip_ban_hidden: '[Hidden IP]'
  113. broadcast_unban: '&b$executor &7unbanned &c$bannedPlayer'
  114. previous_ban_removed: '&7Previous ban for &c$bannedPlayer&7 removed.'
  115. previous_ban_existing: '&c$bannedPlayer is already banned, and you do not have
  116. permissions to replace existing bans.'
  117. unban_queue: '&6If they try to reconnect, they will be unbanned.'
  118. error_no_spec: '&cNo valid time specification detected!'
  119. unban_fail: '&cTarget is not banned!'
  120. exempt: '&cYou can''t ban $player!'
  121. broadcast_unmute: '&b$executor &7unmuted &c$mutedPlayer'
  122. no_override: '&cPlayer is already banned!'
  123. response: ''
  124. cooldown: '&cYou need to wait $seconds seconds before you can use this command
  125. again.'
  126. mute:
  127. usage: '&cUsage: /mute [-s] <player> [duration] [reason]'
  128. unmute_usage: '&cUsage: /unmute <player>'
  129. example: '&cExample: /mute Player 7d [reason]'
  130. broadcast: '&a$executor &fmuted &a$mutedPlayer &ffor ''&a$reason&f'''
  131. broadcast_tempmute: '&a$executor &ftempmuted &a$mutedPlayer &ffor $tempDuration
  132. for ''&a$reason&f'''
  133. message: |-
  134. &4You have been muted by $executor&4 for &c'&4$reason&c'&4.
  135. &4This mute will expire in $duration.
  136. message_permanent: |-
  137. &4You have been permanently muted by $executor&4 for &c'&4$reason&c'&4.
  138. &4This mute will not expire.
  139. unmute_fail: '&cTarget is not muted!'
  140. previous_mute_removed: '&aPrevious mute for $mutedPlayer removed.'
  141. previous_mute_existing: '&c$mutedPlayer is already muted, and you do not have
  142. permissions to replace existing mutes.'
  143. exempt: '&cYou can''t mute $player!'
  144. notification: '&c$mutedPlayer tried to speak, but is muted.'
  145. error_not_enabled: '&cMuting is not enabled in the configuration!'
  146. broadcast_ip_mute: '&a$executor &fIP-muted &a$mutedPlayer &ffor ''&a$reason&f'''
  147. broadcast_temp_ip_mute: '&a$executor &ftemp IP-muted &a$mutedIP &ffor $tempDuration
  148. for ''&a$reason&f'''
  149. no_override: '&cPlayer is already muted!'
  150. response: ''
  151. broadcast_unmute: '&a$executor &funmuted &a$bannedPlayer'
  152. warn:
  153. usage: '&cUsage: /warn [-s] <player> [reason]'
  154. unwarn_usage: '&cUsage: /unwarn <player>'
  155. example: ''
  156. broadcast: '&a$executor &fwarned &a$warnedPlayer &ffor ''&a$reason&f'''
  157. message: |-
  158. &4You have been warned by $executor&4 for &c'&4$reason&c'&4.
  159. &4This warning will expire in $duration.
  160. list_entry: ' \- Warned by $executor: ''$reason&f'''
  161. unwarn_response: '&aLast warning removed for $player.'
  162. unwarn_fail: '&cTarget has no warnings!'
  163. exempt: '&cYou can''t warn $player!'
  164. cooldown: '&cYou need to wait $seconds seconds before $player can be warned again.'
  165. response: ''
  166. history:
  167. usage: '&c/history <player> [entries=10]'
  168. start: '&aHistory for $target (Limit: $limit):'
  169. ban_entry: |-
  170. &a -- [&f$timeSince ago&a] --&f
  171. &f $name was &cbanned &fby $executor: '&a$reason&f'
  172. mute_entry: |-
  173. &a -- [&f$timeSince ago&a] --&f
  174. &f $name was &7muted &fby $executor: '&a$reason&f'
  175. warn_entry: |-
  176. &a -- [&f$timeSince ago&a] --&f
  177. &f $name was &6warned &fby $executor: '&a$reason&f'
  178. kick_entry: |-
  179. &a -- [&f$timeSince ago&a] --&f
  180. &f $name was &ekicked &fby $executor: '&a$reason&f'
  181. active_suffix: '&f [&cActive&f]'
  182. active_suffix_temp: |-
  183. &f [&cActive&f]
  184. &fExpires in $duration.
  185. error_no_history: '&cNo history found.'
  186. unban_entry: |2-
  187.  
  188. &f$name was &7unbanned &fby $executor.
  189. unmute_entry: |2-
  190.  
  191. &f$name was &7unmuted &fby $executor.
  192. expired_suffix: '&f [&8Expired&f]'
  193. warnings:
  194. usage: '&c/warnings <player>'
  195. start: '&aActive warnings for $target:'
  196. prunehistory:
  197. usage: '&c/prunehistory <player> [duration]'
  198. message: '&aHistory pruned.'
  199. staffhistory:
  200. usage: '&c/staffhistory <player> [entries=10]'
  201. start: '&aStaff history for $target (Limit: $limit):'
  202. staffrollback:
  203. usage: '&c/staffrollback <player> [duration]'
  204. message: '&aRollback completed, total entries removed: $amount'
  205. banlist:
  206. start: '&f=== &aPage &6$page&a out of &6$total&f ==='
  207. iphistory:
  208. usage: '&c/iphistory <player> [entries=10]'
  209. start: '&aLogin history for $target (Limit: $limit):'
  210. entry: '&a - [&f$date&a]&f $name&a:&f $ip'
  211. error_no_history: '&cNo history found.'
  212. dupeip:
  213. usage: '&c/dupeip <player>'
  214. start: '&fScanning &7$name&f on &a$ip&f. &f[&aOnline&f] [&7Offline&f] [&cBanned&f]'
  215. start_no_ip: '&fScanning &7$name&f. &f[&aOnline&f] [&7Offline&f] [&cBanned&f]'
  216. separator: '&f, '
  217. online: '&a'
  218. offline: '&7'
  219. banned: '&c'
  220. muted: '&6'
  221. multiple_addresses: '[$num addresses]'
  222. ipreport:
  223. start: '&fScanning &a$num&f online players.. [&aOnline&f] [&7Offline&f] [&cBanned&f]'
  224. entry: '&f$player&a: $result'
  225. checkban:
  226. usage: '&c/checkban <player>'
  227. no_ban: '&cTarget is not banned!'
  228. banned: |-
  229. &aTarget &f[&a$target&f]&a is banned:
  230. &aBanned by: $executor
  231. &aReason: $reason&a
  232. &aBanned on: $dateStart
  233. &aBanned until: $dateEnd ($duration)
  234. &aBanned on server &6&a$serverOrigin&a, server scope: &6$serverScope
  235. &aIP ban: $ipban, silent: $silent, permanent: $permanent
  236. checkmute:
  237. usage: '&c/checkmute <player>'
  238. no_mute: '&cTarget is not muted!'
  239. muted: |-
  240. &aTarget &f[&a$target&f]&a is muted:
  241. &aMuted by: $executor
  242. &aReason: $reason&r
  243. &aMuted on: $dateStart
  244. &aMuted until: $dateEnd ($duration)
  245. &aMuted on server &6$serverOrigin&a, server scope: &6$serverScope
  246. &aIP mute: $ipban, silent: $silent, permanent: $permanent
  247. lastuuid:
  248. usage: '&c/lastuuid <player|IP>'
  249. message: '&fLast UUID for &a$name&f: &a$uuid'
  250. geoip:
  251. usage: '&c/geoip <player|IP>'
  252. message: '&a$target&f is from: &a$result'
  253. error_disabled: '&cGeoIP support is not enabled in the configuration!'
  254. error_unavailable: '&cGeoIP support is currently unavailable, has it been downloaded
  255. yet?'
  256. error_not_found: '&cGeoIP information for $target not found.'
  257. lockdown:
  258. usage: '&c/lockdown <reason> | /lockdown end'
  259. message: '&cServer lockdown activated (reason: "$reason&c")'
  260. stopped: '&aLockdown has been deactivated.'
  261. kick_message: |-
  262. Server lockdown active, try again later.
  263. Reason: $reason
  264. error_not_active: '&cLockdown is not active!'
  265. kick_message_global: |-
  266. Network lockdown active, try again later.
  267. Reason: $reason
  268. kick:
  269. usage: '&c/kick <player> [reason]'
  270. no_match: '&cError: &4Player not found.'
  271. message: 'Kicked by $executor: $reason'
  272. message_no_reason: Kicked by $executor.
  273. response: '&6$player has been kicked.'
  274. broadcast: '&a$player&f was kicked by &a$executor&f for ''&a$reason&f''.'
  275. broadcast_no_reason: '&a$player&f was kicked by &a$executor&f.'
  276. exempt: '&cYou can''t kick $player!'
  277. kick_requested: '&6Player $player is not online on this server. Cross-server kick
  278. has been requested.'
  279. togglechat:
  280. toggle_off: '&aChat has been toggled off.'
  281. toggle_on: '&aChat has been toggled on.'
  282. clearchat:
  283. broadcast: '&aChat has been cleared by $executor.'
  284. mutechat:
  285. response: '&cServer chat is currently disabled!'
  286. broadcast_disabled: '&cServer chat has been disabled by $executor.'
  287. broadcast_enabled: '&aServer chat has been enabled by $executor.'
  288. litebans:
  289. reload_success: '&aLiteBans reloaded successfully.'
  290. reload_fail_connect: '&aLiteBans reloaded. &cFailed to connect to database.'
  291. add_history_usage: '&c/litebans addhistory <name> <UUID> <IP>'
  292. add_history: '&aHistory added.'
  293. fix_history: '&aFixing history for table $table...'
  294. fix_history_result: '&aAdded $amount entries.'
  295. import_usage: '&c/litebans import start'
  296. import_start: '&aImporting from $db, this might take a while...'
  297. import_finish: '&aImport finished successfully. $bans bans imported, $ipbans IP-bans.'
  298. import_finish_litebans: '&aImport finished successfully. Added $amount entries
  299. to the database.'
  300. import_fail: '&cImport failed. Check console.'
  301. import_unsupported: '&cImporting from ''$name'' is not supported yet!'
  302. sqlexec_success: '&aSQL query executed successfully.'
  303. sqlexec_failure: '&cFailed to execute.'
  304. reload_fail: '&cReload failed.'
  305. reload_fail_config: |-
  306. &c[LiteBans] &4config.yml is not valid and could not be loaded, the default configuration will be used.
  307. &cPlease check the server console for more information.
  308. reload_fail_messages: |-
  309. &c[LiteBans] &4messages.yml is not valid and could not be loaded, default messages will be used.
  310. &cPlease check the server console for more information.
  311. fix_history_offline_uuids: '&c$amount UUIDs were not fetched from Mojang since
  312. they are offline-mode UUIDs.'
  313. duration:
  314. expired: expired
  315. forever: forever
  316. year: year
  317. years: years
  318. month: month
  319. months: months
  320. week: week
  321. weeks: weeks
  322. day: day
  323. days: days
  324. hour: hour
  325. hours: hours
  326. minute: minute
  327. minutes: minutes
  328. second: second
  329. seconds: seconds
  330. format: '%d %s'
  331. separator: ', '
  332. strings:
  333. global: global
  334. 'null': undefined
  335. 'true': 'true'
  336. 'false': 'false'
  337. error_no_uuid_found: '&cPlayer does not exist.'
  338. bungee_switch_banned: |-
  339. &cYou are banned on $serverScope! Reason:
  340. $reason
  341. error_console_only: '&cThis command can only be used from console.'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement