Creating Portals
Create and define portal regions
Edit on GitHubCreating Portals
Creating portals is the first step in building your portal network. You can create portals using WorldEdit selections or by manually specifying coordinates.
Commands
Create a Portal
Usage: /portal create <name> [<from>] <to> [<world>]
Creates a new portal with the specified name and region.
With WorldEdit Selection:
# Get WorldEdit wand
//wand
# Select two corners of the portal region
# Left-click first corner, right-click second corner
# Create the portal
/portal create my-portalWith Manual Coordinates:
# Create portal with specific bounds
/portal create spawn-portal 0 64 0 10 74 10 minecraft:overworld
# Create large portal area
/portal create hub-portal -5 60 -5 5 70 5 farmworld:overworld
# Create vertical portal
/portal create wall-portal 100 64 100 105 74 100If you have a WorldEdit selection active, you don't need to specify coordinates.
If you don't have a selection, coordinates are required.
Redefine Portal Bounds
Usage: /portal redefine <portal> [<from>] <to> [<world>]
Changes the physical region of an existing portal.
With WorldEdit Selection:
# Select new portal region with WorldEdit
//wand
# Redefine the portal
/portal redefine my-portalWith Manual Coordinates:
# Redefine portal with new bounds
/portal redefine spawn-portal 0 64 0 15 74 15 minecraft:overworld
# Make portal larger
/portal redefine hub-portal -10 60 -10 10 70 10 farmworld:overworld
# Adjust portal position
/portal redefine wall-portal 200 64 200 205 74 200WorldEdit is optional but recommended for easier portal creation.
You can always use manual coordinates if WorldEdit is not available.
Last updated on