mirror of
https://github.com/boy0001/FastAsyncWorldedit.git
synced 2025-02-15 03:51:31 +01:00
Updated Commands (markdown)
parent
23c5d33fc8
commit
ed6db261e6
115
Commands.md
115
Commands.md
@ -1,63 +1,6 @@
|
|||||||
> These are just the commands FAWE adds (or improves functionality of). For the commands already in WorldEdit, see here:
|
> These are just the commands FAWE adds (or improves functionality of). For the commands already in WorldEdit, see here:
|
||||||
> - http://wiki.sk89q.com/wiki/WorldEdit/Reference
|
> - http://wiki.sk89q.com/wiki/WorldEdit/Reference
|
||||||
|
|
||||||
# Anvil commands
|
|
||||||
Anvil commands are used to manipulate entire worlds, or billions of blocks very quickly. It works by directly modifying the world region files.
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
> ### `!! These commands operate on entire worlds !!`
|
|
||||||
> - The world should not be in use when performing these (unload the world)
|
|
||||||
> - It is recommended to run these from console
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
#### `//anvil countall <world> <blocks>`
|
|
||||||
Perm: `worldedit.anvil.countall`
|
|
||||||
Desc: Count all the blocks in a world
|
|
||||||
#### `//anvil replaceAll <world> [from-blocks] <to-blocks>`
|
|
||||||
Perm: `worldedit.anvil.replaceall`
|
|
||||||
Desc: Replace all blocks in a world
|
|
||||||
#### `//anvil replaceAllPattern <world> [from-blocks] <to-pattern>`
|
|
||||||
Perm: `worldedit.anvil.replaceall`
|
|
||||||
Desc: Replace All blocks in a world that match `[from]` with a specified pattern
|
|
||||||
#### `//anvil deleteallold <world> <age-ticks> [file-age=60000]`
|
|
||||||
Perm: `worldedit.anvil.deleteallold`
|
|
||||||
Desc: Delete all chunks which haven't been occupied for `age-ticks` and have been accessed since `file-age` (ms) after creation
|
|
||||||
#### (PlotSquared) `/plot trimchunks <world> <trim-unowned>`
|
|
||||||
Perm: Console
|
|
||||||
Desc: It will output a duplicate world with all the trimmed chunks removed
|
|
||||||
Example: /plot trimchunks plotworld true
|
|
||||||
Note: You need spare disk space to use this
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
> ### `!! These commands operate within existing worlds !!`
|
|
||||||
> - The server will be frozen while they perform
|
|
||||||
> - Increase spigot's `timeout-time` if you need to do anything large
|
|
||||||
> - These commands can operate at larger scales than normal WorldEdit commands.
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
#### `//anvil replace [from] <to>`
|
|
||||||
Perm: `anvil.replace`
|
|
||||||
Desc: Replace blocks in your selection using Anvil
|
|
||||||
#### `//anvil copy`
|
|
||||||
Perm: `anvil.copy`
|
|
||||||
Desc: Copy a region to your anvil clipboard
|
|
||||||
#### `//anvil paste`
|
|
||||||
Perm: `anvil.paste`
|
|
||||||
Desc: Paste your anvil clipboard
|
|
||||||
#### (PlotSquared) `/plot replaceall <from-blocks> <to-blocks>`
|
|
||||||
Perm: `plots.replaceall`
|
|
||||||
Desc: Replace all blocks in the plot world
|
|
||||||
Note: Requires `enabled-components.worlds` in the PlotSquared `settings.yml`
|
|
||||||
#### (PlotSquared) `/plot createfromimage <url>`
|
|
||||||
Perm: `plots.createfromimage`
|
|
||||||
Desc: Starts world creation from a heightmap image.
|
|
||||||
Example: `/2 cfi <setbiome|setoverlay|setmain|setfloor|setcolumn|addcaves|addore[s]|addschems|done|cancel>`
|
|
||||||
Example: https://www.youtube.com/watch?v=cJZk1GTig7A
|
|
||||||
Note: Requires `enabled-components.worlds` in the PlotSquared `settings.yml`
|
|
||||||
# General commands
|
# General commands
|
||||||
#### `//fast`
|
#### `//fast`
|
||||||
Perm: `worldedit.fast`
|
Perm: `worldedit.fast`
|
||||||
@ -136,3 +79,61 @@ https://github.com/boy0001/FastAsyncWorldedit/wiki/WorldEdit-and-FAWE-patterns
|
|||||||
Transforms are used with brushes and other commands:
|
Transforms are used with brushes and other commands:
|
||||||
- FAWE adds the transform command
|
- FAWE adds the transform command
|
||||||
https://github.com/boy0001/FastAsyncWorldedit/wiki/Transforms
|
https://github.com/boy0001/FastAsyncWorldedit/wiki/Transforms
|
||||||
|
|
||||||
|
# Anvil commands
|
||||||
|
Anvil commands are used to manipulate entire worlds, or billions of blocks very quickly. It works by directly modifying the world region files.
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
> ### `!! These commands operate on entire worlds !!`
|
||||||
|
> - The world should not be in use when performing these (unload the world)
|
||||||
|
> - It is recommended to run these from console
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
#### `//anvil countall <world> <blocks>`
|
||||||
|
Perm: `worldedit.anvil.countall`
|
||||||
|
Desc: Count all the blocks in a world
|
||||||
|
#### `//anvil replaceAll <world> [from-blocks] <to-blocks>`
|
||||||
|
Perm: `worldedit.anvil.replaceall`
|
||||||
|
Desc: Replace all blocks in a world
|
||||||
|
#### `//anvil replaceAllPattern <world> [from-blocks] <to-pattern>`
|
||||||
|
Perm: `worldedit.anvil.replaceall`
|
||||||
|
Desc: Replace All blocks in a world that match `[from]` with a specified pattern
|
||||||
|
#### `//anvil deleteallold <world> <age-ticks> [file-age=60000]`
|
||||||
|
Perm: `worldedit.anvil.deleteallold`
|
||||||
|
Desc: Delete all chunks which haven't been occupied for `age-ticks` and have been accessed since `file-age` (ms) after creation
|
||||||
|
#### (PlotSquared) `/plot trimchunks <world> <trim-unowned>`
|
||||||
|
Perm: Console
|
||||||
|
Desc: It will output a duplicate world with all the trimmed chunks removed
|
||||||
|
Example: /plot trimchunks plotworld true
|
||||||
|
Note: You need spare disk space to use this
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
> ### `!! These commands operate within existing worlds !!`
|
||||||
|
> - The server will be frozen while they perform
|
||||||
|
> - Increase spigot's `timeout-time` if you need to do anything large
|
||||||
|
> - These commands can operate at larger scales than normal WorldEdit commands.
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
#### `//anvil replace [from] <to>`
|
||||||
|
Perm: `anvil.replace`
|
||||||
|
Desc: Replace blocks in your selection using Anvil
|
||||||
|
#### `//anvil copy`
|
||||||
|
Perm: `anvil.copy`
|
||||||
|
Desc: Copy a region to your anvil clipboard
|
||||||
|
#### `//anvil paste`
|
||||||
|
Perm: `anvil.paste`
|
||||||
|
Desc: Paste your anvil clipboard
|
||||||
|
#### (PlotSquared) `/plot replaceall <from-blocks> <to-blocks>`
|
||||||
|
Perm: `plots.replaceall`
|
||||||
|
Desc: Replace all blocks in the plot world
|
||||||
|
Note: Requires `enabled-components.worlds` in the PlotSquared `settings.yml`
|
||||||
|
#### (PlotSquared) `/plot createfromimage <url>`
|
||||||
|
Perm: `plots.createfromimage`
|
||||||
|
Desc: Starts world creation from a heightmap image.
|
||||||
|
Example: `/2 cfi <setbiome|setoverlay|setmain|setfloor|setcolumn|addcaves|addore[s]|addschems|done|cancel>`
|
||||||
|
Example: https://www.youtube.com/watch?v=cJZk1GTig7A
|
||||||
|
Note: Requires `enabled-components.worlds` in the PlotSquared `settings.yml`
|
Loading…
Reference in New Issue
Block a user