Advertisement
Guest User

Untitled

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