Advertisement
IcyBlue

Untitled

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