How do you set a spawn point upon death?Vanilla 1.8 detect new playerHow can I make a wolf tamed by an arbitrary player using command blocks?How to make an automatic spawn point when you dieHow to set player specific spawn points in Minecraft? (PC edition, of course)How to spawn a command block with a command inside and have a certain condition chain ectCommand to spawn in-game Player head?Minecraft - Run commands as a dead playerSpawn away from spawn block that was set by /setworldspawnHow Do You Make Team Spawn Points?How can I stop players from spawning at their beds in Minecraft 1.14?
Iterate over non-const variables in C++
Time travel novel: machine makes clones, clones battle to be the one to get back their life
Why can't my huge trees be chopped down?
Why isn't there a serious attempt at creating a third mass-appeal party in the US?
Commercial jet accompanied by small plane near Seattle
401(k) investment after being fired. Do I own it?
Invert Some Switches on a Switchboard
How do I stop my characters falling in love?
What does "see" in "the Holy See" mean?
TSA asking to see cell phone
Why was Sauron not trying to find the Ring, and instead of preparing for war?
How to judge a Ph.D. applicant that arrives "out of thin air"
Inadvertently nuked my disk permission structure - why?
Strange Cron Job takes up 100% of CPU Ubuntu 18 LTS Server
Automatic Habit of Meditation
How important is a good quality camera for good photography?
What is the lowest-speed bogey a jet fighter can intercept/escort?
How do we explain the E major chord in this progression?
Can the Artificer's infusions stack? Returning weapon + radiant weapon?
High income, sudden windfall
Reduce column width of table while also aligning values at decimal point
What are the exact meanings of roll, pitch and yaw?
(1 of 11: Numberlink) What is Pyramid Cult's Favorite Activity?
Replacing tongue and groove floorboards: but can't find a match
How do you set a spawn point upon death?
Vanilla 1.8 detect new playerHow can I make a wolf tamed by an arbitrary player using command blocks?How to make an automatic spawn point when you dieHow to set player specific spawn points in Minecraft? (PC edition, of course)How to spawn a command block with a command inside and have a certain condition chain ectCommand to spawn in-game Player head?Minecraft - Run commands as a dead playerSpawn away from spawn block that was set by /setworldspawnHow Do You Make Team Spawn Points?How can I stop players from spawning at their beds in Minecraft 1.14?
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;
How would you set a player's spawn point when they die? I'm making a map where the way to move on to the next level is by dying. Basically, what I want is a command that will set the player's spawn point to the next level upon death.
minecraft-commands minecraft-pocket-edition
add a comment |
How would you set a player's spawn point when they die? I'm making a map where the way to move on to the next level is by dying. Basically, what I want is a command that will set the player's spawn point to the next level upon death.
minecraft-commands minecraft-pocket-edition
add a comment |
How would you set a player's spawn point when they die? I'm making a map where the way to move on to the next level is by dying. Basically, what I want is a command that will set the player's spawn point to the next level upon death.
minecraft-commands minecraft-pocket-edition
How would you set a player's spawn point when they die? I'm making a map where the way to move on to the next level is by dying. Basically, what I want is a command that will set the player's spawn point to the next level upon death.
minecraft-commands minecraft-pocket-edition
minecraft-commands minecraft-pocket-edition
edited 21 mins ago
pppery
1,4317 silver badges20 bronze badges
1,4317 silver badges20 bronze badges
asked Feb 2 at 19:54
CranberryMCCranberryMC
61 bronze badge
61 bronze badge
add a comment |
add a comment |
2 Answers
2
active
oldest
votes
Place a pressure plate down, and under it place a Command Block saying
/spawnpoint @p ~ ~1 ~
.
if you want to make it more precise on whom it teleports, you can use
/execute @a[x=?,y=?,z=?,r=0] ~ ~ ~ spawnpoint @s ~ ~ ~
add a comment |
When player enters death room, make a pressure plate linked to command block that sets their spawnpoint to the next room.
add a comment |
Your Answer
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "41"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
noCode: true, onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fgaming.stackexchange.com%2fquestions%2f345961%2fhow-do-you-set-a-spawn-point-upon-death%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
Place a pressure plate down, and under it place a Command Block saying
/spawnpoint @p ~ ~1 ~
.
if you want to make it more precise on whom it teleports, you can use
/execute @a[x=?,y=?,z=?,r=0] ~ ~ ~ spawnpoint @s ~ ~ ~
add a comment |
Place a pressure plate down, and under it place a Command Block saying
/spawnpoint @p ~ ~1 ~
.
if you want to make it more precise on whom it teleports, you can use
/execute @a[x=?,y=?,z=?,r=0] ~ ~ ~ spawnpoint @s ~ ~ ~
add a comment |
Place a pressure plate down, and under it place a Command Block saying
/spawnpoint @p ~ ~1 ~
.
if you want to make it more precise on whom it teleports, you can use
/execute @a[x=?,y=?,z=?,r=0] ~ ~ ~ spawnpoint @s ~ ~ ~
Place a pressure plate down, and under it place a Command Block saying
/spawnpoint @p ~ ~1 ~
.
if you want to make it more precise on whom it teleports, you can use
/execute @a[x=?,y=?,z=?,r=0] ~ ~ ~ spawnpoint @s ~ ~ ~
answered Mar 29 at 20:28
villager1villager1
164 bronze badges
164 bronze badges
add a comment |
add a comment |
When player enters death room, make a pressure plate linked to command block that sets their spawnpoint to the next room.
add a comment |
When player enters death room, make a pressure plate linked to command block that sets their spawnpoint to the next room.
add a comment |
When player enters death room, make a pressure plate linked to command block that sets their spawnpoint to the next room.
When player enters death room, make a pressure plate linked to command block that sets their spawnpoint to the next room.
answered Feb 15 at 19:10
Tabin1000Tabin1000
713 bronze badges
713 bronze badges
add a comment |
add a comment |
Thanks for contributing an answer to Arqade!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fgaming.stackexchange.com%2fquestions%2f345961%2fhow-do-you-set-a-spawn-point-upon-death%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown