LOLYouDied: Custom Death Events for Minecraft

LOLYouDied mod for Minecraft adds customizable sounds and loot on player death via flexible JSON selectors. Turn every death into a unique server event.

Download LOLYouDied for Minecraft 1.10.2

Original name: LOLYouDied

Minecraft: 1.10.2

Loaders: Forge

FileVersionLoaderSize
LOLYouDied-1.0-SNAPSHOT.jar1.10.2Forge21 КБDownload
LOLYouDied-1.0.1.jar1.10.2Forge22 КБDownload
LOLYouDied-1.0.2.jar1.10.2Forge22 КБDownload

LOLYouDied: Customizable Death Events for Minecraft

Server admins know the drill: one player dies ten times in a row, chat erupts, and then everyone moves on. With LOLYouDied: Customizable Death Events for Minecraft, those deaths become something worth noticing. This lightweight utility lets you attach custom sounds and loot drops to specific death counts, turning a boring respawn screen into a moment of drama, comedy, or reward. It is a straightforward JSON-driven system that works cleanly on both client and dedicated server setups.

What the Mod Does

The core idea is a trigger system tied to a per-player death counter. You define rules that fire on the first death, the tenth, or every fifth. Each rule can play a random sound from a list and grant items through standard Minecraft loot tables. The configuration file is read at startup, so changes require a reload or restart. The death counter starts at 1, not 0, which matters when writing selectors.

Selectors Explained

Selectors determine which death triggers an event. There are four basic types:

  • 0 - fires on every death without exception.
  • * - fallback selector for deaths not covered by an explicit rule (except those matched by "0").
  • n - a specific death number, e.g., "7" for the seventh death.
  • n-m - a range, inclusive. "10-20" covers deaths 10 through 20.
  • n- - from n to infinity. "10-" affects every death starting with the tenth.

Note that "-n" is not valid; you must write "1-n" explicitly. Logical selectors combine basics: "a;b" is OR, "a/n" fires when the death count matches "a" and divides evenly by n, and "a/n%m" adds a remainder condition. For example, "10-20/2%1" targets odd deaths in that range. You cannot mix different basic selector types in one chain.

Events: Sound and Loot

Each selector accepts a "sound" field, a "loot" field, or both. Sounds are resource location strings; if you provide an array, the mod picks one randomly per death. Loot can be a path to an existing table (e.g., "minecraft:chests/spawn_bonus_chest"), an inline JSON table, or a raw array of pools. All items are granted directly to the player.

Example Configuration

The developer provides a sample that demonstrates the system:

{
  "*": {
    "loot": {"pools":[{"rolls":1,"entries":[{"type":"item","weight":1,"name":"minecraft:stone"}]}]}
  },
  "0": {
    "sound": "lolyoudied:lol_you_died"
  },
  "*/10": {
    "loot": "minecraft:chests/spawn_bonus_chest",
    "sound": "minecraft:entity.enderdragon.death"
  }
}

Here, the fallback selector gives one stone per death. The "0" selector adds the signature sound on every death. The "*/10" logical selector fires on every tenth death, granting bonus chest loot and playing the Ender Dragon roar. This scales the drama as deaths accumulate.

Installation and Compatibility

LOLYouDied: Customizable Death Events for Minecraft for Minecraft supports modern Fabric and Forge loaders. It works on vanilla servers and modded packs alike. To install, place the jar in the "mods" folder on both client and server. The config JSON goes into the "config" directory. If you want to skip manual setup, use a launcher that supports mod catalogs. For example, the foxygame.net launcher lets you add the mod in a couple of clicks, pulling dependencies automatically. That is the fastest way to test the mod without touching file paths.

How to Install Manually

  1. Download the mod jar matching your Minecraft version and loader.
  2. Copy it to the "mods" folder in your game directory.
  3. Start the game once to generate the default config file.
  4. Edit the config JSON with your selectors and events.
  5. Restart the server or client to apply changes.

Practical Server Ideas

The flexibility of JSON allows for creative setups. On a hardcore server, give a consolation prize on the first death and a powerful weapon on the fifth. On a casual server, play a funny sound every tenth death to lighten the mood. You can also build a progression system where loot improves as the death count rises, encouraging risk-taking. Since the counter never resets, high-number selectors become rare rewards for the persistent or the unlucky.

Conclusion

LOLYouDied: Customizable Death Events for Minecraft is a small mod with a big impact. It adds personality to deaths without requiring programming knowledge. The selector system is intuitive, and the loot table integration is seamless. Whether you run a vanilla server or a complex modpack, this tool gives you precise control over how deaths are celebrated. Write your JSON, drop it in the config folder, and every death becomes a distinct event.

To get started, download LOLYouDied: Customizable Death Events for Minecraft from a trusted mod repository, verify the version matches your loader, and follow the how to install steps above. The mod is stable, lightweight, and ready for production use.