Skip to content

EN 3 Commands

EasterGhost edited this page Mar 12, 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>
/home
/home <name>
/warp <name>
/worldspawn
/worldspawn <disableSafetyCheck>
/rtp
/wild

/back teleports the player to their latest death location. 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>
/defaulthome <name>
/homes
/warps

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

/sethome creates a new home at current location.
/delhome and /renamehome delete or rename an existing home.
/defaulthome sets which home /home should use by default when no argument is provided.
/homes lists current player homes.
/warps lists currently available global warps.

Examples:

/sethome base
/sethome mine
/defaulthome base
/renamehome mine cave

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 can target by player name or request ID.

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>

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

Examples:

/setwarp market
/renamewarp market shop
/delwarp shop

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