-
Notifications
You must be signed in to change notification settings - Fork 1
EN 1 Quick Start
中文版本 | English version
This page is intended for first-time installation checks of TeleportCommandsFabric. You can complete the minimum startup and validation first, then confirm common commands, and finally perform an initial tuning pass for your server.
If you already know this kind of server mod, you can jump directly to the command and config examples below. If you are not sure what each module does yet, continue with 2 Features Overview.
Place the mod into the server mods/ directory, then start the server once. The first startup is mainly for generating default config and storage files. After startup, verify that at least this file exists:
config/teleport_commands.json
If the server enters normal running state and the config file is generated, the mod has loaded correctly and you can continue to basic verification.
As admin, run:
/teleportcommands help
/teleportcommands reload
/teleportcommands config teleporting delay 0
/teleportcommands config teleporting cooldown 0This confirms two things: admin commands are registered correctly, and global teleport delay/cooldown can be adjusted. Setting both to 0 makes module validation easier.
Then test with a normal player account:
/sethome base
/home base
/worldspawn
/rtpIf all commands return normally and teleport behavior is correct, the core functionality is ready. If a command is unavailable, check whether that module is disabled, then check config and admin command output.
Before production use, it helps to keep these points in mind:
-
delayandcooldownaffect many teleport commands. - Modules such as
home,warp,tpa,worldspawn, andrtpcan be enabled/disabled independently. - Most common values can be changed online via
/teleportcommands config ..., without editing JSON every time.
If you just want to enable functionality quickly for local/small servers, getting commands working first is usually more important than fine-tuning every value from day one.
The following can be used as a practical baseline. It keeps common teleport functions enabled, uses moderate delay/cooldown, and preserves Xaero sync:
{
"version": 1,
"teleporting": {
"delay": 3,
"cooldown": 5
},
"back": {
"enabled": true,
"deleteAfterTeleport": false
},
"home": {
"enabled": true,
"playerMaximum": 5,
"deleteInvalid": true
},
"tpa": {
"enabled": true,
"requestExpireTime": 120
},
"warp": {
"enabled": true,
"maximum": 0,
"deleteInvalid": true
},
"worldSpawn": {
"enabled": true,
"world_id": "minecraft:overworld"
},
"rtp": {
"enabled": true,
"radius": 500
},
"xaero": {
"enabled": true,
"syncIntervalSeconds": 60,
"persistWaypointSets": true,
"warpSetName": "TeleportCommands Warps",
"homeSetName": "TeleportCommands Homes"
}
}This is not the only valid setup, but it is a solid starting point. If your server prioritizes convenience, lower delay/cooldown; if you want stricter pacing, increase them.
- 2 Features Overview to understand module relationships.
- 3 Commands and Configuration to confirm what players/admins will use.
- 4 Configuration File to tune values for your server.