TpManager

A Minecraft teleport manager

tool

Installation command

!!MCDR plugin install tpm

Author

Synced at

...

Last update

...

Latest version

Total downloads

1659

Back to catalogue

Tp Manager

If it's useful, please give a star :)

Feature

  • Teleport between players
  • In game warp points

TODO

  • Linking with login_proxy?

Dependencies

IDRelease Link
kpihttps://github.com/kmcsr/kpi_mcdr/releases

Commands

Tip

Some other plugins also registered !!tp as root command. To avoid conflict, you also can use !!tpm to replace !!tp

Command formatIntroduction
!!tp helpShow help message, aka !!tp
!!tp pos <x> <y> <z>Teleport to <x>, <y>, <z>
!!tp ask <name>Send an teleport request, aka !!tpa
!!tp askhere <name>Send an teleport request to here, aka !!tph
!!tp acceptAccept the teleport request
!!tp rejectReject the teleport request
!!tp cancelCancel your teleport request
!!tp warp <point>Teleport to the warp point, aka !!warp
!!tp warps listList all warp points
!!tp warps add <point> <x> <y> <z> <dimension>Add or set a warp point
!!tp warps remove <point>Remove a warp point

Config files

tpm/config.json

{
    "minimum_permission_level": { // Command permissions
        "pos": 2,
        "ask": 1,
        "askhere": 1,
        "accept": 1,
        "reject": 0,
        "cancel": 0
    },
    "teleport_cooldown": 60, // in sec, the minimum teleport operation interval
    "teleport_expiration": 10, // in sec, the teleport request expiration
    "teleport_commands": [ // Command list for teleport players
        "say Teleporting {src} to {dst} ...",
        "tp {src} {dst}",
    ],
    "teleport_xyz_command": "tp {name} {x} {y} {z}" // Command for teleport position
}

Introduction source: README.MD