Back to mods
Random Teleport /rtp project artwork

CurseForge · Hytale mod

Random Teleport /rtp

The Random Teleport (/rtp) plugin for Hytale is a utility designed to enhance world exploration by instantly transporting players to uncharted locations across the map.

Choose a version Pick your version below, then grab the matching file.

Quick answer

Which Random Teleport /rtp release should I use?

Updated 6 months ago
Latest stable file RandomTeleport-1.2.0.jar
Game version Not listed
Mod system Built-in Hytale mod system

Random Teleport /rtp RandomTeleport-1.2.0.jar targets Hytale. Do not install it as a separate client mod. Enable it on the world host—the local server in singleplayer or the dedicated server in multiplayer. No required dependencies listed for this file.

Where it goes

Where should Random Teleport /rtp be installed in Hytale?

Do not install it as a separate client mod. Enable it on the world host—the local server in singleplayer or the dedicated server in multiplayer.

Separate client mod Not supported
World host / dedicated server Required
Mod system for this release Built-in Hytale mod system
Required install it here Optional supported, not mandatory Not supported do not install here Source doesn’t say do not assume

Put Hytale mods on the world host or dedicated server. Singleplayer runs a local server too; Hytale does not use separate client mods.

What else does Random Teleport /rtp RandomTeleport-1.2.0.jar need?

RandomTeleport-1.2.0.jar. Change the file and its required mods may change too.

No required dependencies listed for this file

This file does not list any required mods. Do not add a library just because a different file uses it.

This file does not list any required or optional project dependencies. Check the creator notes before changing an existing world.

Before you install it

Add Random Teleport /rtp without breaking your instance.

Built for Random Teleport /rtp RandomTeleport-1.2.0.jar. Pick another file and the loader, install side or required mods may change.

  1. 01

    Stick to this file

    Use RandomTeleport-1.2.0.jar. It targets Hytale; another release may target a different game build or dependency set.

  2. 02

    Bring the mods it needs

    This file does not list any required mods. Do not add a library just because a different file uses it.

  3. 03

    Enable it on the world host

    Do not install it as a separate client mod. Enable it on the world host—the local server in singleplayer or the dedicated server in multiplayer.

  4. 04

    Pick the file you checked

    Use the “Get this file” button beside RandomTeleport-1.2.0.jar. It opens that exact file at the source.

About this project

What does Random Teleport /rtp add?

image

Random Teleport

A simple random teleportation(rtp) plugin for Hytale servers.

Features

  • /rtp - Teleport to a random location away from spawn
  • Warmup time asks user not to move to teleport
  • Translation support in config
  • 1 hour cooldown default to prevent spam (configurable)
  • Aliases: /randomtp, /randomteleport you can also customize it in config.
  • Permission support.
  • Teleporting other players as console or admin via: /rtp --player=Nick

How to Install

  1. Download the JAR file
  2. Place it in your server /mods folder
  3. Restart the server
  4. Configure it in mods/_RandomTeleport/config.json or leave it as default
  5. Use /rtp command in game.

Configuration:

{  "pluginName": "RandomTeleport",  "version": "1.2.0",  "debugMode": false,  "command": {    "name": "rtp",    "aliases": [      "randomtp",      "randomteleport"    ],    "description": "Randomly teleports you away from spawn"  },  "permissions": {    "use": "randomteleport.use",    "bypassCooldown": "randomteleport.bypass.cooldown",    "bypassWarmup": "randomteleport.bypass.warmup",    "teleportOther": "randomteleport.admin.teleportother"  },  "tiers": {    "diamond": {      "permission": "randomteleport.tier.diamond",      "cooldownSeconds": 300,      "warmupSeconds": 1,      "minDistance": 8000,      "maxDistance": 15000,      "minHeight": 120,      "maxHeight": 260    },    "gold": {      "permission": "randomteleport.tier.gold",      "cooldownSeconds": 900,      "warmupSeconds": 2,      "minDistance": 6000,      "maxDistance": 12000,      "minHeight": 120,      "maxHeight": 260    },    "silver": {      "permission": "randomteleport.tier.silver",      "cooldownSeconds": 1800,      "warmupSeconds": 3,      "minDistance": 4000,      "maxDistance": 9000,      "minHeight": 120,      "maxHeight": 260    },    "bronze": {      "permission": "randomteleport.tier.bronze",      "cooldownSeconds": 2700,      "warmupSeconds": 5,      "minDistance": 3000,      "maxDistance": 6000,      "minHeight": 120,      "maxHeight": 260    }  },  "defaults": {    "cooldownSeconds": 3600,    "warmupSeconds": 5,    "minDistance": 5000,    "maxDistance": 9000,    "movementThreshold": 0.5,    "minHeight": 120,    "maxHeight": 260,    "maxAttempts": 10  },  "messages": {    "cooldown": "\u00265[RTP] \u0026bYou must wait \u0026e{time} \u0026bbefore using /rtp again!",    "noPermission": "\u00265[RTP] \u0026cYou don\u0027t have permission to use /rtp!",    "noWorld": "\u00265[RTP] \u0026cYou must be in a world to use this command!",    "warmupStart": "\u00265[RTP] \u0026bTeleporting in \u0026e{seconds} \u0026bseconds... Don\u0027t move!",    "movedCancelled": "\u00265[RTP] \u0026cTeleportation cancelled! You moved too much.",    "noSafeSpot": "\u00265[RTP] \u0026cCould not find a safe landing spot. Try again!",    "error": "\u00265[RTP] \u0026cError scanning for safe location.",    "teleported": "\u00265[RTP] \u0026bTeleported to \u0026fX: {x}, Y: {y}, Z: {z} \u0026f({distance} blocks from spawn)",    "searching": "\u00265[RTP] \u0026fSearching for safe location... (attempt {attempt}/{max})",    "teleportedOther": "\u00265[RTP] \u0026bTeleported \u0026e{player} \u0026bto \u0026fX: {x}, Y: {y}, Z: {z} \u0026f({distance} blocks from spawn)",    "noPermissionOther": "\u00265[RTP] \u0026cYou don\u0027t have permission to teleport other players!",    "targetNotFound": "\u00265[RTP] \u0026cTarget player is not in a world!"  }}

Permissions: ( You can configure tier cooldown and warmup in config. )

Permission Default Description
<br>randomteleport.use<br> Access to rtp
<br>randomteleport.bypass.cooldown<br> Skip cooldown entirely
<br>randomteleport.bypass.warmup<br> Instant teleport (no warmup)
<br>randomteleport.tier.diamond<br> 5 min cooldown, 1s warmup
<br>randomteleport.tier.gold<br> 15 min cooldown, 2s warmup
<br>randomteleport.tier.silver<br> 30 min cooldown, 3s warmup
<br>randomteleport.tier.bronze<br> 45 min cooldown, 5s warmup

Source Code: GitHub

If you find this useful, give it a ⭐ on GitHub and follow me for more plugins!


Project description from CurseForge.

Recent files

Random Teleport /rtp releases and Hytale builds

7 of 7 releases match

Looking for an older file? The official CurseForge project page is in Resources.