内科専門医 今日もマイクラ処方中

Minecraftの医学的有効性を検証中

MENU

マイクラのMOD、WorldEditの基本コマンド集 (day41)

建築をする際に超便利なMOD、WorldEdit。

drflourishing.hatenablog.com

ここでは基本コマンドを確認していく。

参考↓

WorldEdit Documentation — WorldEdit 7.2 documentation

前の作業を取り消す: Undoes the last action

//undo [times] [player]

times:何回分取り消すか

player:誰の作業を取り消すか。

 

前の作業をもう一度行う:Redoes the last action

//redo [times] [player]

times:何回分もう一度行うか。

player:誰の作業をもう一度行うか。

 

ブロックを移動させる:Move the contents of the selection

//move [-saeb] [distance amount][direction][replace]

-s: 選択範囲を移動先に変更する。

-a: airブロックは無視する

-e: entitiesも含める

-b: biomeも含める

distance amount: 移動距離

direction: 移動方向。以下より選ぶ:forward back right left up down

replace: 移動元のブロックを別のブロックに置き換える

 

5マス前方に移動させる。移動元には石を置く。ただし、airだった場所はairのままになる。

//move -a 5 forward stone

コピーする: Copy the selection to the clipboard

//copy [-be]

-b: biomeも含める

-e: entitiesも含める

 

 

ペイストする: Paste the clipboard’s contents

//paste [-abenos]

-a: airブロックは無視する

-b: biomeも含める

-e: entitiesも含める

-n: ペイストせず選択するだけ。

-o: 元の場所にペイストする

-s: ペイストした後、その場所(ペイストした場所)を選択範囲とする。