Minecraft Tutorials

Minecraft CoreProtect Rolling Back Player Death

Learn how to roll back dropped items after a player death in Minecraft using CoreProtect, with lookup and rollback commands to recover lost inventory...

Last updated: February 28, 2026

4.9

482+ Satisfied Customers

Recover a player’s dropped items after death using CoreProtect’s lookup and rollback commands. You can’t directly roll back the kill action, but you can roll back the items that dropped when they died - regardless of whether those items burned, fell into the void, were picked up by another player, or despawned.

How Item Recovery Works

When a player dies, CoreProtect logs two types of events: the kill action (the death itself) and -inventory actions (each item that left their inventory). The kill action can’t be rolled back, but the inventory transactions can. Rolling them back puts the items directly into the player’s inventory.

This works for any death cause - lava, void, PvP, explosions, drowning, or fall damage. The process is always the same: look up the item drops at the death location, then roll them back.

Looking Up Dropped Items

Go to the location where the player died and run a lookup to confirm the item drops were logged. Use the -inventory action to filter out everything else.

A list of results for a player death, including item drops and kill action.

Stand at the death location and run:

/co lookup user:mov51 action:-inventory radius:5 time:15m

This targets all negative inventory transactions (items leaving the player) within 5 blocks over the last 15 minutes. Adjust radius if the player was moving when they died, and time if the death wasn’t recent.

A filtered version of the actions generated by the death event, filtered to only include drop events.

Rolling Back the Items

Once the drops show up in the lookup, replace lookup with rollback using the same parameters:

/co rollback user:mov51 action:-inventory radius:5 time:15m

The items return directly to the player’s inventory.

Command Quick Reference

ParameterWhat it doesExample
user:<name>Target a specific playeruser:mov51
action:-inventoryFilter to item drops onlyRequired for death rollbacks
radius:<blocks>Search area around youradius:5 (small), radius:15 (large)
time:<duration>How far back to searchtime:15m, time:1h, time:2d

Tips

  • Always run the lookup first. If nothing appears in the lookup, the rollback won’t recover anything. This also lets you verify you’re targeting the right events before making changes.
  • Keep the radius tight. A 3-5 block radius avoids accidentally rolling back nearby container transactions. Widen it if the player died while moving or falling.
  • Void deaths still work. Items that fell into the void are still logged as -inventory events. The same lookup/rollback process applies.
  • Multiple deaths in one spot. If several players died at the same location (PvP fight, mob farm), use the user parameter to target one player at a time to avoid mixing up inventories.