-
Notifications
You must be signed in to change notification settings - Fork 4
Commands
All commands should be in this format: /awe .... If no command name is given the help will be displayed (/awe).
Display help for the plugin.
Usage: Help [commandName]
- commandName - The name of the command to display detailed informations
Sample:
/awe help jobs - Display help for jobs command.
Reload plugin configuration entries and update groups.
Permissions used by the command:
- AWE.admin.reload
Usage: Reload [all|config|groups]
- config - reload AsyncWorldEdit configuration, and message strings
- groups - update he permission groups assigned to logged players (required if you changed AWE.Groups.x permission node)
- all - reloads the configuration and updates the permission groups
Sample:
/awe reload config - Reload plugin configuration.
This command displays number of block queued on the player job list, the size of the queue, how fast are the block placed and how long it will take to place all queued blocks. If no parameter is given it displays information for current user.
Permissions used by the command:
- AWE.user.jobs
- AWE.admin.jobs
- AWE.admin.jobs.all
Usage: Jobs [u:|all]
- u:userName - the name of the player.
Sample:
/awe Jobs u:herobrine - Display the number of queued blocks for user herobrine.
/awe Jobs all - Display the number of queued blocks for all users.
Clear the block queue for specified used (or all). If no parameter is used it clears the queue for calling user.
Permissions used by the command:
- AWE.user.purge
- AWE.admin.purge
- AWE.admin.purge.all
Usage: Purge [u:|all]
- u:userName - the name of the player.
Sample:
/awe Purge u:herobrine - Clear the block queue for user herobrine.
/awe Purge all - Clear the block queue for all users
Cancel a specified job for used. If no user name is used it cancels the job for calling user.
Permissions used by the command:
- AWE.user.cancel
- AWE.admin.cancel
Usage: Cancel [u:]
- u:userName - the name of the player.
Sample:
/awe Purge u:herobrine 1 - Cancel job #1 for user herobrine.
Toggle AsyncWorldEdit operations on or off for calling player (specified player)
Permissions used by the command:
- AWE.user.mode.change
- AWE.user.admin.change
Usage: Toggle [u:] [on|off]
- u:userName - the name of the player.
Sample:
/awe Toggle u:herobrine - Change AWE mode for user herobrine
/awe Toggle on - Toggle AWE mode on for the calling player
View or change the block placing speed for calling player (specified player)
Permissions used by the command:
- AWE.user.speed.view
- AWE.user.speed.change
- AWE.admin.speed.change
Usage: Speed [[u:] ]
- u:userName - the name of the player.
- newSpeed - new block placing speed (can't exceed the value from permission group), use <= 0 for group default.
Sample:
/awe Speed u:herobrine - View block placing speed for user herobrine
/awe Speed 10 - Set block placing speed to 10 for calling player
Allows to toggle on/off a messaging system for calling player (specified player)
Permissions used by the command:
- AWE.user.messages.change
- AWE.admin.messages.override
- AWE.admin.messages.change
Usage: Messages [u:] [on|off]
- u:userName - the name of the player.
- systemName - the messaging system (CHAT, BAR, TALKATIVE)
Sample:
/awe Messages u:herobrine BAR off - Turn off the progress bar for user herobrine
Replace blocks in selected area and keep the data
Permissions used by the command:
- worldedit.region.replace
Usage: /replacend []
- from - the from block pattern.
- format - the to block pattern
Aliases: /rend, /repnd
Sample:
_/replacend oak_stairs stone_stairs
AsyncWorldEdit adds two additional schematic commands to WorldEdit.
Displays the schematic information
Permissions used by the command:
- awe.excommands.schematic.info
Usage: /schematic info []
- fileName - the name of the file to load.
- format - the name of the schematic format
Aliases: info, size
Sample:
_/schematic info Spawn.schematic
Place schematic directly on the map without loading it to the clipboard
Permissions used by the command:
- awe.excommands.schematic.place
Usage: /schematic place [] [-a] [-f]
- fileName - the name of the file to load.
- format - the name of the schematic format
- -a - do not place the air blocks
- -f - use player facing for orientation
Sample:
_/schematic place Spawn.schematic -a
The direct chunk manipulation commands should be in this format: /chunk .... If no command name is given the list of available commands will be displayed (/chunk).
Warning: //chunk and /chunk is a different command.
This command is used to force light recalculation for selected chunks
Permissions used by the command:
- awe.excommands.chunk.relight
Usage: /chunk relight
Sample:
_/chunk relight
Removes all entities and blocks from the selected chunks
Permissions used by the command:
- awe.excommands.chunk.clear
Usage: /chunk clear
Sample:
_/chunk clear
Set the selected area to blocks
Permissions used by the command:
- awe.excommands.chunk.set
Usage: /chunk set [-f]
- pattern - the WorldEdit block pattern
- -f - expand the selection to full chunks
Sample:
_/chunk set stone,glowstone -f
Set selected chunks that match the provided mask
Permissions used by the command:
- awe.excommands.chunk.replace
Usage: /chunk replace [from] [-w]
- from - the Mask definition to use for matching blocks
- pattern - the WorldEdit block pattern
- -w - expand the selected region to entire world
Sample:
_/chunk replace dirt stone,glowstone
Copies the chunk that the player is currently in to selected chunks
Permissions used by the command:
- awe.excommands.chunk.fill
Usage: /chunk fill
Copies the chunk selected chunks to the chunk that the player is currently in
Permissions used by the command:
- awe.excommands.chunk.clone
Usage: /chunk clone
Copies the selected region to WorldEdit clipboard using direct chunk api
Permissions used by the command:
- awe.excommands.chunk.copy
Usage: /chunk copy
Copies the WorldEdit clipboard to the world using direct chunk api
Permissions used by the command:
- awe.excommands.chunk.paste
Usage: /chunk paste [-a] [-l]
-a - Ignore the air blocks
-l - Force block lighting recalculation