A command that allows you to teleport the last place you died so you can get you stuff. Maybe it could be like /teleport @s.last death or something like that.
There are other answers below:
Minecraft Tips & Tricks #6: How to teleport back to your death point! – YouTube.
You could try searching for item entities (assuming you dropped some when you died) in NBTExplorer. Search > Find > Value > minecraft:item. You might get a few false positives but worth a shot if you don’t think you can find it in game.
One command that could kind of substitute for what you are talking about is /spawnpoint, which would set your spawn point to your current location so that when you die you respawn at that location. You can also do /spawnpoint
If you were moving around then it is unlikely you’ll find the exact coordinates, however if you just recently teleported to that area and only moved a little bit before changing your gamemode, the coords you teleported to should be in your client log. Just open your minecraft folder and look for logs, then look for the date/time you were online.
Related Questions
How do you teleport to the last place you died?
Follow Post Command to teleport where you died last A command that allows you to teleport the last place you died so you can get you stuff. Maybe it could be like /teleport @s.last death or something like that
How do I find the coordinates of a location I teleport to?
If you were moving around then it is unlikely you’ll find the exact coordinates, however if you just recently teleported to that area and only moved a little bit before changing your gamemode, the coords you teleported to should be in your client log. Just open your minecraft folder and look for logs, then look for the date/time you were online.
How to teleport to a specific location from a hashmap?
This command is basically like Essentials’ /back command. You’ll need to listen to the EntityDeathEvent, check if it’s a player, and add that player/location to a HashMap. Then, on your command, get the location from your map based on the player using the command and teleport.
How do I get the location of a player in entitydeathevent?
You’ll need to listen to the EntityDeathEvent, check if it’s a player, and add that player/location to a HashMap. Then, on your command, get the location from your map based on the player using the command and teleport. There is no getPlayer in EntityDeathEvent.