YoTPA

![Logo](https://raw.githubusercontent.com/PhyschicWinter9/YoTPA/refs/heads/main/screenshot/yotpa.png)

# YoTPA

YoTPA is a lightweight and powerful teleport request plugin with adaptive performance optimization. Simple to use, easy to configure, and built for modern Minecraft servers.

## Features

### Adaptive Performance System
The plugin automatically detects your server’s available RAM and optimizes itself accordingly – zero configuration needed!

**4 Performance Modes:**
– **ULTRA_LIGHT** – For 512 MB – 1 GB RAM (Free/Cheap VPS)
– Best for: 5-10 players, minimal plugins
– **LIGHT** – For 1-2 GB RAM (Low-end servers)
– Best for: 10-15 players, light plugins
– **BALANCED** – For 2-4 GB RAM (Mid-range servers)
– Best for: 15-25 players, moderate plugins
– **HIGH_PERFORMANCE** – For 4+ GB RAM (High-end servers)
– Best for: 25+ players, any plugins

**Performance Benefits:**
– 30-70% less memory usage
– 25-60% less CPU usage
– Up to 83% faster maintenance tasks
– Dynamic optimization based on your server specs

### Core Features

– **Simple TPA System** – Request to teleport to other players or invite them to you
– **Countdown Timer** – Configurable delay before teleporting with visual feedback
– **Title Display** – Clear visual indication of teleport countdown
– **Movement Detection** – Teleport cancels if player moves during countdown
– **Custom Sound Effects** – Fully customizable audio feedback using Minecraft’s sound registry
– **Config Validation** – Prevents server crashes from broken configs with detailed error messages
– **Permission System** – Fine-grained access control
– **Request Management** – Toggle receiving requests, cancel outgoing requests
– **Multi-Threading Support** – Thread-safe for more concurrent players
– **Customizable Messages** – Fully localizable and configurable messages

### Internationalization (NEW in 1.4.0)

Customize all plugin messages in any language with full MiniMessage support:

“`yaml
prefix: “[YoTPA] ”

commands:
tpa:
sent: “Teleport request sent to {target}”
received: “{requester} wants to teleport to you.”
“`
**MiniMessage Features:**
– Rich text formatting (bold, italic, underlined)
– Color gradients: `text`
– Rainbow effect: `text`
– Hex colors: `<#FF5733>text`

### Custom Sound Effects

Customize all plugin sounds using Minecraft’s sound IDs:

“`yaml
sounds:
countdown: “block.note_block.pling”
success: “entity.enderman.teleport”
cancel: “entity.villager.no”
request: “entity.experience_orb.pickup”
“`

Test sounds in-game: `/playsound minecraft:block.note_block.pling master @s`

## Configuration

YoTPA’s `config.yml` file allows you to customize various aspects of the plugin:

– Request timeout duration
– Cooldown between requests
– Teleport delay countdown
– Performance mode settings
– Sound effects for different actions
– Feature toggles (statistics, bStats, titles, sounds)

### Configuration File

“`yaml
# YoTPA Configuration v1.3.0-Adaptive
# Smart Auto-Optimization for All Server Sizes

# Request timeout in seconds (how long before a request expires)
# Recommended: 30-120 seconds
request-timeout: 60

# Request cooldown in seconds (how long before sending another request)
# Recommended: 15-60 seconds
request-cooldown: 30

# Teleport delay in seconds (countdown before actual teleport)
# Recommended: 3-10 seconds
teleport-delay: 5

# Performance mode settings
performance:
# Options: AUTO, ULTRA_LIGHT, LIGHT, BALANCED, HIGH_PERFORMANCE
mode: AUTO

# Sound effects (use Minecraft sound names)
sounds:
countdown: “block.note_block.pling”
success: “entity.enderman.teleport”
cancel: “entity.villager.no”
request: “entity.experience_orb.pickup”

# Feature toggles
features:
statistics: true
bstats: true
titles: true
sounds: true
“`

### Messages Configuration (messages.yml)
“`yaml
# Customize your prefix
prefix: “[YoTPA] ”

# All messages are customizable
commands:
tpa:
usage: “Usage: /tpa ”
sent: “Teleport request sent to {target}”
received: “{requester} wants to teleport to you.”

teleport:
countdown:
title: “Teleporting…”
subtitle: “Don’t move!”
message: “Teleporting in {seconds} seconds”
“`
## Customization Examples

### Change Language to Spanish

Edit `messages.yml`:
“`yaml
prefix: “[YoTPA] ”

commands:
tpa:
usage: “Uso: /tpa ”
sent: “Solicitud enviada a {target}”
received: “{requester} quiere teletransportarse a ti.”
“`

Then use `/tpareload` to apply changes!

### Add Beautiful Gradients

“`yaml
prefix: “✦ YoTPA ✦ ”

teleport:
countdown:
title: “Teleporting…”
message: “Teleporting in {seconds} seconds”
“`

### Customize Colors

“`yaml
prefix: “[TPA] ”

commands:
tpa:
sent: “Request sent to {target}”
“`

### Use Hex Colors

“`yaml
prefix: “[YoTPA] ”

teleport:
success: “Teleported to {target} successfully!”
“`

**Placeholders:**
– `{player}` – Player name
– `{target}` – Target player name
– `{requester}` – Requester player name
– `{seconds}` – Number of seconds
– `{cooldown}` – Cooldown duration

### Configuration Sections Explained

**General Settings:**
– `request-timeout` – How long (in seconds) teleport requests remain valid (recommended: 30-120)
– `request-cooldown` – Time (in seconds) before a player can send another request (recommended: 15-60)
– `teleport-delay` – Countdown time (in seconds) before teleportation happens (minimum: 1)

**Performance Settings:**
– `performance.mode` – AUTO (recommended), ULTRA_LIGHT, LIGHT, BALANCED, or HIGH_PERFORMANCE
– AUTO automatically detects your server’s RAM and selects the best mode

**Sound Settings:**
– All sounds use Minecraft’s sound registry format (lowercase with dots)
– The plugin validates sounds on config reload
– Full sound list: https://minecraft.wiki/w/Sounds.json

**Feature Toggles:**
– `statistics` – Enable or disable statistics tracking
– `bstats` – Enable or disable bStats metrics
– `titles` – Enable or disable title animations during countdown
– `sounds` – Enable or disable all sound effects

### Config Validation

When reloading with `/tpareload`, the plugin validates:
– YAML syntax
– All values are in valid ranges
– Sounds exist in Minecraft’s registry
– Shows detailed error messages if invalid

Example validation output:
“`
Configuration validation failed!
✗ teleport-delay must be at least 1 second
✗ Sound ‘countdown’ (invalid.sound) not found in registry

Warnings:
• request-timeout (5) is very low, recommended: 30-120

Config not applied. Fix errors and try again.
Using previous configuration.
“`

## How to Edit and Reload

1. Edit the `plugins/YoTPA/config.yml` file
2. Save your changes
3. Use `/tpareload` in-game to apply changes with validation

## Commands Overview

| Command | Description | Permission |
| :—— | :———- | :——— |
| `/tpa ` | Request to teleport to another player | `yotpa.tpa` |
| `/tpaccept` | Accept a pending teleport request | `yotpa.tpaccept` |
| `/tpadeny` | Deny a pending teleport request | `yotpa.tpadeny` |
| `/tpahere ` | Request a player to teleport to you | `yotpa.tpahere` |
| `/tpacancel` | Cancel your outgoing teleport request | `yotpa.tpacancel` |
| `/tpatoggle` | Toggle receiving teleport requests | `yotpa.tpatoggle` |
| `/tpareload` | Reload the plugin configuration | `yotpa.reload` |
| `/tpainfo` | View plugin information and statistics | `yotpa.info` |
| `/tpastats` | View teleport statistics | `yotpa.stats` |

**Default:** All permissions are granted to all players by default.

## Detailed Commands

### TPA Command

Send a request to teleport to another player.

“`
/tpa “`

| Parameter | Type | Description |
| :——– | :— | :———- |
| `player` | `string` | **Required**. The player name you want to teleport to |

**Examples:**
“`
/tpa Steve # Request to teleport to player named Steve
/tpa Alex123 # Request to teleport to player named Alex123
“`

![TPA Command](https://github.com/PhyschicWinter9/YoTPA/blob/main/screenshot/tpav2.gif?raw=true)

**Notes:**
– You cannot send a request to yourself
– There is a configurable cooldown between sending requests (default: 30 seconds)
– Request will expire after a configurable time (default: 60 seconds)
– Target player will receive a notification with clickable accept/deny buttons

### TPAccept Command

Accept a pending teleport request from another player.

“`
/tpaccept
“`

No parameters required – accepts the most recent teleport request.

**Examples:**
“`
/tpaccept # Accept the pending teleport request
“`

![TPAccept Command](https://github.com/PhyschicWinter9/YoTPA/blob/main/screenshot/tpaacceptv2.gif?raw=true)

**Notes:**
– Only works if you have a pending teleport request
– After accepting, the teleportation will begin with a countdown
– The player must stay still during the countdown or it will be cancelled
– If accepting a `/tpa` request, the requester will teleport to you
– If accepting a `/tpahere` request, you will teleport to the requester

### TPADeny Command

Deny a pending teleport request from another player.

“`
/tpadeny
“`

No parameters required – denies the most recent teleport request.

**Examples:**
“`
/tpadeny # Deny the pending teleport request
“`

![TPADeny Command](https://github.com/PhyschicWinter9/YoTPA/blob/main/screenshot/tpadenyv2.gif?raw=true)

**Notes:**
– Only works if you have a pending teleport request
– The requester will be notified that their request was denied
– Request is immediately removed from the system

### TPAHere Command

Request another player to teleport to your location.

“`
/tpahere “`

| Parameter | Type | Description |
| :——– | :— | :———- |
| `player` | `string` | **Required**. The player name you want to request to teleport to you |

**Examples:**
“`
/tpahere Steve # Request Steve to teleport to you
/tpahere Alex123 # Request Alex123 to teleport to you
“`

![TPAHere Command](https://github.com/PhyschicWinter9/YoTPA/blob/main/screenshot/tpaherev2.gif?raw=true)

**Notes:**
– You cannot send a request to yourself
– There is a configurable cooldown between sending requests (default: 30 seconds)
– Request will expire after a configurable time (default: 60 seconds)
– The target player must accept with `/tpaccept`

### TPACancel Command

Cancel your outgoing teleport request.

“`
/tpacancel
“`

No parameters required – cancels your most recent outgoing request.

**Examples:**
“`
/tpacancel # Cancel your pending request
“`

**Notes:**
– Only works if you have an active outgoing request
– The target player will be notified that the request was cancelled
– Useful if you sent a request by mistake

### TPAToggle Command

Toggle whether you want to receive teleport requests.

“`
/tpatoggle
“`

No parameters required – toggles your request reception status.

**Examples:**
“`
/tpatoggle # Toggle receiving teleport requests on/off
“`

**Notes:**
– When toggled off, other players cannot send you teleport requests
– You will receive a message showing your current status
– Your setting persists across server restarts

### TPAReload Command

Reload the plugin configuration with validation.

“`
/tpareload
“`

No parameters required – reloads and validates the configuration file.

**Examples:**
“`
/tpareload # Reload the plugin configuration
“`

![TPAReload Command](https://github.com/PhyschicWinter9/YoTPA/blob/main/screenshot/tpareloadv2.gif?raw=true)

**Notes:**
– Requires the `yotpa.reload` permission (default: op only)
– Validates YAML syntax and all configuration values
– Checks that all sounds exist in Minecraft’s registry
– Shows detailed errors if config is invalid
– Only applies config if all validation passes
– Useful after making changes to the config.yml file

### TPAInfo Command

View plugin information and real-time statistics.

“`
/tpainfo
“`

No parameters required – displays plugin information.

**Examples:**
“`
/tpainfo # View plugin info and stats
“`

**Shows:**
– Current performance mode (auto-detected based on RAM)
– Optimization level and settings
– Active teleport requests
– Ongoing teleports
– Memory usage statistics
– Plugin version

**Notes:**
– Useful for monitoring plugin performance
– Helps diagnose issues
– Shows how the plugin has optimized itself for your server

### TPAStats Command

View teleport statistics and usage data.

“`
/tpastats
“`

No parameters required – displays teleport statistics.

**Examples:**
“`
/tpastats # View teleport statistics
“`

**Shows:**
– Total teleport requests sent
– Total teleport requests received
– Success rate
– Most active players
– Other usage metrics

**Notes:**
– Requires `features.statistics: true` in config
– Statistics are tracked per player
– Data persists across server restarts

## Optimization Tips

### For FREE/LOW-SPEC servers (512 MB – 1 GB):
– Keep mode as AUTO or ULTRA_LIGHT
– Limit total plugins to 5-8
– Set view-distance to 4 in server.properties
– Use Paper instead of Spigot
– Limit players to 5-10 concurrent

### For MID-RANGE servers (2-4 GB):
– Use AUTO or BALANCED mode
– Can run 10-15 plugins
– view-distance 6-8
– 15-25 players should be fine

### For HIGH-END servers (4+ GB):
– Use AUTO or HIGH_PERFORMANCE mode
– No significant plugin limitations
– view-distance 10-12
– 25+ players supported

## Performance

YoTPA is built with performance in mind:

– **Lightweight** – Minimal impact on server TPS
– **Thread-Safe** – No lag from concurrent operations
– **Memory Efficient** – Adapts to your server’s resources automatically
– **Async Operations** – Non-blocking task execution
– **Lock-Free** – No race conditions or deadlocks

## Installation

1. Download the latest JAR from the releases
2. Place the JAR in your server’s `plugins` folder
3. Restart your server
4. That’s it! The plugin will auto-configure based on your server’s specs


![YoTPA bstats](https://bstats.org/signatures/bukkit/yotpa.svg)

**Note:** This is my first plugin project!.

Yori3o’s Grappling Hooks

# 📖 Description
**Yori3o’s Grappling Hooks** is a mod inspired by [Toffy’s Hooks](https://modrinth.com/mod/toffys-hooks) that adds a new parkour and movement item to the game: grappling hooks.

## **Features:**

– Hooks made of various materials, varying in length and durability. They can be repaired and enchanted with various enchantments, including three new ones.

– Almost realistic physics: the hook simulates the physics of a rigid rope.

– You can climb up and down the rope, and also jump from it by pressing the keybinds.

– The hook breaks fragile blocks, which can be prevented by the “Gentle Touch” enchantment.

– Hooks are sometimes found in certain structures where they can be very useful.

– Maximum vanilla style and deep integration into the game.

▶️ Gameplay, video

🛠️ Configuration

– **Common:** You can configure the climbing speed and the soft rope mode. You can also enable “funnyMode” which will change some settings for fun.
– **Server:** You can adjust hunger consumption and disable breaking fragile blocks with a hook. You can also blacklist some blocks so that the hook cannot latch onto them.

**Important**: some values ​​such as block blacklist are only available in config files.
You can change hook parameters, such as range, in **_mod.jar/yo_hooks/hooks.json_**.

❔ Crafting

![craft of iron hook head](https://cdn.modrinth.com/data/cached_images/45173e39ca0b05aaebcef9c26175e9ab964bec0f.png)
![craft of diamond hook head](https://cdn.modrinth.com/data/cached_images/ba91ef634cf9d6f457bd46ae1259f41441401c1a.png)
![general crafting for all hooks (including netherite)](https://cdn.modrinth.com/data/cached_images/ef682500912ac960d75296e7cdcd55e257c20ef1.png)
![alternative craft of netherite hook](https://cdn.modrinth.com/data/cached_images/047574f04c448565e6c23f5fdb80780c8f3e29d3.png)

The mod supports add-on creation! You can create any compatibility with any mod for new tool materials: [Wiki](https://github.com/yori3o/Yori3osGrapplingHooks/wiki)

**If you found a bug or have any suggestions, please submit an issue on [GitHub](https://github.com/yori3o/Yori3osGrapplingHooks).**

YOGI+ Texture Pack

# YOGI+ | Crystal PvP Resource Pack

A meticulously crafted resource pack designed for the competitive crystal PvP scene in **Minecraft 1.21 and above**. YOGI+ enhances your gameplay with stunning animations and clean, low-visual-clutter textures that provide both a visual edge and buttery-smooth performance.

## ✨ Features

### 🔥 **Optimized Visuals**
* **Low Fire:** Significantly reduces the height and opacity of fire, providing clear visibility of your enemies and feet in combat.
* **Clean GUI:** A streamlined and minimalist interface that keeps your screen focused on the fight.

### ⚡ **Dynamic Animations**
* **Animated Mace:** Features a smooth, custom animation for the Mace, making it feel as powerful as it is.
* **Animated Ender Pearls:** Easily track your throws with a distinct, swirling animation.
* **Animated Wind Charges:** Visual cues for wind charges make timing and aiming your shots more intuitive.

### 🎯 **Competitive Edge**
* **Reduced Distraction:** Every texture is designed to remove unnecessary details that can clutter your screen during intense fights.
* **Crystal Clarity:** Clear and recognizable textures for end crystals and other essential PvP items.

## 🛠️ Compatibility
* **Game Versions:** **1.21, 1.21.1, 1.21.2, 1.21.3, 1.21.4**+ (The entire 1.21.x series)
* **Loader:** Vanilla / Compatible with all clients that support resource packs.

## 📦 Installation
1. Download the `YOGI+.zip` file.
2. Place it in your Minecraft `resourcepacks` folder.
3. Activate it in your game’s Resource Packs menu.

**Designed for CPvP, built for performance.**

Yippee Silverfish

Changes the Silverfish ambient sounds to be the YIPPEE! meme.

##

### MintRefresh:
[YouTube](https://www.youtube.com/@MintRefresh) | [Planet Minecraft](https://www.planetminecraft.com/member/mintrefresh/) | [Modrinth](https://modrinth.com/user/MintRefresh)
[TikTok](https://www.tiktok.com/@mintrefresh_mc) | [Twitter](https://x.com/MintRefresh_MC) | [Bluesky](https://bsky.app/profile/mintrefresh.bsky.social) | [Reddit](https://www.reddit.com/user/MintRefresh_MC/)

Join my Discord server [here](https://discord.gg/WYdD5xUamd)!

Yiga Hideout

[Living NPC 1.0.3 minimum is required](https://modrinth.com/datapack/living-npc)

This datapack adds yigas from Zelda Breath Of The Wild and Tears Of The Kindgom

Once you visit one of their hideouts which contains some stuff, they will randomly spawn near you to kill you.
They don’t loot anything

Yggdrasil Proxy

# YggdrasilProxy
When starting the game, the proxy in the device is automatically read to speed up Yggdrasil verification.

It extends Vanilla’s behavior and is more automated.

## Specific implementation
There is a setting in Windows, and its path is: “settings-> network-> proxy-> manual settings”.

YggdrasilProxy automatically reads them from the registry and verifies it, if it works, then use it immediately.

It basically works with network tools like Clash, you don’t need to proxy all traffic across the entire network card, you can easily connect to Yggdrasil Server through the proxy.

When registry data is not read, or is a non-Windows operating system, then YggdrasilProxy falls back to read environment variables (it does not need to be set in the JVM startup parameters, because they are annoying enough), it reads the following environment variables in the system and selects a valid variable to set to Proxy:
– http_proxy
– https_proxy
– no_proxy

## Defect
When the proxy server/tool ​​is shut down, you may need to restart Minecraft.

Looking for a solution if I have time…

## Compatibility
Basically compatible with all operating systems.

Specially optimized for Windows.

## Which ModLoaders are supported?
– Fabric (Support, 1.18+)
– Quilt (Built with Fabric, 1.18+)
– Forge (Support, 1.19+)
– NeoForge (Support, 1.21.4+)

YggdrasilProxy is designed to be available for both Server and Client and is compatible with the most ModLoader and Minecraft versions.

If there is no compatibility, then I have not done it yet. If you’re in a hurry, join my DC server and send your ModLoader as well as Minecraft versions, I’ll be there soon.

## I want to use it in Plugin Server
Unfortunately, plugin servers are usually not compatible with mods, and I’m reluctant to use the Mixin framework to write them on the plugin server.

If you have relevant needs, please use two patches I made specifically for this, you only need to comply with GPL 3.0.

– [Patch 1](https://github.com/404Setup/Sewlia/blob/dev/1.21.4/sewlia-server/minecraft-patches/features/0005-Merge-YggdrasilProxy.patch)
– [Patch 2](https://github.com/404Setup/Sewlia/blob/dev/1.21.4/sewlia-server/paper-patches/features/0006-Merge-YggdrasilProxy.patch)

## For Modpack
If you comply with the license, you can use it freely for Modpack.

Modpacks that redistribute Minecraft game body (i.e. packages that package the entire Minecraft game including Mod files, Config, ShaderPacks, ResourcePacks, Library and launcher into a whole zip file) are not allowed to use this mod.

## License

This work has a restrictive license in addition to the original license to prevent some unexpected behavior,
see [404Setup Public License](https://github.com/404Setup/404Setup/blob/main/LICENSE.md)

Yeth’s TPA

**Yeth’s TPA is a Teletransportation Accept mod for Minecraft designed to be compatible, stable, and sufficient.**

## Commands
– **/tpa ** Sends a TPA request to a user
– **/tpa accept ** Accepts a TPA request from a user
– **/tpa here** Sends a TPA Here request to a user
– **/tpa cancel** Cancels an outgoing TPA request
– **/tpa ignore ** Ignores a player from making TPA requests
– **/tpa help** Sends a list of all commands
– **/tpa disable** Disables TPA requests from being sent to you
– **/tpa enable** Enables TPA requests to be sent to you
– **/tpa setting ** Configures settings in TPA

## Features
– Automatic expiry of TPA requests
– TP delay w/ countdown
– Multiple request handling
– Permissions for server owners
– Anti-TPA-traps

## Support
Yeth’s TPA supports the following mod loaders:
– Fabric
– Neoforge
– Forge
– Quilt
– Legacy Fabric
– Babric
– Ornithe
– BTA
– LiteLoader

For Minecraft versions 1.7.2 – 26.1.2

Yet Another Glint

# Yet Another Glint

The vanilla’s enchanted items glint texture seems too noisy for me, so why not fix that?

## How?

This resource pack changes the glint texture of enchanted items and equipped armor to a minimalistic texture with lines instead of noise. This creates a “striped” glint effect.

## GIF

![gif](https://github.com/diskree/YetAnotherGlint/assets/96978370/24ac5722-b517-4f76-b48d-5e9605c8ac0c)

## Configure

This resource pack has [Respackopts](https://modrinth.com/mod/respackopts) mod support! You can separately adjust the glint of both items and equipped armor. There are 7 texture options in choose. It is also possible to turn off the glint.

![img](https://github.com/diskree/YetAnotherGlint/assets/96978370/5ba3622c-b06c-4bc1-9709-314a99cc5be4)

This is similar to Unobtrusive Enchantment Glint from [Vanilla Tweaks](https://vanillatweaks.net/), but better.

Yet Another Creeper Retexture

A re-texture of the Creeper using methods similar to the original. My aim was to match the existing art as much as I possibly could (though I’m not much of an artist lol), and also to provide a nice balance between the old and new.

This is based on the modern leaves texture from current Minecraft, for obvious reasons 😛

I looked at the original uncropped texture from an earlier version to match various details. Many people miss that the body actually has some very light detailing, which is included on here. The background color on the original was a white/grey color (I can’t quite tell), but I opted to go for a greenish hue to match the current promotional art.

You might say this doesn’t blend in with the grass as much, which is kind of a byproduct of how the game evolved. Minecraft started with only one biome, grass, which let the Creeper blend in easier. The moment a snow environment was added that point was lost. So I’d say blending in is a non-issue nowadays, for better or for worse.

This also comes with a Spawn Egg.

Yellow Sweep

**Changes sweep to yellow**

Tired of boring brownish-gray sweeps? Then try spicing up your game with something new!

![Changes sweep to yellow](https://cdn.modrinth.com/data/cached_images/b05014149b0dd3512cef631d7412eb8ad07dace7.png)