· 6 years ago · Feb 16, 2020, 02:18 AM
1# .... . . ....
2# . . .. .. . .
3# . . . . . ....
4# . . . . .
5# .... . . .
6# DeathMessagesPrime Configuration File
7# SAVE THIS FILE AS UTF-8!!!! (without BOM)
8# Your text editor should support it. (Windows Notepad does probably not work)
9
10# Configuration version, do not change this unless you want your config to be
11# reset.
12config-version: 49
13
14# World groups.
15# If a world is in a group, and a death occurs there, the appropriate death
16# message will be shown in rest of the worlds in that same group too.
17#
18# If _enabled is false, this feature is disabled. Instead, the death message
19# behavior will be specified with per-world-messages.
20#
21# per-world-messages must be enabled to make world-groups work!
22world-groups:
23 _enabled: true
24 world:
25 - world
26 - world_nether
27 - world_the_end
28
29# Following players will never have visible death messages.
30# ENTER UUIDs UNDER THIS LIST. To get an UUID of an online player, use
31# /dmsg uuid player_name.
32# Default: (empty)
33player-blacklist:
34# - '00000000-0000-0000-0000-000000000000'
35
36# List worlds, where death messages from PvP are not recorded, here.
37# Default: (empty)
38worlds-no-pvp-death-messages:
39# - world2
40
41# List worlds, where death messages from anything else than PvP are not
42# recorded, here.
43# Default: (empty)
44worlds-no-natural-death-messages:
45# - world2
46
47# List worlds, where death messages are only shown to the killer and the
48# victim, here.
49# Default: (empty)
50worlds-private-pvp-death-messages:
51# - world3
52
53# List worlds, where death messages are only shown to the player that died here.
54# Default: (empty)
55worlds-private-natural-death-messages:
56# - world3
57
58# Worlds with maximum radius (in blocks) for death messages, assumed infinite
59# if world is not present.
60# Should a world have a death message radius, the messages will never be shown
61# to players in any other world.
62worlds-death-message-radius:
63 #world: 10
64
65# Similar to the above, but this only controls PVP messages (not natural
66# death messages). If both are set, the above worlds-death-message-radius
67# will affect the natural messages and this one will affect the PVP messages.
68# In order to only have a PVP message radius: add the world here only.
69# In order to only have a natural message radius: add the world under
70# both options and set it to -1 here.
71worlds-pvp-death-message-radius:
72 #world: 10
73
74# If a player dies over death-count times within death-interval seconds,
75# death messages from that player will be hidden for death-cooldown seconds.
76# If death-reset is true, every hidden death message resets the cooldown.
77# Default: 3
78cooldown-death-count: 2
79# Default: 10
80cooldown-death-interval: 10
81# Default: 10
82cooldown-death-cooldown: 30
83# Default: false
84cooldown-death-reset: false
85
86# Show debug information upon death, useful for determining plugin conflicts,
87# etc.
88# Default: false
89debug: false
90
91# Show death messages in all worlds, if false. Needs to be true in order to
92# worldgroups to function.
93# Default: true
94per-world-messages: true
95
96# Death message compatibility: set the message as normal, until HIGHEST,
97# when it is emptied.
98# Use this if any conflicts arise.
99# Default: true
100death-message-compat-mode: true
101
102# Whether to use DMP broadcasting if a custom death message is set by
103# another plugin.
104# Default: false
105death-message-conflict-broadcast: false
106
107# Whether to enable namedmob messages. If disabled, namedmob messages
108# will not be shown and will be replaced with mob.
109# Default: true
110death-message-enable-namedmob: true
111
112# Show the rarity of items in the %weapon_name% and %weapon% tags.
113# (This affects the text colors and formatting for some items, such
114# as enchanted ones.)
115# Default: true
116death-message-show-rarity: true
117
118# Allows applying item flags on items that appear in death messages.
119# Note that this feature only works on Minecraft 1.8 and above.
120# Possible flags are documented under https://hub.spigotmc.org/javadocs/bukkit/org/bukkit/inventory/ItemFlag.html
121death-message-item-flags:
122# - HIDE_ATTRIBUTES
123# - HIDE_ENCHANTS
124
125# Heart compatibility mode: use mob instead of namedmob when the mob name
126# contains heart characters.
127# Designed for mob health bar plugins, et cetera.
128# Enable this if death messages have mob names be a row of hearts representing
129# health.
130# Default: false
131heart-compat-mode: false
132
133# If the mob name contains any of the following characters and
134# heart-compat-mode is enabled, the default mob name is displayed. You can add
135# characters if the health bar is still visible (copy the character from the
136# death message logs) or remove them at will.
137heart-characters: "♡♥❤■"
138
139# Broadcast death message to console.
140# none: Do not print death message in console.
141# normal: Print the DeathMessagesPrime message in console.
142# verbose: Print a verbose message, including coordinates, and other info.
143# Verbose is useful for debugging
144# Default: normal
145console-death-message: verbose
146
147# Clean prefix/suffix from messages printed in the console,
148# ignored if console-death-message is not normal
149# Default: false
150console-death-message-strip-prefix: false
151
152# Clean color codes from messages printed in the console,
153# ignored if console-death-message is not normal
154# Default: false
155console-death-message-strip-colors: false
156
157# Displays the death message in the console even if the world has disabled
158# death messages or set them to private.
159# Default: true
160console-death-message-even-if-disabled: true
161
162# The priority for the listener. Set to lower value if there are any conflicts
163# with plugins that provide their own death message systems.
164# In order from higher to lower: HIGHEST, HIGH, NORMAL, LOW, LOWEST
165# MONITOR is UNSUPPORTED - do not use it, as it causes conflicts and may
166# mess with plugins using the API.
167# Default: HIGH
168death-listener-priority: HIGH
169
170# Whether to show the custom weapon death messages (ZombieCustom for example)
171# on all weapons (true), or only on weapons with custom names (false).
172# Default: false
173show-custom-death-msg-on-all-weapons: false
174
175# THIS FEATURE IS NOT IMPLEMENTED RIGHT NOW, AS THE API DOES NOT SUPPORT
176# MODIFYING PET DEATH MESSAGES.
177# Whether to show death messages for tamed and named pets.
178# (true is the vanilla Minecraft behavior)
179# Default: true
180show-named-pet-death-messages: true
181
182# Messages for enabling and disabling death messages using /toggledeathmsg
183death-messages-hidden: "&cOthers' death messages will now be hidden."
184death-messages-shown: "&cOthers' death messages will now be shown."
185# Messages for other commands
186no-permission: "§cYou have no permission to run this command."
187players-only-command: "§cOnly players can run this command."
188reload-complete: "Reload complete!"
189cannot-find-online-player: "Cannot find online player"
190
191# Here are the actual death messages. They are as a list, so you can add as
192# many as you want, and the plugin will support it. Color codes in format &0-&f
193# and &k-&r are supported.
194#
195# %player% represents the player's name.
196# %name% represents the player's display name.
197# %killer% represents the killer player (in PvP reasons), or
198# pursuing mob (in DrowningMob etc. reasons) (mob names can be
199# changed in mob-names section).
200# %killer2% represents the killer player's display name in PvP reasons only.
201# %plrtag% represents the dead player's username with entity tooltip.
202# %victim% represents the dead player's display name with entity tooltip.
203# %entity% represents the killer's display name with entity tooltip.
204# %weapon_name% represents the weapon name.
205# %weapon% represents the weapon name (including the tooltip).
206# %world% represents the world name of the death.
207# %biome% represents the biome, where the death occurred.
208# %x%, %y% and %z% represents the player death coordinates.
209# %distance% represents the distance between the player and the killer
210# in blocks (if applicable)
211# %playerxp%, %playerlevel% represent the XP and level of the player.
212# %killerxp%, %killerlevel% are same for a killing *player*.
213#
214# Death messages for being killed by normally peaceful mobs also exist,
215# designed for custom maps, plugins or mods which may change functionality.
216death-messages:
217 # Prefix of all death messages
218 prefix: "&c"
219 # Suffix of all death messages
220 suffix: ""
221 # If you want a prefix / suffix only for PVP messages, uncomment these:
222 # prefix-pvp: "&a[&eD&a] &c"
223 # suffix-pvp: ""
224 mob:
225 Bee:
226 - "&4&l%plrtag% &r&cwas stung to death"
227 BlazeMelee:
228 - "&4&l%plrtag% &r&cwas slain by &4&lBlaze"
229 BlazeFireball:
230 - "&4&l%plrtag% &r&cwas burst into flames by &4&lBlaze"
231 Cat:
232 - "&4&l%plrtag% &r&cwas clawed by &4&lCat"
233 CaveSpider:
234 - "&4&l%plrtag% &r&cwas poisoned by &4&lCave Spider"
235 Creeper:
236 - "&4&l%plrtag% &r&cwas blown to smithereenes by &4&lCreeper"
237 CreeperCharged: # charged Creeper
238 - "&4&l%plrtag% &r&cwas blown the FUCK up by a &4&lCharged Creeper"
239 ElderGuardian:
240 - "&4&l%plrtag% &r&cwas beamed to death by &4&lElder Guardian"
241 EnderDragon:
242 - "&4&l%plrtag% &r&cwas unprepared for the dragon fight"
243 EnderDragonBreath:
244 - "&4&l%plrtag% &r&cwas roasted in dragon breath"
245 Enderman:
246 - "&4&lEnderman &r&c&kabsolutely fucked &r&4&l%plrtag%"
247 Endermite:
248 - "&4&l%plrtag% &r&cwas slain by a budget purple silverfish"
249 Evoker:
250 - "&4&l%plrtag% &r&cwas evoked"
251 Ghast:
252 - "&4&l%plrtag% &r&cdid not return to sender"
253 Giant:
254 - "&4&l%plrtag% &r&cgot skyrim'd by &4&lGiant"
255 Guardian:
256 - "&4&l%plrtag% &r&cwas shown how a &4&lGuardian &r&cdoes his job"
257 Illusioner:
258 - "&4&l%plrtag% &r&cwas illusioned by &4&lIllusioner"
259 IronGolem:
260 - "&4&l%plrtag% &r&cdidn't know to only pick on his size"
261 Llama:
262 - "&4&l%plrtag% &r&cwas spit on in disgust"
263 MagmaCube:
264 - "&4&l%plrtag% &r&cwas cubed by &4&lMagma Cube"
265 Phantom:
266 - "&4&l%plrtag% &r&chad a shit sleep schedule"
267 PufferFish:
268 - "&4&l%plrtag% &r&cwas stabbed by &4&lPuffer Fish"
269 Ravager:
270 - "&4&l%plrtag% &r&cwas ravaged by &4&lRavager"
271 Shulker:
272 - "&4&l%plrtag% &r&cwas stored by &4&lShulker"
273 Silverfish:
274 - "&4&l%plrtag% &r&cwas slain by a budget silver endermite"
275 SkeletonArrow:
276 - "&4&l%plrtag% &r&cwas boned by &4&lSkeleton"
277 SkeletonArrowCustom:
278 - "&4&l%plrtag% &r&cwas boned by &4&lSkeleton &r&cusing &4[%weapon%&f]"
279 SkeletonMelee:
280 - "&4&l%plrtag% &r&cwas boned by &4&lSkeleton"
281 SkeletonCustom:
282 - "&4&l%plrtag% &r&cwas boned by &4&lSkeleton &r&cusing &4[%weapon%&f]"
283 Slime:
284 - "&4&l%plrtag% &r&cwas absorbed by &4&lSlime"
285 SnowGolem:
286 - "&4&l%plrtag% &r&cwas pummeled by &4&lSnow Golem"
287 Spider:
288 - "&4&l%plrtag% &r&cwas webbed by &4&lSpider"
289 Vindicator:
290 - "&4&l%plrtag% &r&cwas vindicated by &4&lVindicator"
291 WanderingTrader:
292 - "&4&l%plrtag% &r&cwasn't liking &4&lWandering Trader&r&c's deals"
293 Witch:
294 - "&4&l%plrtag% &r&cwas abrakadabra'd"
295 Wither:
296 - "&4&l%plrtag% &r&cwas griefed by &4&lWither"
297 WitherSpawnBoom: # Dies from wither spawn explosion
298 - "&4&l%plrtag% &r&didn't back away from &4&lWither"
299 WitherSkeletonMelee:
300 - "&4&l%plrtag% &r&cgot black boned by &4&lWither Skeleton"
301 WitherSkeletonCustom:
302 - "&4&l%plrtag% &r&cgot black boned by &4&lWither Skeleton&r&c using &4[%weapon%&f]"
303 Wolf:
304 - "&4&l%plrtag% &r&clet the dogs out"
305 ZombieMelee:
306 - "&4&l%plrtag% &r&cbecame rotten flesh"
307 ZombieCustom:
308 - "&4&l%plrtag% &r&cwas slain by &4&lZombie&r&c using &4[%weapon%&f]"
309 ZombiePigManMelee:
310 - "&4&l%plrtag% &r&cwas swarmed by aliens"
311 ZombieVillagerMelee:
312 - "&4&l%plrtag% &r&cbecame farmable rotten flesh"
313 ZombieVillagerCustom:
314 - "&4&l%plrtag% &r&cwas slain by Zombie Villager using [%weapon%&f]"
315 natural:
316 Thorns:
317 - "&4&l%plrtag% &r&cwas killed by a bluepilled enchant worn by &4&l%killer%&r&c"
318 TNT:
319 - "&4&l%plrtag% &r&cblew up"
320 TNTKill:
321 - "&4&l%plrtag% &r&cwas blown up by &4&l%killer%&r&c"
322 EnderCrystal:
323 - "&4&l%plrtag% &r&cgot crystalled"
324 Bed: # exploding beds
325 - "&4&l%plrtag% &r&cdidn't place the final bed in the chain"
326 Cactus:
327 - "&4&l%plrtag% &r&cwas pricked to death"
328 CactusKill:
329 - "&4&l%plrtag% &r&cwalked into a cactus whilst trying to escape &4&l%killer%&r&c. retard."
330 Anvil:
331 - "&4&l%plrtag% &r&cwas got anvil'd like some tom n' jerry shit"
332 FallingBlock: # Only when a FallingBlock is modified to cause damage
333 - "&4&l%plrtag% &r&cwas squashed by a falling block"
334 UnknownArrow: # arrow from unknown entity or source, /summon?
335 - "&4&l%plrtag% &r&cwas shot by a &lmysterious&r&c arrow"
336 DispenserArrow:
337 - "&4&l%plrtag% &r&cfell for a dispenser trap in 2020"
338 DispenserFireball:
339 - "&4&l%plrtag% &r&cburst into flames"
340 DispenserSnowball:
341 - "&4&l%plrtag%&r&c....was snowballed to death?"
342 Drowning:
343 - "&4&l%plrtag% &r&csomehow managed to drown"
344 - "&4&l%plrtag% &r&cis now an aquarium"
345 - "&4&l%plrtag% &r&cforgot how to breathe"
346 - "&4&l%plrtag% &r&cdoesn't like oxygen"
347 DrowningKill:
348 - "&4&l%plrtag% &r&cdrowned while fighting &4&l%killer%&r&c"
349 PotionPoison: # Normally impossible
350 - "&4&l%plrtag% &r&cgot backdoored"
351 - "&4&l%plrtag% &r&cdrank the admin potion"
352 - "&4&l%plrtag% &r&cIf you're seeing this, something went wrong. Tell me."
353 PotionWither:
354 - "&4&l%plrtag% &r&cgot withered on"
355 PotionHarming:
356 - "&4&lMerasmus&r&c cursed &4&l%plrtag%"
357 FireBlock:
358 - "&4&l%plrtag% &r&cbursted into flames"
359 - "&4&l%plrtag% &r&cwas engulfed in flames"
360 - "&4&l%plrtag% &r&cgot roasted"
361 - "&4&l%plrtag% &r&cdidn't let it sit for 30 minutes"
362 - "&4&l%plrtag% &r&cforgot to turn off the oven"
363 - "&4&l%plrtag% &r&cbursted into flames"
364 FireBlockKill:
365 - "&4&l%plrtag% &r&cwalked into a fire while fighting &4&l%killer%&r&c"
366 FireTick:
367 - "&4&l%plrtag% &r&cbursted into flames"
368 - "&4&l%plrtag% &r&cwas engulfed in flames"
369 - "&4&l%plrtag% &r&cgot roasted"
370 - "&4&l%plrtag% &r&cdidn't let it sit for 30 minutes"
371 - "&4&l%plrtag% &r&cforgot to turn off the oven"
372 - "&4&l%plrtag% &r&cbursted into flames"
373 FireTickKill:
374 - "&4&l%plrtag% &r&cburnt into a crisp while fighting &4&l%killer%&r&c"
375 Magma:
376 - "&4&l%plrtag% &r&cdiscovered the floor was lava"
377 - "&4&l%plrtag% &r&cwalked into the danger zone"
378 MagmaKill:
379 - "&4&l%plrtag% &r&cwalked into the danger zone while fighting &4&l%killer%&r&c"
380 Lava:
381 - "&4&l%plrtag% &r&ctried to swim in lava"
382 - "&4&l%plrtag% &r&cdiscovered the water wasn't red"
383 - "&4&l%plrtag% &r&cleft the pizza rolls in the microwave for too long"
384 - "&4&l%plrtag% &r&cdidn't enjoy the hot tub"
385 - "&4&l%plrtag% &r&cdidn't have fire prot"
386 LavaKill:
387 - "&4&l%plrtag% &r&ctried to swim in lava while fighting &4&l%killer%&r&c"
388 Lightning: # Happens when struck by lightning, vanilla: FireTick/FireBlock
389 - "&4&l%plrtag% &r&cgot RNG'd from the clouds"
390 Starvation:
391 - "&4&l%plrtag% &r&cstarved to death"
392 - "&4&l%plrtag% &r&clost their lunch"
393 - "&4&l%plrtag% &r&cforgot how to play"
394 - "&4&l%plrtag% &r&cmissed the memo about beta 1.8"
395 - "&4&l%plrtag% &r&cfucking died for no reason"
396 Suffocation:
397 - "&4&l%plrtag% &r&csuffocated in a wall"
398 - "&4&l%plrtag% &r&cthought stone was oxygen"
399 - "&4&l%plrtag% &r&cdiscovered sand isn't fresh air"
400 Cramming: # maxEntityCramming
401 - "&4&l%plrtag% &r&csat in a 1x1 hole of chickens"
402 CrammingKill:
403 - "&4&l%plrtag% &r&csat in a 1x1 hole of chickens"
404 Void:
405 - "&4&l%plrtag% &r¢ered the voidway"
406 VoidFall: # in DMP, if entity falls over y>=64 to the void
407 - "&4&l%plrtag% &r¢ered the voidway"
408 VoidKill:
409 - "&4&l%plrtag% &r¢ered the void to escape &4&l%killer%&r&c"
410 FallShort: # Fall distance 5 blocks or less, or ender pearl
411 - "&4&l%plrtag% &r&cbroke his legs and died"
412 - "&4&l%plrtag% &r&cmissed a 3 block jump"
413 FallLong: # Fall distance over 5 blocks
414 - "&4&l%plrtag% &r&cfell from the skies"
415 - "god rejected &4&l%plrtag%"
416 FallLadder:
417 - "&4&l%plrtag% &r&cfailed the ladder skip"
418 - "&4&l%plrtag% &r&cforgot how to climb"
419 - "&4&l%plrtag%&r&c's limbs failed to function"
420 FallVine:
421 - "&4&l%plrtag% &r&cforgot how vines work"
422 FallWater:
423 - "&4&l%plrtag% &r&cfell out of the water"
424 FallFire:
425 - "&4&l%plrtag% &r&cfell into a patch of fire"
426 FallCacti:
427 - "&4&l%plrtag% &r&cfell into a patch of cacti"
428 FallBerryBush:
429 - "&4&l%plrtag% &r&cfell into a sweet berry bush"
430 FallKill:
431 - "&4&l%plrtag% &r&cwas doomed to fall by &4&l%killer%&r&c"
432 FallKillWeapon:
433 - "&4&l%plrtag% &r&cwas doomed to fall by &4&l%killer%&r&c using [%weapon%&f]"
434 FallFinishKill:
435 - "&4&l%plrtag% &r&cfell too far and was finished by &4&l%killer%&r&c"
436 FallFinishKillWeapon:
437 - "&4&l%plrtag% &r&cfell too far and was finished by &4&l%killer%&r&c using [%weapon%&f]"
438 FallExplosionKill: # FallKill caused by entity explosion
439 - "&4&l%plrtag% &r&cwas blown from a high place by &4&l%killer%&r&c"
440 FallLadderKill:
441 - "&4&l%plrtag% &r&cwas shot off a ladder by &4&l%killer%&r&c"
442 FallVineKill:
443 - "&4&l%plrtag% &r&cwas shot off some vines by &4&l%killer%&r&c"
444 Firework:
445 - "&4&l%plrtag% &r&cwent off with a bang"
446 Elytra:
447 - "&4&l%plrtag% &r&cexperienced kinetic energy"
448 Suicide: # Some plugins may use this one, /suicide and /kill for example
449 unknown:
450 - "&4&l%plrtag% &r&cjust straight up fuckin died"
451 - "&4&l%plrtag% &r&cstarted the rhapsody"
452 - "&4&l%plrtag% &r&cvaporized"
453 - "&4&l%plrtag% &r&cwas pulverized"
454 Melting: # Some plugins may use this one, orig. Snowmans + hot biomes
455 - "&4&l%plrtag% &r&cdied"
456 DryOut: # Some plugins may use this one, orig. fish outside water
457 - "&4&l%plrtag% &r&cdied"
458 Custom: # Some plugins may use this one
459 unknown:
460 - "&4&l%plrtag% &r&cjust straight up fuckin died"
461 - "&4&l%plrtag% &r&cstarted the rhapsody"
462 - "&4&l%plrtag% &r&cvaporized"
463 - "&4&l%plrtag% &r&cwas pulverized"
464 unknown:
465 - "&4&l%plrtag% &r&cjust straight up fuckin died"
466 - "&4&l%plrtag% &r&cstarted the rhapsody"
467 - "&4&l%plrtag% &r&cvaporized"
468 - "&4&l%plrtag% &r&cwas pulverized"
469 # if any custom plugins offer custom messages, add them below.
470 # for example: for tag "foo.bar", use
471 # foo:
472 # bar:
473 # - "foo.bar death message"
474
475mob-names:
476 Bat: "Bat"
477 Bee: "Bee"
478 Blaze: "Blaze"
479 Cat: "Cat"
480 CaveSpider: "Cave Spider"
481 Chicken: "Chicken"
482 Cod: "Cod"
483 Cow: "Cow"
484 Creeper: "Creeper"
485 Dolphin: "Dolphin"
486 Donkey: "Donkey"
487 Drowned: "Drowned"
488 ElderGuardian: "Elder Guardian"
489 EnderDragon: "Ender Dragon"
490 Enderman: "Enderman"
491 Endermite: "Endermite"
492 Evoker: "Evoker"
493 Fox: "Fox"
494 Ghast: "Ghast"
495 Giant: "Giant"
496 Guardian: "Guardian"
497 Horse: "Horse"
498 Husk: "Husk"
499 Illusioner: "Illusioner"
500 IronGolem: "Iron Golem"
501 Llama: "Llama"
502 MagmaCube: "Magma Cube"
503 Mooshroom: "Mooshroom"
504 Mule: "Mule"
505 Panda: "Panda"
506 Parrot: "Parrot"
507 Phantom: "Phantom"
508 Pig: "Pig"
509 Pillager: "Pillager"
510 PolarBear: "Polar Bear"
511 PufferFish: "Puffer Fish"
512 Ocelot: "Ocelot"
513 Rabbit: "Rabbit"
514 Ravager: "Ravager"
515 Salmon: "Salmon"
516 Sheep: "Sheep"
517 Shulker: "Shulker"
518 Silverfish: "Silverfish"
519 Skeleton: "Skeleton"
520 SkeletonHorse: "Skeleton Horse"
521 Slime: "Slime"
522 SnowGolem: "Snow Golem"
523 Spider: "Spider"
524 Squid: "Squid"
525 Stray: "Stray"
526 TraderLlama: "Trader Llama"
527 TropicalFish: "Tropical Fish"
528 Turtle: "Turtle"
529 Vex: "Vex"
530 Villager: "Villlager"
531 Vindicator: "Vindicator"
532 WanderingTrader: "Wandering Trader"
533 Witch: "Witch"
534 Wither: "Wither"
535 WitherSkeleton: "Wither Skeleton"
536 Wolf: "Wolf"
537 Zombie: "Zombie"
538 ZombieHorse: "Zombie Horse"
539 ZombiePigMan: "Zombie Pigman"
540 ZombieVillager: "Zombie Villager"
541
542custom-mob-death-messages:
543 # The following attribute takes in regular expressions and checks top-down
544 # whether the names of the mobs match them.
545 # If there is no list, as in [], the plugin will look up the message from
546 # the normal death messages.
547 # If the list only has an empty message, the death message for that mob will
548 # be hidden.
549 # To match color codes, use the § character instead of &. (This file must be
550 # encoded in UTF-8)
551 # Examples:
552 #
553 # "_*": # match all mobs
554 # - "%plrtag% was killed by a mob"
555 #
556 # "^[Ss]_*": # match all mobs beginning with S or s
557 # - "%plrtag% was killed by a mob"
558 #
559 # "§cMy Custom Boss": [] # display normal messages for mobs named
560 # # 'My Custom Boss' written in red
561 #
562 # "My Custom Boss": # match all mobs with name being 'My Custom Boss'
563 # - "%plrtag% was killed by a boss"
564 # - "%plrtag% was pummeled by a boss"
565 #
566 # "§aMy Custom Boss": # match all mobs with name being 'My Custom Boss'
567 # # written in light green
568 # - "%plrtag% was killed by a boss"
569 # - "%plrtag% was pummeled by a boss"
570 #
571 # "_*My Custom Boss_*": # match all mobs with name containing 'My Custom Boss'
572 # - "%plrtag% was killed by a boss"
573 # - "%plrtag% was pummeled by a boss"
574 #
575 # !!!!!!!!!!!!!!!!!!!!!!!! IMPORTANT !!!!!!!!!!!!!!!!!!!!!!!!
576 # IN REGEXES; ALL DOTS MUST BE REPRESENTED WITH UNDERSCORES
577 # !!!!!!!!!!!!!!!!!!!!!!!! IMPORTANT !!!!!!!!!!!!!!!!!!!!!!!!
578 #
579 Melee:
580 "_*": []
581 Ranged:
582 "_*": []
583 Potion:
584 "_*": []
585 Thorns:
586 "_*": []
587 TNTKill:
588 "_*": []
589 CactusKill:
590 "_*": []
591 DrowningKill:
592 "_*": []
593 CrammingKill:
594 "_*": []
595 FireBlockKill:
596 "_*": []
597 FireTickKill:
598 "_*": []
599 LavaKill:
600 "_*": []
601 MagmaKill:
602 "_*": []
603 VoidKill:
604 "_*": []
605 FallKill:
606 "_*": []
607 Other:
608 "_*": []
609
610custom-user-death-messages:
611 # Same deal here. The plugin checks from the actual user names of players.
612 # custom-user-death-messages is preferred over custom-player-death-messages:
613 # empty list here will pass to custom-player-death-messages before passing
614 # through to normal death messages.
615 Melee:
616 "_*": []
617 Ranged:
618 "_*": []
619 Potion:
620 "_*": []
621 Thorns:
622 "_*": []
623 TNTKill:
624 "_*": []
625 CactusKill:
626 "_*": []
627 DrowningKill:
628 "_*": []
629 CrammingKill:
630 "_*": []
631 FireBlockKill:
632 "_*": []
633 FireTickKill:
634 "_*": []
635 LavaKill:
636 "_*": []
637 MagmaKill:
638 "_*": []
639 VoidKill:
640 "_*": []
641 FallKill:
642 "_*": []
643 Other:
644 "_*": []
645
646custom-player-death-messages:
647 # Same deal here. The plugin checks from the display names of players.
648 Melee:
649 "_*": []
650 Ranged:
651 "_*": []
652 Potion:
653 "_*": []
654 Thorns:
655 "_*": []
656 TNTKill:
657 "_*": []
658 CactusKill:
659 "_*": []
660 DrowningKill:
661 "_*": []
662 CrammingKill:
663 "_*": []
664 FireBlockKill:
665 "_*": []
666 FireTickKill:
667 "_*": []
668 LavaKill:
669 "_*": []
670 MagmaKill:
671 "_*": []
672 VoidKill:
673 "_*": []
674 FallKill:
675 "_*": []
676 Other:
677 "_*": []
678
679custom-biome-names:
680 # See https://hub.spigotmc.org/javadocs/bukkit/org/bukkit/block/Biome.html.
681 # The key should be one from the list above, for example:
682
683 # SAVANNA_ROCK: "Savanna Plateau"
684
685custom-world-names:
686 # World name as the key and display name as the value.
687
688 # "world": "World #1"
689
690custom-messages-per-player:
691 # Add custom messages for players. Use the UUID as the key, then use a death
692 # reason key with the list of messages.
693 # To get the UUID of an online player, use /dmsg uuid player_name
694
695 # Will this override custom-mob-death-messages, custom-user-death-messages
696 # and custom-player-death-messages?
697 override: true
698 # also affects custom-messages-per-killer-player
699
700 # "123e4567-e89b-12d3-a456-426655440000":
701 # natural:
702 # TNT:
703 # - "A VIP player, %plrtag%, blew up!"
704
705custom-messages-per-killer-player:
706 # Same as above, but for killing players in PVP events.
707 # To get the UUID of an online player, use /dmsg uuid player_name
708
709 # "123e4567-e89b-12d3-a456-426655440000":
710 # natural:
711 # TNTKill:
712 # - "%plrtag% got blown up by a VIP player, %entity%!"
713
714custom-messages-per-world:
715 # Add custom messages for worlds. Use the world name as the key, then
716 # use a death reason key with the list of messages.
717 # This has lesser priority than custom-messages-per-player,
718 # custom-messages-per-killer-player or others.
719
720 # "world":
721 # natural:
722 # TNT:
723 # - "A player, %plrtag%, blew up in the specific world!"