Skip to content

EN 3 Commands

EasterGhost edited this page Apr 4, 2026 · 13 revisions

3 Commands and Configuration

中文版本 | English version

This page is mainly for quick command lookup. Players mostly use teleport and personal-management commands. Administrators can additionally use /tpc for module and config control. /teleportcommands remains as a compatibility alias.

Player Teleport Commands

/back
/back <disableSafetyCheck>
/back death
/back death <disableSafetyCheck>
/back tp
/back tp <disableSafetyCheck>
/home
/home <name>
/warp <name>
/worldspawn
/worldspawn <disableSafetyCheck>
/rtp
/wild

/back defaults to the latest death location and can also be written explicitly as /back death. /back tp returns to the location recorded before the most recent TeleportCommands-driven teleport. With true, safety checks are skipped; this is usually only needed when no safe nearby landing point is found.

/home teleports to the player’s home. Without a name, it tries the default home first. With a name, it goes to that specific home.

/warp teleports to a global warp point, assuming admins have created that warp.

/worldspawn teleports to the configured world spawn target. Similar to /back, it supports a parameter to skip safety checks.

/rtp and /wild are two entry points for the same feature: search for a safe random location within allowed range.

Examples:

/back               # return to death location
/home base          # teleport to home "base"
/warp market        # teleport to public warp "market"
/worldspawn true    # force teleport to worldspawn, skip safety check
/rtp                # random teleport once

Player Management Commands

/sethome <name>
/delhome <name>
/renamehome <name> <newName>
/updatehome <name>
/defaulthome <name>
/homes
/homes <page>
/homes <dimension>
/homes <page> <dimension>
/warps
/warps <page>
/warps <dimension>
/warps <page> <dimension>

These commands are mainly for personal home management and listing available server warps.

/sethome creates a new home at current location.
/delhome, /renamehome, and /updatehome delete, rename, or move an existing home to the current position.
/defaulthome sets which home /home should use by default when no argument is provided.
/homes lists current player homes and supports both page selection and dimension filtering.
/warps lists currently available global warps and also supports page selection and dimension filtering. For the dimension argument, you can use a raw world id such as minecraft:overworld, or the short aliases overworld, nether, and end.

Examples:

/sethome base
/sethome mine
/updatehome base
/defaulthome base
/renamehome mine cave
/homes 2
/homes nether
/warps 2 minecraft:overworld

TPA Commands

/tpa <player>
/tpahere <player>
/tpaaccept <player>
/tpaaccept <player> <requestId>
/tpadeny <player>
/tpadeny <player> <requestId>

These commands handle request/response teleport flow between players.

/tpa <player> means you want to teleport to them.
/tpahere <player> means you request them to teleport to you.
/tpaaccept and /tpadeny always target a player first, and can optionally include a requestId to disambiguate multiple pending requests from the same player.

Examples:

/tpa Steve
/tpahere Alex
/tpaaccept Steve
/tpadeny Alex

Administrator Commands

/tpc help
/tpc reload
/tpc enable <module>
/tpc disable <module>

This group is for help, reload, and module toggling. These operate at server scope, not per-player data.

Runtime Configuration Commands

/tpc config teleporting delay <seconds>
/tpc config teleporting cooldown <seconds>
/tpc config back deleteAfterTeleport <true|false>
/tpc config home max <count>
/tpc config home deleteInvalid <true|false>
/tpc config tpa expireTime <seconds>
/tpc config warp max <count>
/tpc config warp deleteInvalid <true|false>
/tpc config worldspawn world <worldId>
/tpc config rtp radius <blocks>
/tpc config xaero syncIntervalSeconds <seconds>

These commands update runtime values and save directly to config file. For most daily operations, they are more convenient than manual JSON edits.

Examples:

/tpc config teleporting delay 3
/tpc config teleporting cooldown 10
/tpc config home max 5
/tpc config rtp radius 100
/tpc config xaero syncIntervalSeconds 10

Warp Management Commands

/setwarp <name>
/delwarp <name>
/renamewarp <name> <newName>
/updatewarp <name>

These are admin-facing content management commands for global warp entries. They are not under the /tpc sub-tree.

Examples:

/setwarp market
/updatewarp market
/renamewarp market shop
/delwarp shop

Xaero Map Visibility Commands

/maphome <name> <true|false>
/mapwarp <name> <true|false>
/gwarpmap
/gwarpmap <name> <true|false>

/maphome controls whether a synced home remains visible on the current player's Xaero map.
/mapwarp does the same for a synced warp on the current player's map.
/gwarpmap lists and changes global map visibility for warps, which controls whether a warp should continue to sync as a public waypoint.

Examples:

/maphome base false
/mapwarp market false
/gwarpmap
/gwarpmap market true

Notes

If a command exists but is unavailable at runtime, check whether its module is disabled.
If command appears to execute but teleport does not happen immediately, check global delay and cooldown.
For deeper behavior (default home logic, death record lifetime, random teleport failure causes), continue to 5 Module Details.

TeleportCommandsFabric

选择语言入口:

Clone this wiki locally