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

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

MENU

WorldEditの操作方法まとめ (day87)

WorldEditの操作方法まとめ

WorldEdit Documentation — WorldEdit 7.2 documentation

1. 木の斧をGetし、範囲指定→ブロックなどをまとめて配置

1.1.  //wand  と入力し木の斧をgetする。

f:id:DrFlourishing:20220211101337p:plain

ただの斧に見えるが、これがWorldEditの基本操作に必要。

1.2. 木の斧で、まとめてブロックを置きたい場所を指定する。

左クリックで始点、右クリックで終点を指定すればよい。

f:id:DrFlourishing:20220211102054p:plain

左クリックで始点(first position)を指定する。

f:id:DrFlourishing:20220211102244p:plain

右クリックで終点(second position)を指定する。

1.3. 指定した範囲が全てをブロックなどで置き換える。

例えば

//set stone

と入れると、

f:id:DrFlourishing:20220211101929p:plain

始点から終点まで石を置けた。

この方法の方が直感的でわかりやすい。

 

2. 基本コマンド

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

//undo [times] [player]

times:何回分取り消すか

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

 

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

//redo [times] [player]

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

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

 

2.3. ブロックを移動させる: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

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

//copy [-be]

-b: biomeも含める

-e: entitiesも含める

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

//paste [-abenos]

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

-b: biomeも含める

-e: entitiesも含める

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

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

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

 

2.6. 円、円柱(シリンダー)を作る

//cyl -h <pattern> <radii> [height]

-h:中身を空洞にする

pattern: ブロックの名前

radii: 半径

height: 高さ

 

円を作りたい場合はheightを1にすればよい。

//cyl -h stone 10 1

f:id:DrFlourishing:20220211204749p:plain

円が出来た。

2.7. 球を作る

//sphere -h s<pattern> <radii>

-h:中身を空洞にする

pattern: ブロックの名前

radii: 半径

自分を中心に作ることになるので、作成後は暗闇になる。脱出用にtorchなどを持っておくことを勧める。

//sphere -h stone 20

f:id:DrFlourishing:20220211204903p:plain

自分を中心に球ができるので、出来た直後は真っ暗だ。

穴をあけて外に出ると、球ができているのが確認できる。

f:id:DrFlourishing:20220211205008p:plain

脱出すると見事な球ができている。

2.8. ピラミッドを作る

//pyramid [-h] <pattern> <size>

-h:中身を空洞にする

pattern: ブロックの名前

size: 辺の長さ

自分を中心に作ることになるので、作成後は暗闇になる。脱出用にtorchなどを持っておくことを勧める。

//pyramid -h sandstone 20

f:id:DrFlourishing:20220211205104p:plain

ピラミッドの完成!

2.9. バイオームを変える:Biome Commands

2.9.1. 利用可能なbiomeを見る:getting all biomes available

/biomelist <page>

<page>: ページ番号を入れる

ex.) /biomelist 2

 

2.9.2. biomeが何かを知る:getting the biome of the targeted block

/biomeinfo [-pt]

-p: 今いるblock: the block you are currently in

-t: 見ているblock: the block you are looking at

 

2.9.3. biomeをセットする: set the biome

//setbiome [-p] <target>

<target>: biome you want to set

[-p]: use your current position

 

2.10. 回転させる: Rotate the contents of the clipboard

//rotate <rotateY> [rotateX] [rotateZ]

正の値が時計回り。90, 180, 270のいずれか。