Mirror von
https://github.com/IntellectualSites/FastAsyncWorldEdit.git
synchronisiert 2024-11-05 11:00:05 +01:00
Added help text for most commands that take flags.
//generate, //regen, //deform, //[h]cyl, //[h]sphere, //chunk, //outset, //inset, //stack, //move, //smooth, //paste, //flip, /search //distr /butcher, //brush sphere/cyl/clipboard/smooth Only //replace and /replacenear are still missing.
Dieser Commit ist enthalten in:
Ursprung
6764704c22
Commit
4c9e0a629f
@ -54,6 +54,9 @@ public class BrushCommands {
|
|||||||
usage = "<block> [radius]",
|
usage = "<block> [radius]",
|
||||||
flags = "h",
|
flags = "h",
|
||||||
desc = "Choose the sphere brush",
|
desc = "Choose the sphere brush",
|
||||||
|
help =
|
||||||
|
"Chooses the sphere brush.\n" +
|
||||||
|
"The -h flag creates hollow spheres instead.",
|
||||||
min = 1,
|
min = 1,
|
||||||
max = 2
|
max = 2
|
||||||
)
|
)
|
||||||
@ -91,6 +94,9 @@ public class BrushCommands {
|
|||||||
usage = "<block> [radius] [height]",
|
usage = "<block> [radius] [height]",
|
||||||
flags = "h",
|
flags = "h",
|
||||||
desc = "Choose the cylinder brush",
|
desc = "Choose the cylinder brush",
|
||||||
|
help =
|
||||||
|
"Chooses the cylinder brush.\n" +
|
||||||
|
"The -h flag creates hollow cylinders instead.",
|
||||||
min = 1,
|
min = 1,
|
||||||
max = 3
|
max = 3
|
||||||
)
|
)
|
||||||
@ -135,6 +141,9 @@ public class BrushCommands {
|
|||||||
usage = "",
|
usage = "",
|
||||||
flags = "a",
|
flags = "a",
|
||||||
desc = "Choose the clipboard brush",
|
desc = "Choose the clipboard brush",
|
||||||
|
help =
|
||||||
|
"Chooses the clipboard brush.\n" +
|
||||||
|
"The -a flag makes it not paste air.",
|
||||||
min = 0,
|
min = 0,
|
||||||
max = 0
|
max = 0
|
||||||
)
|
)
|
||||||
@ -173,6 +182,9 @@ public class BrushCommands {
|
|||||||
usage = "[size] [iterations]",
|
usage = "[size] [iterations]",
|
||||||
flags = "n",
|
flags = "n",
|
||||||
desc = "Choose the terrain softener brush",
|
desc = "Choose the terrain softener brush",
|
||||||
|
help =
|
||||||
|
"Chooses the terrain softener brush.\n" +
|
||||||
|
"The -n flag makes it only consider naturally occuring blocks.",
|
||||||
min = 0,
|
min = 0,
|
||||||
max = 2
|
max = 2
|
||||||
)
|
)
|
||||||
|
@ -103,6 +103,11 @@ public class ClipboardCommands {
|
|||||||
usage = "",
|
usage = "",
|
||||||
flags = "ao",
|
flags = "ao",
|
||||||
desc = "Paste the clipboard's contents",
|
desc = "Paste the clipboard's contents",
|
||||||
|
help =
|
||||||
|
"Pastes the clipboard's contents.\n" +
|
||||||
|
"Flags:\n" +
|
||||||
|
" -a skips air blocks\n" +
|
||||||
|
" -o pastes at the original position",
|
||||||
min = 0,
|
min = 0,
|
||||||
max = 0
|
max = 0
|
||||||
)
|
)
|
||||||
@ -156,6 +161,10 @@ public class ClipboardCommands {
|
|||||||
usage = "[dir]",
|
usage = "[dir]",
|
||||||
flags = "p",
|
flags = "p",
|
||||||
desc = "Flip the contents of the clipboard.",
|
desc = "Flip the contents of the clipboard.",
|
||||||
|
help =
|
||||||
|
"Flips the contents of the clipboard.\n" +
|
||||||
|
"The -p flag flips the selection around the player,\n" +
|
||||||
|
"instead of the selections center.",
|
||||||
min = 0,
|
min = 0,
|
||||||
max = 1
|
max = 1
|
||||||
)
|
)
|
||||||
|
@ -137,6 +137,11 @@ public class GeneralCommands {
|
|||||||
usage = "<query>",
|
usage = "<query>",
|
||||||
flags = "bi",
|
flags = "bi",
|
||||||
desc = "Search for an item",
|
desc = "Search for an item",
|
||||||
|
help =
|
||||||
|
"Searches for an item.\n" +
|
||||||
|
"Flags:\n" +
|
||||||
|
" -b only search for blocks\n" +
|
||||||
|
" -i only search for items",
|
||||||
min = 1,
|
min = 1,
|
||||||
max = 1
|
max = 1
|
||||||
)
|
)
|
||||||
|
@ -39,7 +39,12 @@ public class GenerationCommands {
|
|||||||
@Command(
|
@Command(
|
||||||
aliases = { "/hcyl" },
|
aliases = { "/hcyl" },
|
||||||
usage = "<block> <radius>[,<radius>] [height]",
|
usage = "<block> <radius>[,<radius>] [height]",
|
||||||
desc = "Generate a hollow cylinder",
|
desc = "Generates a hollow cylinder.",
|
||||||
|
help =
|
||||||
|
"Generates a hollow cylinder.\n" +
|
||||||
|
"By specifying 2 radii, separated by a comma,\n" +
|
||||||
|
"you can generate elliptical cylinders.\n" +
|
||||||
|
"The 1st radius is north/south, the 2nd radius is east/west.",
|
||||||
min = 2,
|
min = 2,
|
||||||
max = 3
|
max = 3
|
||||||
)
|
)
|
||||||
@ -76,7 +81,12 @@ public class GenerationCommands {
|
|||||||
@Command(
|
@Command(
|
||||||
aliases = { "/cyl" },
|
aliases = { "/cyl" },
|
||||||
usage = "<block> <radius>[,<radius>] [height]",
|
usage = "<block> <radius>[,<radius>] [height]",
|
||||||
desc = "Generate a cylinder",
|
desc = "Generates a cylinder.",
|
||||||
|
help =
|
||||||
|
"Generates a cylinder.\n" +
|
||||||
|
"By specifying 2 radii, separated by a comma,\n" +
|
||||||
|
"you can generate elliptical cylinders.\n" +
|
||||||
|
"The 1st radius is north/south, the 2nd radius is east/west.",
|
||||||
min = 2,
|
min = 2,
|
||||||
max = 3
|
max = 3
|
||||||
)
|
)
|
||||||
@ -113,7 +123,12 @@ public class GenerationCommands {
|
|||||||
@Command(
|
@Command(
|
||||||
aliases = { "/hsphere" },
|
aliases = { "/hsphere" },
|
||||||
usage = "<block> <radius>[,<radius>,<radius>] [raised?]",
|
usage = "<block> <radius>[,<radius>,<radius>] [raised?]",
|
||||||
desc = "Generate a hollow sphere.",
|
desc = "Generates a hollow sphere.",
|
||||||
|
help =
|
||||||
|
"Generates a hollow sphere.\n" +
|
||||||
|
"By specifying 3 radii, separated by commas,\n" +
|
||||||
|
"you can generate an ellipsoid. The order of the ellipsoid radii\n" +
|
||||||
|
"is north/south, up/down, east/west.",
|
||||||
min = 2,
|
min = 2,
|
||||||
max = 3
|
max = 3
|
||||||
)
|
)
|
||||||
@ -161,7 +176,12 @@ public class GenerationCommands {
|
|||||||
@Command(
|
@Command(
|
||||||
aliases = { "/sphere" },
|
aliases = { "/sphere" },
|
||||||
usage = "<block> <radius>[,<radius>,<radius>] [raised?]",
|
usage = "<block> <radius>[,<radius>,<radius>] [raised?]",
|
||||||
desc = "Generate a filled sphere.",
|
desc = "Generates a filled sphere.",
|
||||||
|
help =
|
||||||
|
"Generates a filled sphere.\n" +
|
||||||
|
"By specifying 3 radii, separated by commas,\n" +
|
||||||
|
"you can generate an ellipsoid. The order of the ellipsoid radii\n" +
|
||||||
|
"is north/south, up/down, east/west.",
|
||||||
min = 2,
|
min = 2,
|
||||||
max = 3
|
max = 3
|
||||||
)
|
)
|
||||||
@ -303,7 +323,17 @@ public class GenerationCommands {
|
|||||||
@Command(
|
@Command(
|
||||||
aliases = { "/generate", "/gen", "/g" },
|
aliases = { "/generate", "/gen", "/g" },
|
||||||
usage = "<block> <expression>",
|
usage = "<block> <expression>",
|
||||||
desc = "Generates a shape according to a formula. -h for hollow, -r for raw coordinates, -o for unscaled, but offset from placement",
|
desc = "Generates a shape according to a formula.",
|
||||||
|
help =
|
||||||
|
"Generates a shape according to a formula that is expected to\n" +
|
||||||
|
"return positive numbers (true) if the point is inside the shape\n" +
|
||||||
|
"Optionally set type/data to the desired block.\n" +
|
||||||
|
"Flags:\n" +
|
||||||
|
" -h to generate a hollow shape\n" +
|
||||||
|
" -r to use raw minecraft coordinates\n" +
|
||||||
|
" -o is like -r, except offset from placement.\n" +
|
||||||
|
"If neither -r nor -o is given, the selection is mapped to -1..1\n" +
|
||||||
|
"See also tinyurl.com/wesyntax.",
|
||||||
flags = "hro",
|
flags = "hro",
|
||||||
min = 1,
|
min = 1,
|
||||||
max = -1
|
max = -1
|
||||||
|
@ -201,6 +201,9 @@ public class RegionCommands {
|
|||||||
usage = "[iterations]",
|
usage = "[iterations]",
|
||||||
flags = "n",
|
flags = "n",
|
||||||
desc = "Smooth the elevation in the selection",
|
desc = "Smooth the elevation in the selection",
|
||||||
|
help =
|
||||||
|
"Smoothes the elevation in the selection.\n" +
|
||||||
|
"The -n flag makes it only consider naturally occuring blocks.",
|
||||||
min = 0,
|
min = 0,
|
||||||
max = 1
|
max = 1
|
||||||
)
|
)
|
||||||
@ -227,6 +230,10 @@ public class RegionCommands {
|
|||||||
usage = "[count] [direction] [leave-id]",
|
usage = "[count] [direction] [leave-id]",
|
||||||
flags = "s",
|
flags = "s",
|
||||||
desc = "Move the contents of the selection",
|
desc = "Move the contents of the selection",
|
||||||
|
help =
|
||||||
|
"Move the contents of the selection.\n" +
|
||||||
|
"The -s flag shifts the selection to the target location.\n" +
|
||||||
|
"Optionally fills the old location with <leave-id>.",
|
||||||
min = 0,
|
min = 0,
|
||||||
max = 3
|
max = 3
|
||||||
)
|
)
|
||||||
@ -272,6 +279,11 @@ public class RegionCommands {
|
|||||||
usage = "[count] [direction]",
|
usage = "[count] [direction]",
|
||||||
flags = "sa",
|
flags = "sa",
|
||||||
desc = "Repeat the contents of the selection",
|
desc = "Repeat the contents of the selection",
|
||||||
|
help =
|
||||||
|
"Repeats the contents of the selection.\n" +
|
||||||
|
"Flags:\n" +
|
||||||
|
" -s shifts the selection to the last stacked copy\n" +
|
||||||
|
" -a skips air blocks",
|
||||||
min = 0,
|
min = 0,
|
||||||
max = 2
|
max = 2
|
||||||
)
|
)
|
||||||
@ -311,6 +323,10 @@ public class RegionCommands {
|
|||||||
aliases = { "/regen" },
|
aliases = { "/regen" },
|
||||||
usage = "",
|
usage = "",
|
||||||
desc = "Regenerates the contents of the selection",
|
desc = "Regenerates the contents of the selection",
|
||||||
|
help =
|
||||||
|
"Regenerates the contents of the current selection.\n" +
|
||||||
|
"This command might affect things outside the selection,\n" +
|
||||||
|
"if they are within the same chunk.",
|
||||||
min = 0,
|
min = 0,
|
||||||
max = 0
|
max = 0
|
||||||
)
|
)
|
||||||
@ -332,6 +348,11 @@ public class RegionCommands {
|
|||||||
aliases = { "/deform" },
|
aliases = { "/deform" },
|
||||||
usage = "<expression>",
|
usage = "<expression>",
|
||||||
desc = "Deforms a selected region with an expression",
|
desc = "Deforms a selected region with an expression",
|
||||||
|
help =
|
||||||
|
"Deforms a selected region with an expression\n" +
|
||||||
|
"The expression is executed for each block and is expected\n" +
|
||||||
|
"to modify the variables x, y and z to point to a new block\n" +
|
||||||
|
"to fetch. See also tinyurl.com/wesyntax.",
|
||||||
flags = "ro",
|
flags = "ro",
|
||||||
min = 1,
|
min = 1,
|
||||||
max = -1
|
max = -1
|
||||||
|
@ -171,6 +171,10 @@ public class SelectionCommands {
|
|||||||
usage = "",
|
usage = "",
|
||||||
flags = "s",
|
flags = "s",
|
||||||
desc = "Set the selection to your current chunk.",
|
desc = "Set the selection to your current chunk.",
|
||||||
|
help =
|
||||||
|
"Set the selection to the chunk you are currently in.\n" +
|
||||||
|
"With the -s flag, your current selection is expanded\n" +
|
||||||
|
"to encompass all chunks that are part of it.",
|
||||||
min = 0,
|
min = 0,
|
||||||
max = 0
|
max = 0
|
||||||
)
|
)
|
||||||
@ -417,6 +421,11 @@ public class SelectionCommands {
|
|||||||
aliases = { "/outset" },
|
aliases = { "/outset" },
|
||||||
usage = "<amount>",
|
usage = "<amount>",
|
||||||
desc = "Outset the selection area",
|
desc = "Outset the selection area",
|
||||||
|
help =
|
||||||
|
"Expands the selection by the given amount in all directions.\n" +
|
||||||
|
"Flags:\n" +
|
||||||
|
" -h only expand horizontally\n" +
|
||||||
|
" -v only expand vertically\n",
|
||||||
flags = "hv",
|
flags = "hv",
|
||||||
min = 1,
|
min = 1,
|
||||||
max = 1
|
max = 1
|
||||||
@ -456,6 +465,11 @@ public class SelectionCommands {
|
|||||||
aliases = { "/inset" },
|
aliases = { "/inset" },
|
||||||
usage = "<amount>",
|
usage = "<amount>",
|
||||||
desc = "Inset the selection area",
|
desc = "Inset the selection area",
|
||||||
|
help =
|
||||||
|
"Contracts the selection by the given amount in all directions.\n" +
|
||||||
|
"Flags:\n" +
|
||||||
|
" -h only contract horizontally\n" +
|
||||||
|
" -v only contract vertically\n",
|
||||||
flags = "hv",
|
flags = "hv",
|
||||||
min = 1,
|
min = 1,
|
||||||
max = 1
|
max = 1
|
||||||
@ -537,6 +551,9 @@ public class SelectionCommands {
|
|||||||
aliases = { "/distr" },
|
aliases = { "/distr" },
|
||||||
usage = "",
|
usage = "",
|
||||||
desc = "Get the distribution of blocks in the selection",
|
desc = "Get the distribution of blocks in the selection",
|
||||||
|
help =
|
||||||
|
"Gets the distribution of blocks in the selection.\n" +
|
||||||
|
"The -c flag makes it print to the console as well.",
|
||||||
flags = "c",
|
flags = "c",
|
||||||
min = 0,
|
min = 0,
|
||||||
max = 0
|
max = 0
|
||||||
|
@ -346,6 +346,9 @@ public class UtilityCommands {
|
|||||||
usage = "[radius]",
|
usage = "[radius]",
|
||||||
flags = "p",
|
flags = "p",
|
||||||
desc = "Kill all or nearby mobs",
|
desc = "Kill all or nearby mobs",
|
||||||
|
help =
|
||||||
|
"Kills nearby mobs, or all mobs if you don't specify a radius.\n" +
|
||||||
|
"The -p flag makes /butcher also kill pets.",
|
||||||
min = 0,
|
min = 0,
|
||||||
max = 1
|
max = 1
|
||||||
)
|
)
|
||||||
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren