Map Marker Teleport lets players move to any point on the map by dropping a marker. Open the map, place a marker on the destination, and you are teleported there instantly.
Permissions
mapmarkerteleport.use-- Allows teleporting by placing a map marker and using the toggle command
Commands
/mmt <on|off>-- Enables or disables map marker teleportationon(also acceptsenable) -- Turns teleportation onoff(also acceptsdisable) -- Turns teleportation off
Configuration
JSON:
{
"Toggle Command": "mmt"
}
Toggle Command-- Chat command used to turn map marker teleportation on or off
Localization
JSON:
{
"Command.NoPermission": "You don't have permission to use this command.",
"Command.Usage": "Usage: /{0} <on|off>",
"Teleportation.Enabled": "Map marker teleportation is now <color=#ADFF2F>enabled</color>.",
"Teleportation.Disabled": "Map marker teleportation is now <color=#FF6347>disabled</color>.",
"Teleportation.BlockedWhileMounted": "You can't teleport while mounted."
}
Developer Hooks
OnMapMarkerTeleport
Called before a player is teleported. Return a non-null value to cancel the teleport.
C#:
object OnMapMarkerTeleport(BasePlayer player, Vector3 destination)
player-- The player about to be teleporteddestination-- The world position the player is teleporting to