From b922097e7af7e3ad938741fd659210159e91cc4c Mon Sep 17 00:00:00 2001 From: Daniel Sosa Date: Wed, 18 Feb 2015 17:27:32 -0600 Subject: Update command documentation --- ChatCommands.md | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) (limited to 'ChatCommands.md') diff --git a/ChatCommands.md b/ChatCommands.md index b11aaf0..1760e81 100644 --- a/ChatCommands.md +++ b/ChatCommands.md @@ -386,3 +386,38 @@ This mode can be left with `//mtschemprob finish`. `//mtschemprob get` will disp Clears all objects within the WorldEdit region. //clearobjects + +### `//shift x/y/z/?/up/down/left/right/front/back [+|-]` + +Shifts the selection area by [+|-] without touching its contents. The shifting axis can be absolute (x/y/z) or +relative (up/down/left/right/front/back). + + //shift left 5 + +### `//expand [+|-]x/y/z/?/up/down/left/right/front/back [reverse-amount]` + +Expands the selection by in the selected absolute or relative axis. If specified, the selection can be expanded in the +opposite direction iver the same axis by [reverse-amount] + + //expand right 7 5 + +### `//contract [+|-]x/y/z/?/up/down/left/right/front/back [reverse-amount]` + +Contracts the selection by in the selected absolute or relative axis. If specified, the selection can be contracted in the +opposite direction iver the same axis by [reverse-amount] + + //expand right 7 5 + +### `//outset [h|v] ` + +Expands the selection in all directions by . If specified, the selection can be expanded horizontally in the x and z axes [h] +or vertically in the y axis [v]. + + //outset v 5 + +### `//inset [h|v] ` + +Contracts the selection in all directions by . If specified, the selection can be contracted horizontally in the x and z axes [h] +or vertically in the y axis [v]. + + //outset v 5 \ No newline at end of file -- cgit v1.2.3 From 78890dde07e7006a9e4c2b853720d7e544760947 Mon Sep 17 00:00:00 2001 From: Daniel Sosa Date: Thu, 19 Feb 2015 14:01:45 -0600 Subject: Clean some documentation issues --- ChatCommands.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) (limited to 'ChatCommands.md') diff --git a/ChatCommands.md b/ChatCommands.md index 1760e81..6dc4c72 100644 --- a/ChatCommands.md +++ b/ChatCommands.md @@ -389,35 +389,35 @@ Clears all objects within the WorldEdit region. ### `//shift x/y/z/?/up/down/left/right/front/back [+|-]` -Shifts the selection area by [+|-] without touching its contents. The shifting axis can be absolute (x/y/z) or -relative (up/down/left/right/front/back). +Shifts the selection area by `[+|-]` without touching its contents. The shifting axis can be absolute (`x/y/z`) or +relative (`up/down/left/right/front/back`). //shift left 5 ### `//expand [+|-]x/y/z/?/up/down/left/right/front/back [reverse-amount]` -Expands the selection by in the selected absolute or relative axis. If specified, the selection can be expanded in the -opposite direction iver the same axis by [reverse-amount] +Expands the selection by `` in the selected absolute or relative axis. If specified, the selection can be expanded in the +opposite direction over the same axis by `[reverse-amount]`. //expand right 7 5 ### `//contract [+|-]x/y/z/?/up/down/left/right/front/back [reverse-amount]` -Contracts the selection by in the selected absolute or relative axis. If specified, the selection can be contracted in the -opposite direction iver the same axis by [reverse-amount] +Contracts the selection by `` in the selected absolute or relative axis. If specified, the selection can be contracted in the +opposite direction over the same axis by `[reverse-amount]`. //expand right 7 5 ### `//outset [h|v] ` -Expands the selection in all directions by . If specified, the selection can be expanded horizontally in the x and z axes [h] -or vertically in the y axis [v]. +Expands the selection in all directions by ``. If specified, the selection can be expanded horizontally in the x and z axes `[h]` +or vertically in the y axis `[v]`. //outset v 5 ### `//inset [h|v] ` -Contracts the selection in all directions by . If specified, the selection can be contracted horizontally in the x and z axes [h] -or vertically in the y axis [v]. +Contracts the selection in all directions by ``. If specified, the selection can be contracted horizontally in the x and z axes `[h]` +or vertically in the y axis `[v]`. //outset v 5 \ No newline at end of file -- cgit v1.2.3 From e18525d8c983eb78c8f7f2fa2425cede21fc8289 Mon Sep 17 00:00:00 2001 From: Daniel Sosa Date: Sat, 21 Feb 2015 19:07:14 +0000 Subject: Modify outset and inset to accept both hv and vh combinations. Update documentation accordingly. --- ChatCommands.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'ChatCommands.md') diff --git a/ChatCommands.md b/ChatCommands.md index 6dc4c72..b26e894 100644 --- a/ChatCommands.md +++ b/ChatCommands.md @@ -408,14 +408,14 @@ opposite direction over the same axis by `[reverse-amount]`. //expand right 7 5 -### `//outset [h|v] ` +### `//outset [hv] ` Expands the selection in all directions by ``. If specified, the selection can be expanded horizontally in the x and z axes `[h]` or vertically in the y axis `[v]`. //outset v 5 -### `//inset [h|v] ` +### `//inset [hv] ` Contracts the selection in all directions by ``. If specified, the selection can be contracted horizontally in the x and z axes `[h]` or vertically in the y axis `[v]`. -- cgit v1.2.3