Quick Start¶
Selecting Areas¶
To create a region, you need to tell WorldGuard the physical area. WorldEdit is used for this purpose.
Regions can take the shape of:
Cuboids (i.e. a cube or a box)
2D polygons with heights
If you try to use an unsupported shape such as a cylinder, WorldGuard will inform you of this.
Basic Commands¶
Creating Regions¶
All regions must have a name, and names must be unique. Names are case-insensitive. Create a region with /region define:
/region define town
Rather than using /region, you can also use /rg as a shortcut:
/rg define town
The newly created region automatically prevents building within it. To let specific players build, add members or owners to the region. The main reason why you’d have separate owners or members is because you can set permissions to use commands separately for owners and members.
Either players or permission groups can be a member or owner. To specify a permission group, prefix the name of the group with g:. The relevant add and remove commands are illustrated below:
/rg addmember town wizjany sk89q g:builders
/rg addowner town sk89q
/rg removemember town g:builders
/rg removeowner town sk89q
Full documentation for these commands can be found on the Region Commands page.
Lastly, when you create a region, you can also conveniently specify the owners:
/rg define town wizjany sk89q g:builders
Hint
Your changes to regions will automatically be saved after a small delay. However, region data can be force saved using /rg save. All saves are done in the background and will not pause the server.
Other Commands¶
You can remove regions:
/rg remove town
You can list information about a region:
/rg info town
You can view a list of regions:
/rg list
You can change the shape or size of an existing region:
/rg redefine town
For more commands, see the region commands page.
Properties of Regions¶
Handling Overlap¶
Regions can overlap in WorldGuard, which provides a lot of flexibility but can be a source of complexity.
When there are overlapping regions, a player must have permission to build in all overlapping regions.
If you want a region to override another, use priorities and region inheritance.
If you want a region to override all others in regards to whether players can build, use the
buildregion flag.If a region you made isn’t supposed to protect its area, use the
passthroughregion flag.
Warning
The build flag has some additional properties and we generally recommend not to change it, unless you know what you are doing. See the region flag overview for more information.
Flags¶
Each region can have extra settings applied to it called flags. For example, PvP can be blocked using the “pvp” flag:
/rg flag town pvp deny
Read the Region Flags guide for more information.
Common Scenarios¶
If you’re wondering how to do something (like allow the usage of doors, levers, pressure plates, etc.), check out the Common Scenarios page.