Creating & Deleting Warps
Creating a warp
Section titled βCreating a warpβ/setwarp <name> [category]Creates a warp at your current location. Requires warpgui.setwarp. The optional [category] must be an existing category id (or none).
A name is validated against several rules before the warp is created:
| Rule | Default | Config |
|---|---|---|
| Minimum length | 2 | Settings.SetWarp.MinLength |
| Maximum length | 16 | Settings.SetWarp.MaxLength |
| Allowed characters | letters, digits, _ and spaces |
fixed |
| Blacklisted names | reload, search, admin, set, β¦ |
Settings.SetWarp.Blacklist |
If a warp with that name already exists, you need warpgui.setwarp.overwrite to replace it β otherwise you get βThis warp already exists.β
Console
Section titled βConsoleβFrom console, pass an explicit location instead of a category:
/setwarp <name> <World,X,Y,Z,Yaw,Pitch>Warp limits
Section titled βWarp limitsβThis is the important part: warp limits are permission-based, not a single config number.
- A playerβs limit is the highest
warpgui.setwarp.max.<n>permission they have. - With no
warpgui.setwarp.max.*permission, the limit is 0 β they canβt create any warp. warpgui.setwarp.unlimitedbypasses the limit entirely.
# let default players keep up to 5 warps/lp group default permission set warpgui.setwarp.max.5 true
# VIPs get 15/lp group vip permission set warpgui.setwarp.max.15 true
# staff: no cap/lp group staff permission set warpgui.setwarp.unlimited trueHitting the cap shows βYou cannot create more than <n> warps.β
Deleting a warp
Section titled βDeleting a warpβ/delwarp <name>Deletes a warp. Requires warpgui.delwarp. Ownership is checked by UUID (so renaming a player doesnβt lose their warps); warpgui.delwarp.others lets staff delete anyoneβs. Deleting also removes the warp from every playerβs favourites.
You can also delete from the edit menu (double-click Delete Warp).