Logo
MINECRAFTBIBLE
Items
Items

All game items

Blocks
Blocks

Building blocks

Mobs
Mobs

Creatures & monsters

Biomes
Biomes

World biomes

Structures
Structures

Generated structures

Recipes
Recipes

Crafting guides

Advancements
Advancements

Achievements

Loot Tables
Loot Tables

Drop rates

Tags
Tags

Item groupings

All Versions
View all data →
Capes
Cape ArchiveNEW

Browse rare Minecon capes, OptiFine capes, and custom capes from players worldwide

Browse

Player Database
Player DatabasePopular

Search any player

Skin Browser
Skin Browser

Browse & download skins

Cape Gallery
Cape GalleryNEW

Minecon & OptiFine capes

Seed Vault
Seed Vault

Curated seeds

Learn

Guides
GuidesNew

Tutorials & tips

Blog
Blog

News & updates

Community

Community Hub
Community HubHub

Posts, discussions & more

All Versions
View community →
Seed Analyzer
Seed Analyzer

World seed analysis

Loot Explorer
Loot Explorer

Drop rates

Crafting Calculator
Crafting Calculator

Material planning

Enchant Calculator
Enchant Calculator

Probability math

Redstone Lab
Redstone Lab

Signal timing

Trading Profit
Trading Profit

Villager ROI

All Versions
View all tools →
Mods
Mods

Browse all mods

Plugins
Plugins

Server plugins

Resource Packs
Resource Packs

Textures & sounds

Shaders
Shaders

Visual enhancements

Datapacks
Datapacks

World logic

Scanner
Mod Intelligence

Scan & analyze any mod

All Versions
View all mods →
Loading...
IntroductionIntroductionVersion HistoryVersion HistoryGuidesGuidesBlog & NewsBlog & News
ItemsItemsBlocksBlocksMobsMobsRecipesRecipesBiomesBiomesStructuresStructuresAdvancementsAdvancementsLoot TablesLoot TablesTagsTags
ModsModsPluginsPluginsResource PacksResource PacksShadersShadersDatapacksDatapacks

MinecraftBible

The Ultimate Wiki

Logo
MINECRAFTBIBLE

The ultimate Minecraft reference. Every item, block, mob, and recipe documented with precision.

Community

  • Skin Browser
  • Cape Gallery
  • Seed Vault
  • Blog
  • Guides

Database

  • Items
  • Blocks
  • Mobs
  • Recipes
  • Biomes
  • Structures

Tools

  • Seed Analyzer
  • Mod Intelligence
  • Crafting Calculator
  • Enchant Calculator

Mods & Packs

  • Mods
  • Plugins
  • Resource Packs
  • Shaders
  • Datapacks

Site & Legal

  • About
  • Authors
  • Editorial Policy
  • Corrections
  • Contact
  • Privacy Policy
  • Terms of Service
  • DMCA
  • Sitemap

© 2026 MinecraftBible. Not affiliated with Mojang or Microsoft.

PrivacyTermsContact
DeathChest
PluginMIT

DeathChest

A plugin that creates a treasure chest when a player dies

373
Downloads
0
Followers
6 months ago
Updated
📦
2
Versions
adventuregame-mechanicspaperpurpur
Download Latestv1.3.0View on Modrinth

📖About DeathChest

DeathChest - Death Chest Plugin

A plugin for Minecraft servers that automatically creates a chest containing a player's items upon death.

📦 Features

  • Automatic Chest Creation – Upon death, all player items are placed into a chest
  • Flexible Configuration – Multiple settings for various needs
  • Chest Protection – Explosion, fire, and piston protection
  • Permission System – Flexible access management
  • WorldGuard Compatibility – Chests can be opened in protected regions
  • Multi-World Support – Can restrict chest creation in specific worlds
  • Holograms Above Chest – Displays the owner's name (requires DecentHolograms)
  • Automatic Cleanup – Periodic task removes expired chests

🖼️ Screenshots

DeathChest

Dependencies:

DecentHolograms - optional (to display a hologram above the chest)

⚙️ Installation

  1. Download the latest version
  2. Place the .jar file into your server's plugins/ folder
  3. Restart the server
  4. Configure the config file to your liking
  5. Reload the plugin with /dchest reload or restart the server

🎮 Commands

/deathchest list    – List your death chests
/deathchest reload  – Reload configuration and chests (requires permission)
/deathchest version – Show plugin version
/deathchest help    – Show help

Alias: /dchest

🔐 Permissions

