{"id":161603,"date":"2026-06-09T18:33:24","date_gmt":"2026-06-09T15:33:24","guid":{"rendered":"https:\/\/vpesports.com\/minecraft\/mods\/ultimatetpa\/"},"modified":"2026-06-09T18:33:24","modified_gmt":"2026-06-09T15:33:24","slug":"ultimatetpa","status":"publish","type":"mod","link":"https:\/\/vpesports.com\/minecraft\/mods\/ultimatetpa\/","title":{"rendered":"UltimateTPA"},"content":{"rendered":"<p># \ud83d\udd01 UltimateTPA<\/p>\n<p>**UltimateTPA** is a modern, fully-featured teleport request plugin for Minecraft (Spigot\/Paper 1.18+).<br \/>\nIt allows players to easily send and manage teleport requests with interactive chat buttons, localization, and smart safety features.<\/p>\n<p>&#8212;<\/p>\n<p>## \u2699\ufe0f Features<\/p>\n<p>&#8211; \ud83d\udcac **Teleport requests** using `\/tpa` and `\/tpahere`<br \/>\n&#8211; \u2705 **Accept or deny** with clickable chat buttons<br \/>\n&#8211; \u23f1 **Teleport delay** and **move cancellation**<br \/>\n&#8211; \ud83c\udf0d **Multi-language support** (JSON-based language files)<br \/>\n&#8211; \ud83d\udd0a **Sound notifications** for requests and responses<br \/>\n&#8211; \ud83e\udde0 **Smart cooldowns** and **request expiration**<br \/>\n&#8211; \ud83e\uddcd\u200d\u2642\ufe0f Handles both `\/tpa` (teleport to a player) and `\/tpahere` (teleport player to you)<br \/>\n&#8211; \ud83d\udcbe Persistent and modular design for future expansion<\/p>\n<p>&#8212;<\/p>\n<p>## \ud83d\udcc1 Installation<\/p>\n<p>1. Download the latest release of `UltimateTPA.jar`<br \/>\n2. Place it into your server\u2019s `plugins\/` folder<br \/>\n3. Restart or reload your server<br \/>\n4. The plugin automatically generates its configuration and language files<\/p>\n<p>&#8212;<\/p>\n<details>\n<summary>Config.yml<\/summary>\n<p>&#8220;`yaml<br \/>\n# ==== UltimateTPA Configuration ====<\/p>\n<p># ==== Delay ====<br \/>\nteleport-delay: 5 # Time (in seconds) before teleport happens after accept<\/p>\n<p># ==== Expire-Time ====<br \/>\nrequest-expire-time: 60 # Time (in seconds) before a teleport request expires<\/p>\n<p># ==== Conditions ====<br \/>\ncancel-on-move: true # Whether moving during the delay cancels teleport<\/p>\n<p># ==== Prefix ====<br \/>\nprefix: &#8220;&#038;7[&#038;aTPA&#038;7] &#8221; # Chat prefix for all messages<\/p>\n<p># ==== Sounds ====<br \/>\nsound:<br \/>\n  enabled: true<br \/>\n  accept: &#8220;ENTITY_PLAYER_LEVELUP&#8221;<br \/>\n  deny: &#8220;ENTITY_VILLAGER_NO&#8221;<br \/>\n  request: &#8220;BLOCK_NOTE_BLOCK_PLING&#8221;<br \/>\n&#8220;`<\/p>\n<\/details>\n<p>&#8212;<\/p>\n<p>## \ud83d\udd79\ufe0f Commands<\/p>\n<p>| Command | Description |<br \/>\n|&#8212;&#8212;&#8212;-|&#8212;&#8212;&#8212;&#8212;&#8211;|<br \/>\n| `\/tpa <player>` | Send a teleport request to another player |<br \/>\n| `\/tpahere <player>` | Request another player to teleport to you |<br \/>\n| `\/tpaccept` | Accept a pending teleport request |<br \/>\n| `\/tpdeny` | Deny a pending teleport request |<\/p>\n<p>&#8212;<\/p>\n<p>## \ud83d\udcac Interactive Chat<\/p>\n<p>Players receive teleport requests with **clickable options**:<\/p>\n<p>[Accept] [Deny]<\/p>\n<p>Clicking a button runs the respective command automatically.<br \/>\nThis makes teleport management fast and intuitive \u2014 no command typing required.<\/p>\n<p>&#8212;<\/p>\n<p>## \ud83c\udf10 Language System<\/p>\n<p>UltimateTPA supports **multiple languages** through simple JSON files.<br \/>\nEach player automatically receives messages in their own Minecraft locale (e.g., `en_US`, `de_DE`).<\/p>\n<p>Example language file structure:<\/p>\n<p>\/plugins\/UltimateTPA\/lang\/en_US.json<\/p>\n<details>\n<summary>en_US.json<\/summary>\n<p>&#8220;`json<br \/>\n{<br \/>\n  &#8220;tpa_request&#8221;: &#8220;\u00a7e%player% wants to teleport to you.&#8221;,<br \/>\n  &#8220;tpahere_request&#8221;: &#8220;&#038;e%player% wants you to teleport to them.&#8221;,<br \/>\n  &#8220;tpa_accept&#8221;: &#8220;\u00a7a[Accept]&#8221;,<br \/>\n  &#8220;tpa_deny&#8221;: &#8220;\u00a7c[Deny]&#8221;,<br \/>\n  &#8220;tpa_sent&#8221;: &#8220;\u00a77Teleport request sent to \u00a7e%player%&#8221;,<br \/>\n  &#8220;tpahere_sent&#8221;: &#8220;&#038;7Teleport request (here) sent to &#038;e%player%&#8221;,<br \/>\n  &#8220;tpa_no_request&#8221;: &#8220;\u00a7cYou have no pending teleport requests.&#8221;,<br \/>\n  &#8220;tpa_sender_offline&#8221;: &#8220;\u00a7cThe player is no longer online.&#8221;,<br \/>\n  &#8220;tpa_accepted&#8221;: &#8220;\u00a7aYou accepted the teleport request.&#8221;,<br \/>\n  &#8220;tpa_accepted_by&#8221;: &#8220;\u00a7aYour request was accepted by \u00a7e%player%&#8221;,<br \/>\n  &#8220;tpa_denied&#8221;: &#8220;\u00a7cYou denied the teleport request.&#8221;,<br \/>\n  &#8220;tpa_denied_by&#8221;: &#8220;\u00a7cYour request was denied by \u00a7e%player%&#8221;<br \/>\n}<br \/>\n&#8220;`<\/p>\n<\/details>\n<p>### \ud83c\udf10 Adding New Language Files<\/p>\n<p>You can easily add new language files!<br \/>\nYou can find the available **language codes** here on the Minecraft Wiki (using the **ISO 639-3** standard).<\/p>\n<p>If you\u2019ve created new translations, feel free to share them with me on **Discord** \u2013 this helps the plugin grow and support more languages. *(Optional, but very appreciated!)* \ud83d\udcac<\/p>\n<p>&#8212;<\/p>\n<p>## \ud83e\udde9 Developer Overview<\/p>\n<p>**Core Classes:**<\/p>\n<p>&#8211; `UltimateTPA` \u2192 Main plugin class<br \/>\n&#8211; `TPACommand`, `TPAHereCommand`, `TPAAcceptCommand`, `TPADenyCommand` \u2192 Command handlers<br \/>\n&#8211; `TPARequest` \u2192 Represents an active teleport request<br \/>\n&#8211; `TPAMoveListener` \u2192 Cancels teleportation if the player moves<br \/>\n&#8211; `LanguageManager` \u2192 Loads and manages translations  <\/p>\n<p>&#8212;<\/p>\n<p>## \ud83e\uddf0 Compatibility<\/p>\n<p>&#8211; \u2705 Compatible with **Bukkit**, **Spigot**, **Paper**, **Purpur** and **Folia**<br \/>\n&#8211; \ud83e\uddf1 Requires **Minecraft 1.18+**<br \/>\n&#8211; \u2615 Requires **Java 17+**<\/p>\n<p>&#8212;<\/p>\n<p>## \ud83e\uddd1\u200d\ud83d\udcbb Author<\/p>\n<p>**Developed by:** Scholle<br \/>\n**Package:** `de.scholle.ultimateTPA`<\/p>\n<p>&#8212;<\/p>\n<p>## \ud83d\udcdc License<\/p>\n<p>This project is licensed under the **Apache License 2.0**.<br \/>\nYou may freely use, modify, and distribute this plugin under the terms of that license.  <\/p>\n<p>For more details, visit:<br \/>\nhttp:\/\/www.apache.org\/licenses\/LICENSE-2.0<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Simple TPA plugin with language and clickable messages.<\/p>\n","protected":false},"featured_media":161604,"template":"","meta":{"_minecraft_slug":"ultimatetpa","_minecraft_project_id":"o8S8UszO","_minecraft_author":"Mobilestars109","_minecraft_license":"Apache-2.0","_minecraft_downloads":1288,"_minecraft_follows":6,"_minecraft_client_side":"unsupported","_minecraft_server_side":"required","_minecraft_storage_type":"zip","_minecraft_archive_name":"ultimatetpa.zip","_minecraft_size_bytes":60279,"_minecraft_version_count":4,"_minecraft_updated_at":"2026-05-16T07:43:21.265846Z","_minecraft_date_created":"2025-10-27T06:15:42.668873Z","_minecraft_date_modified":"2025-11-29T22:45:29.685045Z","_minecraft_project_url":"https:\/\/modrinth.com\/mod\/ultimatetpa","_minecraft_icon_attachment_id":161604,"_minecraft_imported_at":"2026-06-09T15:33:24+00:00","_minecraft_import_hash":"a9a1abeed641f2a520a8229b45089144","_minecraft_versions":"","_minecraft_links":"","_minecraft_gallery":"","_minecraft_api_metadata":""},"mod_category":[87,124,89,122,126,127,128,867,129,123,869,92],"mod_loader":[130,132,133,134],"minecraft_version":[51,52,53,54,55,56,57,58,59,36,60,93,94,101,102,62,37,40,73,74,38,78,79,80,81,82],"class_list":["post-161603","mod","type-mod","status-publish","has-post-thumbnail","hentry","mod_category-adventure","mod_category-bukkit","mod_category-game-mechanics","mod_category-magic","mod_category-management","mod_category-paper","mod_category-purpur","mod_category-social","mod_category-spigot","mod_category-technology","mod_category-transportation","mod_category-utility","mod_loader-bukkit","mod_loader-paper","mod_loader-purpur","mod_loader-spigot","minecraft_version-1-18","minecraft_version-1-18-1","minecraft_version-1-18-2","minecraft_version-1-19","minecraft_version-1-19-1","minecraft_version-1-19-2","minecraft_version-1-19-3","minecraft_version-1-19-4","minecraft_version-1-20","minecraft_version-1-20-1","minecraft_version-1-20-2","minecraft_version-1-20-3","minecraft_version-1-20-4","minecraft_version-1-20-5","minecraft_version-1-20-6","minecraft_version-1-21","minecraft_version-1-21-1","minecraft_version-1-21-10","minecraft_version-1-21-2","minecraft_version-1-21-3","minecraft_version-1-21-4","minecraft_version-1-21-5","minecraft_version-1-21-6","minecraft_version-1-21-7","minecraft_version-1-21-8","minecraft_version-1-21-9"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.6 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>UltimateTPA - Minecraft<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/vpesports.com\/minecraft\/mods\/ultimatetpa\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"UltimateTPA - Minecraft\" \/>\n<meta property=\"og:description\" content=\"Simple TPA plugin with language and clickable messages.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/vpesports.com\/minecraft\/mods\/ultimatetpa\/\" \/>\n<meta property=\"og:site_name\" content=\"Minecraft\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data1\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/ultimatetpa\\\/\",\"url\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/ultimatetpa\\\/\",\"name\":\"UltimateTPA - Minecraft\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/ultimatetpa\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/ultimatetpa\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/wp-content\\\/uploads\\\/2026\\\/06\\\/ultimatetpa-icon-4017f18eae387c92e5653b4e4edf4cdfa4c0c0ca_96.webp\",\"datePublished\":\"2026-06-09T15:33:24+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/ultimatetpa\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/ultimatetpa\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/ultimatetpa\\\/#primaryimage\",\"url\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/wp-content\\\/uploads\\\/2026\\\/06\\\/ultimatetpa-icon-4017f18eae387c92e5653b4e4edf4cdfa4c0c0ca_96.webp\",\"contentUrl\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/wp-content\\\/uploads\\\/2026\\\/06\\\/ultimatetpa-icon-4017f18eae387c92e5653b4e4edf4cdfa4c0c0ca_96.webp\",\"width\":96,\"height\":96},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/ultimatetpa\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Mods\",\"item\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"UltimateTPA\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/#website\",\"url\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/\",\"name\":\"Minecraft\",\"description\":\"\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"UltimateTPA - Minecraft","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/vpesports.com\/minecraft\/mods\/ultimatetpa\/","og_locale":"en_US","og_type":"article","og_title":"UltimateTPA - Minecraft","og_description":"Simple TPA plugin with language and clickable messages.","og_url":"https:\/\/vpesports.com\/minecraft\/mods\/ultimatetpa\/","og_site_name":"Minecraft","twitter_card":"summary_large_image","twitter_misc":{"Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/vpesports.com\/minecraft\/mods\/ultimatetpa\/","url":"https:\/\/vpesports.com\/minecraft\/mods\/ultimatetpa\/","name":"UltimateTPA - Minecraft","isPartOf":{"@id":"https:\/\/vpesports.com\/minecraft\/#website"},"primaryImageOfPage":{"@id":"https:\/\/vpesports.com\/minecraft\/mods\/ultimatetpa\/#primaryimage"},"image":{"@id":"https:\/\/vpesports.com\/minecraft\/mods\/ultimatetpa\/#primaryimage"},"thumbnailUrl":"https:\/\/vpesports.com\/minecraft\/wp-content\/uploads\/2026\/06\/ultimatetpa-icon-4017f18eae387c92e5653b4e4edf4cdfa4c0c0ca_96.webp","datePublished":"2026-06-09T15:33:24+00:00","breadcrumb":{"@id":"https:\/\/vpesports.com\/minecraft\/mods\/ultimatetpa\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/vpesports.com\/minecraft\/mods\/ultimatetpa\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/vpesports.com\/minecraft\/mods\/ultimatetpa\/#primaryimage","url":"https:\/\/vpesports.com\/minecraft\/wp-content\/uploads\/2026\/06\/ultimatetpa-icon-4017f18eae387c92e5653b4e4edf4cdfa4c0c0ca_96.webp","contentUrl":"https:\/\/vpesports.com\/minecraft\/wp-content\/uploads\/2026\/06\/ultimatetpa-icon-4017f18eae387c92e5653b4e4edf4cdfa4c0c0ca_96.webp","width":96,"height":96},{"@type":"BreadcrumbList","@id":"https:\/\/vpesports.com\/minecraft\/mods\/ultimatetpa\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/vpesports.com\/minecraft\/"},{"@type":"ListItem","position":2,"name":"Mods","item":"https:\/\/vpesports.com\/minecraft\/mods\/"},{"@type":"ListItem","position":3,"name":"UltimateTPA"}]},{"@type":"WebSite","@id":"https:\/\/vpesports.com\/minecraft\/#website","url":"https:\/\/vpesports.com\/minecraft\/","name":"Minecraft","description":"","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/vpesports.com\/minecraft\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"}]}},"_links":{"self":[{"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/mod\/161603","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/mod"}],"about":[{"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/types\/mod"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/media\/161604"}],"wp:attachment":[{"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/media?parent=161603"}],"wp:term":[{"taxonomy":"mod_category","embeddable":true,"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/mod_category?post=161603"},{"taxonomy":"mod_loader","embeddable":true,"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/mod_loader?post=161603"},{"taxonomy":"minecraft_version","embeddable":true,"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/minecraft_version?post=161603"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}