tpコマンドでネザーやエンドに移動
マインクラフトでワープする方法は tp
コマンドが一般的ですが、
ちょっとした工夫をすることで、ネザーやエンドにもワープすることができます。
execute
コマンドを応用することで、簡単にtpが可能です。
/execute in minecraft:the_nether run tp 0 100 0
- minecraft:overworld ・・ (通常ディメンション)
- minecraft:the_nether ・・(ネザー)
- minecraft:the_end ・・(エンド)
に変更すれば好きなディメンションに移動が可能になります。
コマンドの run
以降は通常の tp
コマンドの書式と同じですのでセレクターでエンティティの指定も可能です。
これでいちいちポータルを作らなくても大丈夫ですね!
以下コピペ用
通常ディメンション行き
/execute in minecraft:overworld run tp 0 0 0
ネザー行き
/execute in minecraft:the_nether run tp 0 0 0
エンド行き
/execute in minecraft:the_end run tp 0 100 0