deathchest.use    – Basic permission to use the plugin (default: true)
deathchest.reload – Reload configuration and chests (default: op)
deathchest.admin  – Administrator permissions (default: op)
deathchest.*      – All plugin permissions

📁 Configuration

The config.yml file is automatically created on first run:

# DeathChest - Configuration

# Chest creation settings
chest-creation:
  # Create a chest only upon death by a mob
  mob-death-only: false
  # Worlds where death chests are allowed (empty = all worlds)
  allowed-worlds: [ ]
  # Disabled worlds where death chests are turned off
  blacklisted-worlds: [ ]

# Chest interaction settings
chest-interactions:
  # Can players interact with others' death chests
  allow-access-others-chests: true
  # Can players break a death chest
  player-breakable: true
  # Is the chest protected from explosions
  explosion-proof: true
  # Do items drop when the chest is exploded
  items-drop-when-exploded: true
  # Do items drop when the chest is broken by a player
  items-drop-when-broken: true
  # Automatically remove empty chests
  remove-empty-chests: true

# Chest appearance settings
chest-appearance:
  # Custom chest title (supports MiniMessages)
  title: "<gradient:gold:white>Death Chest:</gradient> <gold>{player}"
  # Chest expiration time in minutes (0 = never expires)
  expiration-time: 1440  # Default 24 hours
  # Display hologram above chest (requires DecentHolograms)
  hologram-enabled: true
  # Does not support MiniMessages, use colors from https://wiki.decentholograms.eu/general/format-and-colors/colors/
  hologram:
    - "<#800000>☠ <#FFD700>Death Chest </#FFFFFF><#800000>☠"
    - "<#FFD700>Player: <#FFFFFF>{owner}"

# Time translation
time-ago:
  days: "days"
  hours: "hours"
  minutes: "minutes"

# Message prefix (supports MiniMessages)
prefix: "<gradient:gold:white>[DeathChest]</gradient>"

# Messages (supports MiniMessages)
messages:
  # commands
  player-only: "<red>This command can only be used by players."
  no-permission: "<red>You do not have permission to use this command"
  help: |
    <gradient:gold:white>=== DeathChest Commands ===
    <white>/deathchest list <gray>- List your death chests
    <white>/deathchest reload <gray>- Reload configuration (requires permission)
    <white>/deathchest version <gray>- Show plugin version
    <white>/deathchest help <gray>- Show this help
  version: "<white>DeathChest <yellow>v{version}"
  list-header: "<gradient:gold:white>=== Your Death Chests ===</gradient>"
  list-format: "<yellow>World: <white>{world} <yellow>X: <white>{x} <yellow>Y: <white>{y} <yellow>Z: <white>{z} <gray>({time} ago)"
  list-numbered: "<white>{number}. "
  no-chests: "<green>You have no active death chests"
  reload-success: "<green>Configuration reloaded!"
  # listeners
  chest-created: "<white>Your death chest was created at coordinates: <yellow>X: {x} Y: {y} Z: {z}."
  chest-accessed: "<white>You are opening the death chest of player: <yellow>{player}."
  access-denied: "<red>This death chest belongs to player: <yellow>{player}."
  cannot-break: "<red>You cannot break this death chest while it contains items!"
  chest-removed: "<green>The death chest disappeared because you took all items."
  chest-broken-own: "<white>You broke your own death chest."
  chest-broken-other: "<white>You broke the death chest of player <yellow>{player}."

🔧 Features

Chest Protection

  • Explosion Protection – Chests are protected from explosions (configurable)
  • Fire Protection – Chests do not burn or catch fire
  • Piston Protection – Pistons cannot move death chests
  • Region Access – Chests can be opened even in protected WorldGuard regions

Smart Creation

  • Location Search – The plugin automatically searches for a suitable place for the chest
  • Item Check – If a player has no items, a chest is not created
  • World Filter – Can restrict chest creation in specific worlds

Access Management

  • Ownership Rights – Only the owner can open their chest (configurable)
  • Breaking Permission – Ability to break chests can be configured
  • Auto-Removal – Empty chests are automatically removed
  • Holograms – Owner's name is displayed above the chest if enabled

Automatic Management

  • Periodic Cleanup – Expired chests are automatically removed

👥 Team & Contributors

FlyAwayMaking
FlyAwayMakingOwner

⚙️ Compatibility

Environment
🖥️ Server-side
Loaders
paperpurpur
Minecraft Versions
1.211.21.11.21.21.21.31.21.41.21.51.21.61.21.7+4 more

🔗 Links

Modrinth Page