UltimateTPA
๐ก Updated this yearPreview

๐ Analysis
- ๐ 0.4% endorsement rate
- ๐ #1173 of 1560 bukkit mods in this game by downloads
๐ About This Mod
# ๐ UltimateTPA **UltimateTPA** is a modern, fully-featured teleport request plugin for Minecraft (Spigot/Paper 1.18+). It allows players to easily send and manage teleport requests with interactive chat buttons, localization, and smart safety features. --- ## โ๏ธ Features - ๐ฌ **Teleport requests** using `/tpa` and `/tpahere` - โ **Accept or deny** with clickable chat buttons - โฑ **Teleport delay** and **move cancellation** - ๐ **Multi-language support** (JSON-based language files) - ๐ **Sound notifications** for requests and responses - ๐ง **Smart cooldowns** and **request expiration** - ๐งโโ๏ธ Handles both `/tpa` (teleport to a player) and `/tpahere` (teleport player to you) - ๐พ Persistent and modular design for future expansion --- ## ๐ Installation 1. Download the latest release of `UltimateTPA.jar` 2. Place it into your serverโs `plugins/` folder 3. Restart or reload your server 4. The plugin automatically generates its configuration and language files --- <details> <summary>Config.yml</summary> ```yaml # ==== UltimateTPA Configuration ==== # ==== Delay ==== teleport-delay: 5 # Time (in seconds) before teleport happens after accept # ==== Expire-Time ==== request-expire-time: 60 # Time (in seconds) before a teleport request expires # ==== Conditions ==== cancel-on-move: true # Whether moving during the delay cancels teleport # ==== Prefix ==== prefix: "&7 " # Chat prefix for all messages # ==== Sounds ==== sound: enabled: true accept: "ENTITY_PLAYER_LEVELUP" deny: "ENTITY_VILLAGER_NO" request: "BLOCK_NOTE_BLOCK_PLING" ``` </details> --- ## ๐น๏ธ Commands | Command | Description | |----------|--------------| | `/tpa <player>` | Send a teleport request to another player | | `/tpahere <player>` | Request another player to teleport to you | | `/tpaccept` | Accept a pending teleport request | | `/tpdeny` | Deny a pending teleport request | --- ## ๐ฌ Interactive Chat Players receive teleport requests with **clickable options**: Clicking a button runs the respective command automatically. This makes teleport management fast and intuitive โ no command typing required. --- ## ๐ Language System UltimateTPA supports **multiple languages** through simple JSON files. Each player automatically receives messages in their own Minecraft locale (e.g., `en_US`, `de_DE`). Example language file structure: /plugins/UltimateTPA/lang/en_US.json <details> <summary>en_US.json</summary> ```json { "tpa_request": "ยงe%player% wants to teleport to you.", "tpahere_request": "&e%player% wants you to teleport to them.", "tpa_accept": "ยงa", "tpa_deny": "ยงc", "tpa_sent": "ยง7Teleport request sent to ยงe%player%", "tpahere_sent": "&7Teleport request (here) sent to &e%player%", "tpa_no_request": "ยงcYou have no pending teleport requests.", "tpa_sender_offline": "ยงcThe player is no longer online.", "tpa_accepted": "ยงaYou accepted the teleport request.", "tpa_accepted_by": "ยงaYour request was accepted by ยงe%player%", "tpa_denied": "ยงcYou denied the teleport request.", "tpa_denied_by": "ยงcYour request was denied by ยงe%player%" } ``` </details> ### ๐ Adding New Language Files You can easily add new language files! You can find the available **language codes** (https://minecraft.fandom.com/wiki/Language) (using the **ISO 639-3** standard). If youโve created new translations, feel free to share them with me on **(https://discord.gg/95ekxaGNB3)** โ this helps the plugin grow and support more languages. *(Optional, but very appreciated!)* ๐ฌ --- ## ๐งฉ Developer Overview **Core Classes:** - `UltimateTPA` โ Main plugin class - `TPACommand`, `TPAHereCommand`, `TPAAcceptCommand`, `TPADenyCommand` โ Command handlers - `TPARequest` โ Represents an active teleport request - `TPAMoveListener` โ Cancels teleportation if the player moves - `LanguageManager` โ Loads and manages translations --- ## ๐งฐ Compatibility - โ Compatible with **Bukkit**, **Spigot**, **Paper**, **Purpur** and **Folia** - ๐งฑ Requires **Minecraft 1.18+** - โ Requires **Java 17+** --- ## ๐งโ๐ป Author **Developed by:** Scholle **Package:** `de.scholle.ultimateTPA` --- ## ๐ License This project is licensed under the **Apache License 2.0**. You may freely use, modify, and distribute this plugin under the terms of that license. For more details, visit: (http://www.apache.org/licenses/LICENSE-2.0)
# ๐ UltimateTPA
UltimateTPA is a modern, fully-featured teleport request plugin for Minecraft (Spigot/Paper 1. 18+). It allows players to easily send and manage teleport requests with interactive chat buttons, localization, and smart safety features.
## โ๏ธ Features
- ๐ฌ Teleport requests using `/tpa` and `/tpahere`
- โ Accept or deny with clickable chat buttons
- โฑ Teleport delay and move cancellation
- ๐ Multi-language support (JSON-based language files)
- ๐ Sound notifications for requests and responses
- ๐ง Smart cooldowns and request expiration
- ๐งโโ๏ธ Handles both `/tpa` (teleport to a player) and `/tpahere` (teleport player to you)
- ๐พ Persistent and modular design for future expansion
## ๐ Installation
1. Download the latest release of `UltimateTPA.jar` 2. Place it into your serverโs `plugins/` folder 3. Restart or reload your server 4. The plugin automatically generates its configuration and language files
Config.yml
```yaml # ==== UltimateTPA Configuration ====
# ==== Delay ==== teleport-delay: 5 # Time (in seconds) before teleport happens after accept
# ==== Expire-Time ==== request-expire-time: 60 # Time (in seconds) before a teleport request expires
# ==== Conditions ==== cancel-on-move: true # Whether moving during the delay cancels teleport
# ==== Prefix ==== prefix: "&7[&aTPA&7] " # Chat prefix for all messages
# ==== Sounds ==== sound: enabled: true accept: "ENTITY_PLAYER_LEVELUP" deny: "ENTITY_VILLAGER_NO" request: "BLOCK_NOTE_BLOCK_PLING" ```
## ๐น๏ธ Commands
| Command | Description |
|----------|--------------|
| `/tpa
## ๐ฌ Interactive Chat
Players receive teleport requests with clickable options:
Clicking a button runs the respective command automatically. This makes teleport management fast and intuitive โ no command typing required.
## ๐ Language System
UltimateTPA supports multiple languages through simple JSON files. Each player automatically receives messages in their own Minecraft locale (e.g., `en_US`, `de_DE`).
Example language file structure:
/plugins/UltimateTPA/lang/en_US.json
en_US.json
```json { "tpa_request": "ยงe%player% wants to teleport to you.", "tpahere_request": "&e%player% wants you to teleport to them.", "tpa_accept": "ยงa", "tpa_deny": "ยงc", "tpa_sent": "ยง7Teleport request sent to ยงe%player%", "tpahere_sent": "&7Teleport request (here) sent to &e%player%", "tpa_no_request": "ยงcYou have no pending teleport requests.", "tpa_sender_offline": "ยงcThe player is no longer online.", "tpa_accepted": "ยงaYou accepted the teleport request.", "tpa_accepted_by": "ยงaYour request was accepted by ยงe%player%", "tpa_denied": "ยงcYou denied the teleport request.", "tpa_denied_by": "ยงcYour request was denied by ยงe%player%" } ```
### ๐ Adding New Language Files
You can easily add new language files! You can find the available language codes (https://minecraft.fandom.com/wiki/Language) (using the ISO 639-3 standard).
If youโve created new translations, feel free to share them with me on *(https://discord.gg/95ekxaGNB3)** โ this helps the plugin grow and support more languages. (Optional, but very appreciated!)* ๐ฌ
## ๐งฉ Developer Overview
Core Classes:
- `UltimateTPA` โ Main plugin class
- `TPACommand`, `TPAHereCommand`, `TPAAcceptCommand`, `TPADenyCommand` โ Command handlers
- `TPARequest` โ Represents an active teleport request
- `TPAMoveListener` โ Cancels teleportation if the player moves
- `LanguageManager` โ Loads and manages translations
## ๐งฐ Compatibility
- โ Compatible with Bukkit, Spigot, Paper, Purpur and Folia
- ๐งฑ Requires Minecraft 1. 18+
- โ Requires Java 17+
## ๐งโ๐ป Author
Developed by: Scholle Package: `de.scholle.ultimateTPA`
## ๐ License
This project is licensed under the Apache License 2. 0. You may freely use, modify, and distribute this plugin under the terms of that license.
For more details, visit: (http://www.apache.org/licenses/LICENSE-2. 0)
๐ Mod Details
- Game
- Minecraft Plugins
- Author
- JikZ109
- Version
- 1.2.0
- Downloads
- 1,633
- Endorsements
- 6
- Category
- bukkit
- Created
- 10/27/2025
- Updated
- 11/29/2025
- Game Versions
- 1.18, 1.18.1, 1.18.2, 1.19, 1.19.1
- Tags
- game-mechanics, transportation, utility
๐ง How to Install Minecraft Plugins Mods
Download from Modrinth. Use Prism Launcher or drop into your mods folder.
๐ Full step-by-step install guide for Minecraft Plugins โ
Visit the official mod page for specific installation instructions for this mod.
๐ฎ Need cheat codes or console commands? Check ur gaming wiki for Minecraft Plugins commands, item IDs, and more.
โ Frequently Asked Questions
Which Minecraft Plugins versions does UltimateTPA support?
The author lists 1.18, 1.18.1, 1.18.2, 1.19, 1.19.1, 1.19.2. Other versions may work but are untested by the author.
What is the latest version of UltimateTPA?
Version 1.2.0, published 2025-11-29 with 1,633 downloads recorded at the source.
Keep browsing โ more Minecraft Plugins mods await