Advertisement
Guest User

Untitled

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