- setworldspawn не вызывает игроков в точное место
- Появление игрока
- setworldspawn is not spawning players to the exact place
- 9 Answers 9
- Player Spawning
- How to Use the SetWorldSpawn Command in Minecraft
- Supported Platforms
- Requirements
- SetWorldSpawn Command
- SetWorldSpawn Command in Minecraft Java Edition (PC/Mac)
- Definitions
- SetWorldSpawn Command in Minecraft Pocket Edition (PE)
- Definitions
- SetWorldSpawn Command in Minecraft Xbox One Edition
- Definitions
- SetWorldSpawn Command in Minecraft PS4 Edition
- Definitions
- SetWorldSpawn Command in Minecraft Nintendo Switch Edition
- Definitions
- SetWorldSpawn Command in Minecraft Windows 10 Edition
- Definitions
- SetWorldSpawn Command in Minecraft Education Edition
- Definitions
- Examples
- Example in Java Edition (PC/Mac)
- Example in Pocket Edition (PE)
- Example in Xbox One Edition
- Example in PS4 Edition
- Example in Nintendo Switch Edition
- Example in Windows 10 Edition
- Example in Education Edition
- How to Enter the Command
- 1. Open the Chat Window
- 2. Type the Command
- Other Game Commands
setworldspawn не вызывает игроков в точное место
Как установить мир и точку появления для всех игроков [версия с ошибками см. Описание для обновления]
Я пытаюсь создать карту Minecraft, но не могу установить мировую точку появления. я сделал /setworldspawn тогда /kill и я оказался в 10 кварталах отсюда, затем я попытался снова, я был все еще в 5 кварталах.
На карте необходимо постоянно обновлять точку появления, и если она не работает должным образом, это не вариант. В одном случае я установил спавн, а затем оказался на следующем уровне моей карты, что явно не предназначено.
- Лучший ответ для людей, которые обнаружат это в 2019 году или позже, используйте /gamerule spawnRadius 1 . Это определяет максимальное расстояние, на котором вы появляетесь, от фактических координат появления. По умолчанию установлено значение 10, и вы будете появляться в любом месте в радиусе 10 блоков от точки возрождения.
Попробуйте использовать повторитель с командным блоком, который гласит: » /spawnpoint @a[r= ] «Это гарантирует, что люди в пределах указанной области (в пределах [r=<>] circle) точки появления будут установлены в координаты, и как только они покинут диапазон, они смогут установить свою точку появления в любом другом месте. Не требуются прижимные пластины или растяжка.
Посмотрите запись Minecraft-Wiki для Spawn.
Появление игрока
Начиная с версии Minecraft 1.3, игроки как в одиночной, так и в многопользовательской игре по умолчанию будут появляться в любом месте в пределах области 20×20 с центром в мировой точке появления. Отдельный игрок может изменить свою точку появления, просто лежа в кровати — ему не нужно ложиться спать (что может произойти только в том случае, если все игроки используют кровать одновременно). В отличие от появления в мировом респауна, точка появления игрока устанавливается в определенных координатах; игрок всегда будет возрождаться в одном и том же блоке. В этот блок также помещается игрок, когда он встает с кровати. Если над блоком возрождения есть прозрачные блоки, игрок возродится наверху блоков, но встанет с кровати внутри них на том же уровне, что и кровать.
Акцент мой. Установка только мирового респауна вам не поможет, вам нужно установить точки возрождения игроков. Вместо этого вам следует использовать следующую команду:
который фактически установит точку появления, как если бы он спал в постели (см. Команды). Просто используйте @a установить его для всех игроков сразу.
Как указывает Рокк, это не будет работать для областей «Лобби» (т.е. там, где вы будете появляться, когда впервые войдете в мир в качестве нового игрока), так как вам нужно запустить его для каждого игрока, и вы не можете запустить его раньше. игрок сначала появляется. В этом случае я предлагаю достаточно большую (например, 20×20 или больше) зону нереста, установленную с помощью /setworldspawn . Обратите внимание, что вы появляетесь на верхних блоках в заданной области, поэтому построить его под землей не получится.
- Это может быть сложно, но что, если у меня есть часы бункера для командного блока, который имеет / spawnpoint x y z (team = red). Итак, когда вы впервые присоединяетесь к нему, он имеет / testfor @p [r = 20], затем / scoreboard team @p add red, а затем подумал, что игра добавит вас в разные команды, чтобы изменить время появления. Таким образом, мне не нужно этого делать ?? Будет ли это работать
- Почему это может быть полезным ответом, как правило, лучше добавить немного подробностей о том, как это работает, а не просто давать команду.
- Это действительно старый ответ, но он действительно устранил мою проблему. Эта команда определяет максимальное расстояние, на котором вы появляетесь от точки возрождения, чтобы не создавать всех в одном и том же месте. Ширина моего спауна всего 5 блоков, поэтому я установил это значение на 2, чтобы игроки не появлялись в воздухе и не падали насмерть. Команда: /gamerule spawnRadius 2
- НЕПРАВИЛЬНО: spawnRadius Правило — это целое число, а не логическое значение.
Вы можете установить режим игры по умолчанию в режим приключений (в приключениях майнкрафт порождает игрока прямо на блоке), а затем поставить нажимную пластину в точке появления и настроить игрока на выживание или творчество.
Хотя ответ MrLemon, вероятно, лучший вариант, вам придется повторять его каждый раз, когда новый игрок присоединяется впервые.
Я предлагаю установить Bukkit и использовать плагин для настройки определенного спауна.
Как вариант, можно просто сделать зону нереста 20×20.
- OP хочет постоянно обновлять точку появления, например в начале каждого уровня, судя по его вопросу. Я предполагаю, что он использует командные блоки. Но вы подметили хороший момент, о котором я не подумал.
- Это может быть сложно, но что, если у меня есть часы бункера для командного блока, который имеет / spawnpoint x y z (team = red). Итак, когда вы впервые присоединяетесь к нему, есть / testfor @p [r = 20], затем / scoreboard team @p add red, затем подумал, что игра добавит вас в разные команды, чтобы изменить время появления. Таким образом, мне не нужно этого делать ?? Будет ли это работать
Как отметил MrLemon, игроки всегда появляются случайным образом в области 20×20 по всему миру. Если вы хотите установить точку появления каждого игрока в определенном месте, вы можете поместить точку появления мира в середине области 20×20 растяжек, которые затем активируют командные блоки, устанавливая точку появления всех игроков внутри области, где бы вы ни находились. хотите, чтобы это было, а затем телепортируйте их туда. Это то, что делают многие мини-игры.
Один из способов сделать это — сделать так, чтобы репитер постоянно повторял /spawnpoint @a
все время, пока они не покинут зону возрождения и не пройдут через нажимную пластину, которая использует команды setblock, чтобы прервать работу часов красного камня, повторяя команду точки появления, а затем, покинув зону возрождения, они могут установить точку возрождения, где захотят! отчасти технический, но не совсем.
Что я делаю, так это то, что игроки впервые появляются на моем сервере Realms в огромном квадрате, и когда они уходят, они переступают через нажимную пластину, которая устанавливает их точку появления. Попробуйте, вам может понравиться.
попробуйте посмотреть это видео! это очень полезное видео !! он исправит ваш isusse!
- 1 Привет и добро пожаловать в Arqade! Хорошая практика — давать краткое изложение того, что показывает видео. Это потому, что на случай, если видео когда-нибудь выйдет из строя, здесь все еще будет достаточно информации, чтобы другие люди могли получить необходимую им помощь 🙂
Источник
setworldspawn is not spawning players to the exact place
I am trying to make a Minecraft map but I can’t set the world spawn. I did /setworldspawn then /kill and I ended up 10 blocks away then I tried again I was still 5 blocks away.
In the map it needs to keep updating your spawn point and having it not not working correctly is not an option. In one case I set the spawn, and then ended up in the next level of my map, which is clearly not intended.
9 Answers 9
Try using the a repeater with a command block that states: » /spawnpoint @a[r= ] » This will ensure that people within the specified area (within the [r=<>] circle) will have their spawnpoints set to the coordinates and as soon as they leave the range, they can set their spawnpoint anywhere else. No pressure plates or tripwires required.
Look at the Minecraft-Wiki entry for Spawn.
Player Spawning
Since Minecraft version 1.3, players in both singleplayer and multiplayer will spawn, by default, anywhere within a 20×20 area centered at the world spawn point. An individual player can change their spawn point by merely lying in a bed—they do not have to go to sleep (which can only happen if all players use a bed at the same time). Unlike spawning at the world spawn, a player’s spawn point is set at specific coordinates; the player will always respawn on the same block. This block is also where the player is placed when the player gets out of the bed. If there are transparent blocks over the spawn block, the player will be respawned on top on the blocks, but will get out of bed inside of them on the same level as the bed.
Emphasis mine. Setting only the worldspawn will not help you ,you need to set the players’ spawnpoints. So the command you should be using instead is
which will actually set the spawnpoint as if sleeping in a bed (see Commands). Just use @a to set it for every player at once.
Источник
How to Use the SetWorldSpawn Command in Minecraft
This Minecraft tutorial explains how to use the /setworldspawn command with screenshots and step-by-step instructions.
You can use the /setworldspawn command to set the spawn point for a Minecraft world. Let’s explore how to use this cheat (game command).
Supported Platforms
The /setworldspawn command is available in the following versions of Minecraft:
Platform | Supported (Version*) |
---|---|
| Yes (1.7.2) |
| Yes (0.16.0) |
| No |
| Yes (1.2) |
| No |
| Yes (1.14.0) |
| No |
| Yes (1.5.0) |
| Yes (0.16.0) |
| Yes |
* The version that it was added or removed, if applicable.
NOTE: Pocket Edition (PE), Xbox One, PS4, Nintendo Switch, and Windows 10 Edition are now called Bedrock Edition. We will continue to show them individually for version history.
Requirements
To run game commands in Minecraft, you have to turn cheats on in your world.
SetWorldSpawn Command
- Java
- PE
- Xbox
- PS
- Nintendo
- Win10
- Edu
SetWorldSpawn Command in Minecraft Java Edition (PC/Mac)
In Minecraft Java Edition (PC/Mac), the syntax to set the world spawn point is:
Definitions
- pos is optional. It is the x y z coordinate to use for the world spawnpoint. If you don’t specify a coordinate, the command will use your current position in the game.
SetWorldSpawn Command in Minecraft Pocket Edition (PE)
In Minecraft Pocket Edition (PE), the syntax to set the world spawn point is:
Definitions
- spawnPoint is optional. It is the x y z coordinate to use for the world spawnpoint. If you don’t specify a coordinate, the command will use your current position in the game. Learn about the coordinate system.
SetWorldSpawn Command in Minecraft Xbox One Edition
In Minecraft Xbox One Edition, the syntax to set the world spawn point is:
Definitions
- spawnPoint is optional. It is the x y z coordinate to use for the world spawnpoint. If you don’t specify a coordinate, the command will use your current position in the game. Learn about the coordinate system.
SetWorldSpawn Command in Minecraft PS4 Edition
In Minecraft PS4 Edition, the syntax to set the world spawn point is:
Definitions
- spawnPoint is optional. It is the x y z coordinate to use for the world spawnpoint. If you don’t specify a coordinate, the command will use your current position in the game. Learn about the coordinate system.
SetWorldSpawn Command in Minecraft Nintendo Switch Edition
In Minecraft Nintendo Switch Edition, the syntax to set the world spawn point is:
Definitions
- spawnPoint is optional. It is the x y z coordinate to use for the world spawnpoint. If you don’t specify a coordinate, the command will use your current position in the game. Learn about the coordinate system.
SetWorldSpawn Command in Minecraft Windows 10 Edition
In Minecraft Windows 10 Edition, the syntax to set the world spawn point is:
Definitions
- spawnPoint is optional. It is the x y z coordinate to use for the world spawnpoint. If you don’t specify a coordinate, the command will use your current position in the game. Learn about the coordinate system.
SetWorldSpawn Command in Minecraft Education Edition
In Minecraft Education Edition, the syntax to set the world spawn point is:
Definitions
- spawnPoint is optional. It is the x y z coordinate to use for the world spawnpoint. If you don’t specify a coordinate, the command will use your current position in the game. Learn about the coordinate system.
Examples
- Java
- PE
- Xbox
- PS
- Nintendo
- Win10
- Edu
Example in Java Edition (PC/Mac)
To set the world spawn point to your current location in Minecraft Java Edition (PC/Mac):
To set the world spawn point to an absolute position of (-113, 92, 211) as the (x, y, z) coordinate:
To set the world spawn point to a relative position (that is 19 blocks West and 10 blocks North of our current position):
Example in Pocket Edition (PE)
To set the world spawn point to your current location in Minecraft PE:
To set the world spawn point to an absolute position of (22, 64, 35) as the (x, y, z) coordinate:
To set the world spawn point to a relative position (that is 5 blocks East and 8 blocks North of our current position):
Example in Xbox One Edition
To set the world spawn point to your current location in Minecraft Xbox One Edition:
To set the world spawn point to an absolute position of (8, 70, -5) as the (x, y, z) coordinate:
To set the world spawn point to a relative position (that is 6 blocks West and 3 blocks South of our current position):
Example in PS4 Edition
To set the world spawn point to your current location in Minecraft PS4 Edition:
To set the world spawn point to an absolute position of (10, 67, -5) as the (x, y, z) coordinate:
To set the world spawn point to a relative position (that is 8 blocks East and 3 blocks North of our current position):
Example in Nintendo Switch Edition
To set the world spawn point to your current location in Minecraft Nintendo Switch Edition:
To set the world spawn point to an absolute position of (-100, 61, 2) as the (x, y, z) coordinate:
To set the world spawn point to a relative position (that is 10 blocks East and 2 blocks North of our current position):
Example in Windows 10 Edition
To set the world spawn point to your current location in Minecraft Windows 10 Edition:
To set the world spawn point to an absolute position of (8, 67, 32) as the (x, y, z) coordinate:
To set the world spawn point to a relative position (that is 2 blocks West and 14 blocks South of our current position):
Example in Education Edition
To set the world spawn point to your current location in Minecraft Education Edition:
To set the world spawn point to an absolute position of (21, 75, 6) as the (x, y, z) coordinate:
To set the world spawn point to a relative position (that is 9 blocks East and 6 blocks North of our current position):
How to Enter the Command
1. Open the Chat Window
The easiest way to run a command in Minecraft is within the chat window. The game control to open the chat window depends on the version of Minecraft:
- For Java Edition (PC/Mac), press the T key to open the chat window.
- For Pocket Edition (PE), tap on the chat button at the top of the screen.
- For Xbox One, press the D-Pad (right)
on the controller.
- For PS4, press the D-Pad (right)
on the controller.
- For Nintendo Switch, press the right arrow button on the controller.
- For Windows 10 Edition, press the T key to open the chat window.
- For Education Edition, press the T key to open the chat window.
2. Type the Command
In this example, we will set the world spawn point to a coordinate of (-113, 92, 211):
Type the command in the chat window. As you are typing, you will see the command appear in the lower left corner of the game window. Press the Enter key to run the command.
Once the cheat has been entered, the spawnpoint for the Minecraft world will be changed to the new coordinates.
In this example, the new world spawnpoint will be at (-113, 92, 211).
Congratulations, you just learned how to use the /setworldspawn command in Minecraft!
Other Game Commands
You can use other commands and cheats in Minecraft such as:
Источник