XTpaz

# **XTpaz – TPA Plugin**

XTpaz is a TPA (Teleport Ask) plugin for Paper/Spigot 1.20+. It provides simple, configurable player teleports with an optional confirmation GUI and strong anti-abuse options.

## 🔥 Key Features

### 👤 User experience
– **Confirmation GUI:** Confirm or cancel before sending a request; shows target world, ping, and player head.
– **Teleport countdown:** Configurable delay with action bar and sounds.
– **Movement check:** Teleport is cancelled if the player moves during the countdown.
– **Sounds:** Separate sounds for request sent/received, accept/deny, teleport, cooldown, etc.

### ⚙️ Requests & toggles
– **TPA & TPAHere:** Request to go to another player or bring them to you.
– **Auto-accept:** `/tpauto` and `/tpahereauto` for trusted players.
– **TPA toggle:** `/tpatoggle` to disable receiving requests.
– **Confirm toggle:** `/tpaconfirmtoggle` to switch between GUI and direct requests.

### 📋 Safety & limits
– **Request expiry:** Requests automatically expire (default 60 seconds).
– **Cooldowns:** Configurable cooldown between requests.
– **Offline cleanup:** Pending requests cleared when players quit.

### 🔧 Backend
– **Configurable messages:** Hex color support and placeholders (`{player}`, `{target}`, `{time}`).
– **Live reload:** `/xtpaz reload` reloads config and messages without restart.

## 🔧 Commands & Permissions

| Command | Description | Permission |
|——–|————-|————|
| `/tpa ` | Request to teleport to a player | `xtpaz.tpa` |
| `/tpahere ` | Request a player to teleport to you | `xtpaz.tpahere` |
| `/tpaccept [player]` | Accept a pending TPA request | `xtpaz.tpaccept` |
| `/tpadeny [player]` | Deny a pending TPA request | `xtpaz.tpadeny` |
| `/tpacancel [player]` | Cancel your pending request | `xtpaz.tpacancel` |
| `/tpauto` | Toggle auto-accept for /tpa | `xtpaz.tpauto` |
| `/tpahereauto` | Toggle auto-accept for /tpahere | `xtpaz.tpahereauto` |
| `/tpatoggle` | Toggle receiving TPA requests on/off | `xtpaz.tpatoggle` |
| `/tpaconfirmtoggle` | Toggle confirmation GUI on/off | `xtpaz.tpaconfirmtoggle` |
| `/xtpaz reload` | Reload configuration | `xtpaz.reload` |

## 📁 Configuration files

– **`config.yml`** – Request timeout, auto-accept delay, cooldown, teleport countdown, sounds, and message texts.

## ⛏️ Requirements

– **Server:** Paper or Spigot 1.20+
– **Java:** 17 or higher

XTransfer

![XTransfer Logo](https://cdn.modrinth.com/data/cached_images/3aebdab1e6de013da8fd66ca7c06f6072d26bcdb.png)

# 0 What the heck is this?

A new plugin designed to **transfer players’ data between names or UUIDs**. I didn’t find any other plugin can handle this problem before, so I made my own one and uploaded it to here to help anyone who needs this feature for his/her server.

# 1 Features

## 1.1 Smart UUID Detection

Automatically detects UUIDs from:
– Online players
– usercache.json (for premium players)
– Offline-mode UUID generation

## 1.2 Complete Data Transfer

Transfers all vanilla player data:
– Player inventory and Ender Chest (`playerdata/`)
– Statistics (`stats/`)
– Advancements (`advancements/`) for 1.13+

## 1.3 Safe & Reliable

– Creates automatic backups before overwriting
– Kicks online players to prevent data overwrite (configurable)
– Asynchronous file operations – no server lag!

# 2 Commands and Permission Nodes

## 2.1 Commands

“`markdown
– /xtransfer – Show version info
– /xtransfer transfer – Transfer by player names
– /xtransfer transferuuid – Transfer by UUIDs
– /xtransfer list – List all player data files
– /xtransfer list – Show files for specific player
– /xtransfer reload – Reload configuration
– /xtransfer help – Show the help message

/xtf = /transfer = /xtransfer
“`

## 2.2 Permission Nodes

“`markdown
– xtransfer.manage – Allows using all XTransfer commands (default: op)
“`

# 3 Config

“`yaml
# Show logo when plugin enabled
show_logo: true

# World settings
world:
# Manual world name (only used if auto-detect is false)
name: “world”
# Automatically detect world name from server
auto-detect: true

# Transfer settings
transfer:
# Transfer statistics files
stats: true
# Transfer advancements files (1.13+)
advancements: true

# Backup settings
backup:
# Create backup of existing files before overwriting
create: true
# Suffix for backup files
suffix: “.old”

# Online player handling
# If true, kick online players before transfer
# If false, show warning but continue
kick-online-player: true

# Language settings
language: “en”

# Debug mode (enable only for troubleshooting)
debug: false

# Messages – You can customize all messages here
messages:
# English messages
en:
no-permission: “&cYou don’t have permission!”
usage-header: “&9&lX&f&lTransfer &f&lHelp”
usage-transfer: “&7/xtransfer transfer &f
usage-transferuuid: “&7/xtransfer transferuuid &f
usage-list: “&7/xtransfer list &f[player]”
usage-reload: “&7/xtransfer reload”
usage-help: “&7/xtransfer help”
reload-success: “&a✓ Configuration reloaded!”
transfer-start: “&eStarting async transfer…”

looking-up: “&eLooking up UUIDs for &f{old} &eand &f{new}&e…”
uuid-not-found: “&cCould not find UUID for: &f{name}”
try-uuid: “&7Try using /xtransfer transferuuid with direct UUIDs”
invalid-uuid: “&cInvalid UUID format! Use: /xtransfer transferuuid
uuid-example: “&7Example: 12345678-1234-1234-1234-123456789012”

source-data-missing: “&cSource player {name} ({uuid}) has no data file!”

transfer-from: “&7From: &f{name} &7({uuid})”
transfer-to: “&7To: &f{name} &7({uuid})”
transfer-file: “&7File: &f{file}”
backup-created: “&7Backed up existing file to: &f{file}”
transfer-success: “&a✓ Successfully transferred player data!”
transfer-stats: “&7✓ Transferred stats file”
transfer-advancements: “&7✓ Transferred advancements file”
transfer-error: “&cError during transfer: {error}”

folder-not-found: “&cPlayer data folder not found: {path}”
source-not-found: “&cSource file not found: {file}”
source-location: “&7Looked in: {path}”

player-online-warning: “&e⚠ Warning: Player {player} is online! Data may be overwritten when they log out.”
player-kicked: “&e✓ Player {player} has been kicked for data transfer.”
kick-message: “&cYour data is being transferred. Please rejoin in a few seconds.”

no-files: “&eNo player data files found”
list-header: “&6=== Player Data Files ({count}) ===”
list-more: “&7… and {count} more”
list-entry: “&7{name} &8- {uuid}”
list-unknown: “&8{uuid} &7(unknown)”

files-header: “&6=== Files for {player} ===”
file-playerdata: “&7Player Data: {status}{size}”
file-stats: “&7Stats: {status}”
file-advancements: “&7Advancements: {status}”

# Other language…
“`

xtex’s MP Pack

# xtex’s MP Pack

> Minecraft modpack focusing on multiplayer (Survival, Creative or PvP) performance and experience optimization.

[![License](https://img.shields.io/badge/license-Apache–2.0-green?style=flat-square)](https://codeberg.org/xtex/xtex-mp-pack/src/branch/main/LICENSE) ![Game Version](https://img.shields.io/modrinth/game-versions/HsMwyVxf?style=flat-square) ![Modrinth version](https://img.shields.io/modrinth/v/HsMwyVxf?style=flat-square) [![Modrinth](https://img.shields.io/badge/get–stable-modrinth-green?style=flat-square)](https://modrinth.com/modpack/xtex-mp-pack) [![exogit](https://img.shields.io/badge/get–staging-exogit-yellowgreen?style=flat-square)](https://git.exozy.me/xtex/xtex-mp-pack-staging) [![Codeberg](https://img.shields.io/badge/get–dev-codeberg-yellow?style=flat-square)](https://codeberg.org/xtex/xtex-mp-pack)

This Fabric-modpack is client-only.

Get more tips from [the wiki](https://codeberg.org/xtex/xtex-mp-pack/wiki/Home).

## Download

### Stable

The stable versions are available at [Modrinth](https://modrinth.com/modpack/xtex-mp-pack).

### Staging (recommended)

> Use **at your own risk**. Some of your customized configurations may be erased during the update.

The staging version is the delayed version of the dev. It is hosted on [exogit](https://exozy.me) and will be synchronized with dev every 24h, so some temporary bugs may be fixed in time.

[packwiz bootstrap URL](https://git.pub.solar/xtex/xtex-mp-pack-staging/raw/branch/main/pack.toml) | [MultiMC / PrismLauncher Pack](https://xtex.envs.net/xmpp/XMPP-staging.zip)

> Note that you may need to restart the game twice to apply latest updates when using PrismLauncher 9.4+.

### Dev: packwiz installer

> Using this bootstrap URL means your client will always be in sync with the latest development branch **at your own risk**.
>
> To keep your own customized configurations, disable custom pre-launch command after first launch.

[packwiz bootstrap URL](https://codeberg.org/xtex/xtex-mp-pack/raw/branch/main/pack.toml) | [MultiMC / PrismLauncher Pack](https://xtex.envs.net/xmpp/XMPP-dev.zip)

> Note that you may need to restart the game twice to apply latest updates when using PrismLauncher 9.4+.

## Credits

Credits

# Credits

Thanks to everyone who contributed to xtex’s MP Pack and the parts it uses.

## Credit Links

– [Xaero’s Minimap](https://modrinth.com/mod/xaeros-minimap) & [Xaero’s World Map](https://modrinth.com/mod/xaeros-world-map)

– [XeKr Square Pattern](https://modrinth.com/resourcepack/xekrsquarepattern)

## Direct Contributors

– xtex

## Content List

This is a complete list of all mods, resource packs and shaders included in this pack.

– 3D Skin Layers
– AdvancementInfo Reloaded
– AppleSkin
– Architectury API
– AudioShutdown
– bad packets
– BetterF3
– Better Ping Display [Fabric]
– Better Sky
– Carpet
– Carpet Extra
– Chat Heads
– Chest Tracker
– Chunky
– ClickThrough Plus
– Cloth Config API
– Concurrent Chunk Management Engine (Fabric)
– Custom Crosshair Mod
– Debugify
– Default Dark Mode
– Durability Tooltip
– Dynamic FPS
– e4mc
– Entity Culling
– Fabric API
– Fabric Language Kotlin
– FerriteCore
– FlightHelper
– Foliage+
– IMBlocker
– ImmediatelyFast
– Indium
– Inventory HUD+
– Inventory Profiles Next
– Iris Shaders
– Key Language Pack
– Krypton
– LambDynamicLights
– Language Reload
– LAN World Plug-n-Play
– lazy-language-loader
– libIPN
– Litematica
– Litematica Printer
– Lithium
– Log Cleaner
– MakeUp – Ultra Fast
– MaLiLib
– MixinTrace
– Mod Menu
– More Culling
– No Chat Reports
– ObsidianUI
– Pseudo-localization Language Pack
– Redstone Tweaks
– Reese’s Sodium Options
– ReplayMod
– Roughly Enough Items (REI)
– Screenshot to Clipboard
– Shiny Ores
– Sodium
– Sodium Extra
– Sofron oCd
– spark
– StackDeobfuscator
– SuperMartijn642’s Config Lib
– ThreadTweak
– TweakerMore
– Tweakeroo
– Twemojis In Minecraft
– Very Many Players (Fabric)
– ViaFabricPlus
– Who am I?
– WTHIT
– Xaero’s Minimap
– Xaero’s World Map
– XeKrSquarePattern
– YetAnotherConfigLib

## Modrinth Links

– [3D Skin Layers](https://modrinth.com/mod/zV5r3pPn)
– [AdvancementInfo Reloaded](https://modrinth.com/mod/tLuRLqpa)
– [AppleSkin](https://modrinth.com/mod/EsAfCjCV)
– [Architectury API](https://modrinth.com/mod/lhGA9TYQ)
– [AudioShutdown](https://modrinth.com/mod/cSJudN5h)
– [bad packets](https://modrinth.com/mod/ftdbN0KK)
– [BetterF3](https://modrinth.com/mod/8shC1gFX)
– [Better Ping Display [Fabric]](https://modrinth.com/mod/MS1ZMyR7)
– [Concurrent Chunk Management Engine (Fabric)](https://modrinth.com/mod/VSNURh3q)
– [Carpet Extra](https://modrinth.com/mod/VX3TgwQh)
– [Chat Heads](https://modrinth.com/mod/Wb5oqrBJ)
– [Chest Tracker](https://modrinth.com/mod/ni4SrKmq)
– [Chunky](https://modrinth.com/mod/fALzjamp)
– [ClickThrough Plus](https://modrinth.com/mod/fJi8nm80)
– [Cloth Config API](https://modrinth.com/mod/9s6osm5g)
– [Custom Crosshair Mod](https://modrinth.com/mod/o1tyE5vJ)
– [Debugify](https://modrinth.com/mod/QwxR6Gcd)
– [Durability Tooltip](https://modrinth.com/mod/smUP7V3r)
– [Dynamic FPS](https://modrinth.com/mod/LQ3K71Q1)
– [e4mc](https://modrinth.com/mod/qANg5Jrr)
– [Entity Culling](https://modrinth.com/mod/NNAgCjsB)
– [Fabric API](https://modrinth.com/mod/P7dR8mSH)
– [Fabric Language Kotlin](https://modrinth.com/mod/Ha28R6CL)
– [FerriteCore](https://modrinth.com/mod/uXXizFIs)
– [FlightHelper](https://modrinth.com/mod/1yyNJogn)
– [IMBlocker](https://modrinth.com/mod/WMDesFsZ)
– [ImmediatelyFast](https://modrinth.com/mod/5ZwdcRci)
– [Indium](https://modrinth.com/mod/Orvt0mRa)
– [Inventory Profiles Next](https://modrinth.com/mod/O7RBXm3n)
– [Iris Shaders](https://modrinth.com/mod/YL57xq9U)
– [Krypton](https://modrinth.com/mod/fQEb0iXm)
– [LambDynamicLights](https://modrinth.com/mod/yBW8D80W)
– [Language Reload](https://modrinth.com/mod/uLbm7CG6)
– [lazy-language-loader](https://modrinth.com/mod/Nz0RSWrF)
– [libIPN](https://modrinth.com/mod/onSQdWhM)
– [Litematica Printer](https://modrinth.com/mod/3llatzyE)
– [Litematica](https://modrinth.com/mod/bEpr0Arc)
– [Lithium](https://modrinth.com/mod/gvQqBUqZ)
– [Log Cleaner](https://modrinth.com/mod/hwRo6mwQ)
– [MaLiLib](https://modrinth.com/mod/GcWjdA9I)
– [MixinTrace](https://modrinth.com/mod/sGmHWmeL)
– [Mod Menu](https://modrinth.com/mod/mOgUt4GM)
– [More Culling](https://modrinth.com/mod/51shyZVL)
– [No Chat Reports](https://modrinth.com/mod/qQyHxfxd)
– [ObsidianUI](https://modrinth.com/mod/E0L8mfJZ)
– [Reese’s Sodium Options](https://modrinth.com/mod/Bh37bMuy)
– [Roughly Enough Items (REI)](https://modrinth.com/mod/nfn13YXA)
– [ReplayMod](https://modrinth.com/mod/Nv2fQJo5)
– [Screenshot to Clipboard](https://modrinth.com/mod/1KiJRrTg)
– [Sodium Extra](https://modrinth.com/mod/PtjYWJkn)
– [Sodium](https://modrinth.com/mod/AANobbMI)
– [spark](https://modrinth.com/mod/l6YH9Als)
– [StackDeobfuscator](https://modrinth.com/mod/NusMqsjF)
– [SuperMartijn642’s Config Lib](https://modrinth.com/mod/LN9BxssP)
– [ThreadTweak](https://modrinth.com/mod/vSEH1ERy)
– [TweakerMore](https://modrinth.com/mod/GBeCx05I)
– [Tweakeroo](https://modrinth.com/mod/t5wuYk45)
– [ViaFabricPlus](https://modrinth.com/mod/rIC2XJV4)
– [Very Many Players (Fabric)](https://modrinth.com/mod/wnEe9KBa)
– [Who am I?](https://modrinth.com/mod/CcxcmoLQ)
– [WTHIT](https://modrinth.com/mod/6AQIaxuO)
– [Xaero’s Minimap](https://modrinth.com/mod/1bokaNcj)
– [Xaero’s World Map](https://modrinth.com/mod/NcUtCpym)
– [YetAnotherConfigLib](https://modrinth.com/mod/1eAoo2KR)
– [Better Sky](https://modrinth.com/mod/Zrixe2pD)
– [Default Dark Mode](https://modrinth.com/mod/6SLU7tS5)
– [Foliage+](https://modrinth.com/mod/kXiPMJsD)
– [Key Language Pack](https://modrinth.com/mod/QCLPvYpB)
– [Pseudo-localization Language Pack](https://modrinth.com/mod/oZcsj8Sx)
– [Redstone Tweaks](https://modrinth.com/mod/RvfAlf4Z)
– [Shiny Ores](https://modrinth.com/mod/oYrEfh82)
– [Twemojis In Minecraft](https://modrinth.com/mod/WdYcUVh8)
– [XeKrSquarePattern](https://modrinth.com/mod/rq4lDGdf)
– [MakeUp – Ultra Fast](https://modrinth.com/mod/izsIPI7a)


## License

This modpack is released under the Apache-2.0 license.

> Copyright 2023-2025 xtex
>
> Licensed under the Apache License, Version 2.0 (the “License”);
> you may not use this file except in compliance with the License.
> You may obtain a copy of the License at
>
> http://www.apache.org/licenses/LICENSE-2.0

xspv’s pvp pack

personal PvP modpack made public

no texture packs included.

general optimization, QoL, sick custom hud, lunar freelook, show other players tier from mctiers, oh and essentials, their cosmetics & more.

show me mods silly goose

1. EMF
2. ETF
3. 3D Skin Layers
4. AppleSkin
5. ArchitecturyAPI
6. Better Ping Display
7. Bobby
8. Chat Heads
9. CIT Resewn
10. Cloth Config API
11. Controlling
12. CustomHud
13. Dynamic FPS
14. Entity Culling
15. Essential Mod
16. Fabric API
17. Freecam
18. Freelook
19. HitColor
20. Iris Shaders
21. LazyDFU
22. MaLiLib
23. Memory Leak Fix
24. Mod Menu
25. Model Gap Fix
26. ModernFix
27. More Chat History
28. Mouse Tweaks
29. NameTagPing
30. Reese’s Sodium Options
31. Remove Reloading Screen
32. Searchables
33. Shulker Box Tooltip
34. Simple Voice Chat
35. Sodium
36. Status Effect Bars
37. Status Effect Timer
38. TierTagger
39. uku’s Armor Hud
40. ukulib
41. YetAnotherConfigLib

thats all

X-SetSpawn

[![Spigot](https://img.shields.io/badge/Available%20on-Spigot-orange?style=for-the-badge&logo=spigotmc&logoColor=white)](https://www.spigotmc.org/resources/132280/) [![Wiki](https://img.shields.io/badge/Wiki-Documentation-blue?style=for-the-badge&logo=readme&logoColor=white)](https://wiki-x-proyects.vercel.app/) [![Discord](https://img.shields.io/badge/Discord-Community-7289da?style=for-the-badge&logo=discord&logoColor=white)](https://discord.com/invite/Yb6GsfGWmd)

# **X-SetSpawn**
### *Manage your server’s spawn point professionally*

### 📝 **Description**
X-SetSpawn is a lightweight, feature-rich plugin designed to manage spawn points on your server. From simple global spawns to premium visual effects, economy integration, and proxy network support — all packed into one plugin. Compatible with Minecraft 1.8.8 to 26.1+.

### ✨ **Features**
– **Fireworks on arrival:** Launch a firework when a player teleports to spawn. Color and power configurable.
– **Combat & Falling checks:** Block `/spawn` while in combat or falling. Supports CombatLogX, PvPManager, DeluxeCombat.
– **Multi-database storage:** Save spawns to YAML (local), MySQL, MariaDB, H2 or MongoDB for cross-server sync.
– **Custom command aliases:** Define `/hub`, `/lobby` or any alias directly from `config.yml` — no need to edit `plugin.yml`.
– **Economy Integration (Vault):** Charge players to use `/spawn`. Money only deducted if the teleport completes.
– **First-Join Spawn:** Set a unique spawn point for newly joining players with `/setspawn firstjoin`.
– **Smart Respawn:** On death, respects the player’s Bed or Respawn Anchor before falling back to spawn.
– **Void-Teleport:** Automatically teleport players who fall below a configurable Y-level.
– **Post-Teleport Protection:** Temporary invulnerability after teleporting while chunks load.
– **Advanced Proxy Sync:** Dedicated lightweight plugins for Velocity and BungeeCord. Use `/setlobby` to sync your lobby server automatically.
– **Intelligent Proxy Teleport:** Automatically detects if a player is already on the target server and performs a local teleport.
– **Visual Countdown:** ActionBar, BossBar, Titles and particle effects during the delay — each individually toggleable.
– **Countdown sounds:** “Tic-Tac” click sounds each second during the teleport delay.
– **PlaceholderAPI:** Full PAPI support. Exposes `%xsetspawn_cooldown%`, `%xsetspawn_delay%`, `%xsetspawn_is_pending%`, `%xsetspawn_spawn_set%`.
– **Config auto-updater:** Detects outdated configs, creates a backup and rebuilds automatically.
– **100% Customizable:** 6 language files (EN, ES, JA, PT, RU, CUSTOM), per-world spawns, and full config control.

### 🖥️ **Compatibility**
| Software | Supported |
|—|—|
| Bukkit / Spigot / Paper / Purpur | ✅ |
| Folia | ✅ |
| BungeeCord / Velocity | ✅ |
| Minecraft | 1.8.8 → 26.1+ |

### 🛠️ **Main Commands**

**`/spawn`**
Teleports the player to the established spawn point.

**`/setspawn [x y z] [world] [yaw pitch]`**
Sets the spawn point. Use without arguments for your location, or specify coordinates (supports `~`). Console compatible.

**`/delspawn `**
Deletes a specific named spawn point if named spawns are enabled.

**`/back`**
Teleports the player back to their last location before using a spawn command.

**`/setlobby`**
Sets the lobby coordinates for the proxy network and syncs the configuration with BungeeCord/Velocity.

**`/xss [subcommand]`**
– **`help`** – Shows the help menu.
– **`reload`** – Reloads the plugin configuration.
– **`version`** – Shows the current version info.
– **`update`** – Manually check for updates.
– **`setspawn`** – Sets the spawn point (alias for /setspawn).
– **`delspawn`** – Deletes a spawn (alias for /delspawn).

### 🛡️ **Permissions**

– **`xsetspawn.spawn`** – Use `/spawn`. *(default: everyone)*
– **`xsetspawn.setspawn`** – Use `/setspawn`. *(default: op)*
– **`xsetspawn.admin`** – Admin commands and update notifications. *(default: op)*
– **`xsetspawn.reload`** – Reload the configuration. *(default: op)*
– **`xsetspawn.update`** – Check for updates. *(default: op)*
– **`xsetspawn.bypass.cooldown`** – Skip the teleport cooldown. *(default: op)*
– **`xsetspawn.bypass.delay`** – Skip the teleport delay. *(default: op)*
– **`xsetspawn.bypass.economy`** – Teleport for free. *(default: op)*

> **Tip:** Explicitly denying a node (`-xsetspawn.spawn`) will block the player even if they are OP.


Need help? Join our [Discord](https://discord.com/invite/Yb6GsfGWmd) or report issues in the discussion section.

XPSyncAddon

Englisch

**XPSyncAddon:**

is a simple but powerful add-on for the XPSync plugin. It was built to fix a major gameplay issue where players could abuse the XP synchronization system to farm experience unfairly. With this plugin installed:

XP is no longer dropped when a player dies

Any attempt to farm XP through repeated kills is stopped

It works directly alongside the XPSync plugin

It maintains fairness in setups where XP or levels affect game mechanics (like world borders)

The plugin is lightweight and requires no configuration

It automatically disables itself if XPSync is not found

German

**XPSyncAddon:**

ist ein einfaches, aber wirkungsvolles Add-on für das XPSync-Plugin. Es behebt ein zentrales Problem, bei dem Spieler durch das Synchronisieren von XP einen unfairen Vorteil erlangen konnten. Mit diesem Plugin:

Droppen Spieler keine XP mehr beim Tod

Wird XP-Farming durch wiederholtes Töten verhindert

Funktioniert das Add-on nahtlos mit dem XPSync-Plugin

Bleibt das Gameplay fair, besonders bei Mechaniken wie „Level = Weltgrenze“

Ist das Plugin leichtgewichtig und benötigt keine Konfiguration

Deaktiviert sich automatisch, falls XPSync nicht installiert ist

XPSync

Englisch

**Englisch:**

Synchronize XP and level of all players on your server!

XPSync is a simple but powerful plugin for Minecraft servers that automatically synchronizes the XP bar and level of all players. It always shows the progress of the player with the most XP, so everyone sees the same XP fill and the same level – perfect for fair competitions or cooperative adventures.

Features Synchronized XP and level of all players to the current top player

Avoids spam by sending only one message per synchronization

Synchronization happens directly after XP changes, on player death and when joining

Commands /xpsync top (shows player with the most XP) and /xpsync reload (reloads the plugin)

Minimal resource usage, easy installation

Why XPSync? Whether you run a PvP server, minigames or a cooperative world – with XPSync all players see exactly the same XP status of the strongest player. This creates fairness and a unified player experience!

——————————————————————–
**See my other Projects** [Modrinth](https://modrinth.com/user/fernsehheft)

**This Plugin is working fine**

——————————————————————-

German

**German:**

Synchronisiere XP und Level aller Spieler in deinem Server!

XPSync ist ein einfaches, aber mächtiges Plugin für Minecraft-Server, das automatisch die XP-Leiste und das Level aller Spieler synchronisiert. Es zeigt stets den Fortschritt des Spielers mit den meisten XP an, sodass alle die gleiche XP-Füllung und das gleiche Level sehen — perfekt für faire Wettbewerbe oder kooperative Abenteuer.

Features
Synchronisiert XP und Level aller Spieler auf den aktuellen Spitzenreiter

Vermeidet Spam durch nur eine Nachricht pro Synchronisation

Synchronisation erfolgt direkt nach XP-Änderungen, bei Spieler-Tod und beim Joinen

Befehle /xpsync top (zeigt Spieler mit den meisten XP) und /xpsync reload (lädt das Plugin neu)

Minimaler Ressourcenverbrauch, einfache Installation

Warum XPSync?
Ob Du einen PvP-Server, Minigames oder eine kooperative Welt betreibst — mit XPSync sehen alle Spieler genau den gleichen XP-Stand des stärksten Spielers. Das schafft Fairness und ein einheitliches Spielerlebnis!

——————————————————————–
**See my other Projects** [Modrinth](https://modrinth.com/user/fernsehheft)

**This Plugin is working fine**

——————————————————————-

XPON Optimize

## **XPON Optimize: A Minecraft Optimization Modpack for PojavLauncher**
##
XPON Optimize is crafted specifically for **PojavLauncher**, aiming to enhance performance on **Fabric** platforms. This modpack addresses the unique challenges of running Minecraft Java Edition on mobile devices, delivering a smoother gaming experience tailored for ARM architecture.

### Why XPON Optimize?
The ARM platform, commonly found in mobile devices, significantly differs from the x86 architecture of traditional PCs. XPON Optimize bridges this gap, ensuring that the APIs and renderers are optimized for ARM’s unique capabilities.

### Graphics and Renderers

![Pojavlauncher Optimize](https://cdn.modrinth.com/data/cached_images/b1f3557ac6b7de4dea34ba1416a8c62be23e2fe3.jpeg)
The modpack features custom **Renderers** designed to enable mobile SoCs (System on Chips) to handle Minecraft rendering efficiently. While not flawless, these open-source renderers provide a substantial performance boost. However, some optimization mods, like **Sodium**, require patching to function correctly on mobile devices.

### Java Runtime and ARM Support
PojavLauncher utilizes a custom-built **Java Runtime Environment (JRE)** for ARM32/64, making Minecraft compatible with mobile processors. XPON Optimize includes mod options tailored to ARM, maximizing performance on these devices.

### Modpack Variants
XPON Optimize offers different versions to cater to specific needs:
– **Fabric-SodiumReady**

Each version focuses on compatibility and performance optimization for the respective rendering engines.

### Optifine Integration
Due to **Optifine’s copyright restrictions**, XPON Optimize does not include the Optifine mod file. Users need to download Optifine separately from [optifine.net](https://optifine.net/) and place it in the correct directory.

### VulkanMOD
This modpack also features an edited version of **VulkanMOD** for ARM platforms, enhancing graphics performance.

**Credits:**
– xCollateral’s VulkanMOD
– sa1672ndo’s VulkanMOD for ARM

XPMerge

# ✨ XpMerge

> **Less orbs. More frames. Same XP.**
> Automatically merges nearby experience orbs into one — silently, safely, and without ever duping a drop.

## 📖 Overview

**XpMerge** is a lean, Folia-native XP orb merging plugin built for servers that care about performance. Every configured interval, it sweeps all loaded chunks, finds clusters of experience orbs in close proximity, and collapses them into a single orb — no XP lost, no exploits, no drama.

Massive mob farms, XP grinders, and enchanting setups can spawn hundreds of orbs in seconds. XpMerge kills that lag at the source by reducing entity count without touching collection logic. Players never notice it’s running — they just notice the server feels smoother.

## ✨ Features

– 🔁 **Interval-based sweeping** — merges fire on a configurable tick schedule, not every frame
– 📐 **Radius-based clustering** — orbs within a set block radius collapse into one, preserving total XP
– 🧵 **Folia-native threading** — uses `RegionScheduler` per 8×8 chunk region, meaning all entity reads and writes happen on the correct regional thread with zero unsafe cross-region access
– 🔒 **Dupe-safe design** — re-validates orbs immediately before removal to handle race conditions from collection events mid-sweep
– 🌍 **Multi-world support** — sweeps every loaded world simultaneously
– 🛠️ **Live reload** — update config without restarting via `/xpmerge reload`
– 📊 **Status command** — inspect current settings and lifetime merge count at a glance
– 🐛 **Debug mode** — optional per-merge console logging for diagnostics, off by default

## 🔒 Dupe Safety & Bottled XP Compatibility

XpMerge was rigorously tested against plugins that bottle, extract, or otherwise manipulate XP orb entities — a category of plugins that are particularly vulnerable to dupe exploits when combined with orb merging.

The key safeguard: **XpMerge re-validates every orb immediately before removal.** If a player or plugin has already collected an orb between the sweep scan and the merge execution, that orb is skipped entirely. XP is never double-counted or awarded twice.

Tested and confirmed dupe-free with:

| Plugin | Repository |
|—|—|
| **Experience Manager (XPM)** by FruitLoopin | [github.com/jwkerr/XPManager](https://github.com/jwkerr/XPManager) |
| **BottleEXP** by Mooshlol304 | [github.com/Mooshlol304/BottleEXP-1.21.5](https://github.com/Mooshlol304/BottleEXP-1.21.5/tree/main) |
| **XP Bottling** by HoneyBerries | [github.com/HoneyBerries/XPBottling](https://github.com/HoneyBerries/XPBottling) |

> XP values are accumulated as a `long` internally before being written back as an `int`, preventing overflow edge cases on large orb clusters. The final value is clamped to `Integer.MAX_VALUE` as a hard ceiling.

## 🖥️ Compatibility

| Platform | Supported Versions |
|—|—|
| **Paper** | 1.21.10 — 1.21.11 *(1.21.x broadly supported)* |
| **Folia** | 1.21.10 — 1.21.11 *(natively threaded)* |

> ⚠️ Spigot/Bukkit are **not** supported. Paper or Folia is required.
> Folia support is first-class — the sweep architecture was designed around `RegionScheduler` from the ground up, not bolted on after.

## 🔧 Commands & Permissions

| Command | Description | Permission |
|—|—|—|
| `/xpmerge status` | Shows current interval, radius, debug state, and total orbs merged | `xpmerge.admin` |
| `/xpmerge reload` | Hot-reloads config and restarts the merge task | `xpmerge.admin` |

> `xpmerge.admin` defaults to **OP only**.

## ⚙️ Configuration

The config file is located at:

“`
plugins/XpMerge/config.yml
“`

Below is the full default configuration:

“`yaml
# How many ticks between each merge sweep. 20 ticks = 1 second.
# Lower = more aggressive merging, slightly more CPU. Minimum: 1.
merge-interval: 5

# Block radius within which orbs are merged together.
# All orbs within this distance of each other collapse into one.
merge-radius: 20.00

# Print a line to console every time orbs are merged. Turn off in production.
debug: false
“`

### Config Breakdown

– **`merge-interval`** — How often the sweep fires, in ticks. `5` = every quarter second. Lower values merge more aggressively at the cost of slightly more CPU overhead. Hard minimum of `1`.
– **`merge-radius`** — The block radius used to cluster nearby orbs. `20.0` casts a wide net, ideal for large farms and high-density XP setups.
– **`debug`** — When enabled, logs every individual merge to console including location, orb count, and total XP. Useful for testing — leave it off in production.

## 📦 Installation

1. Download the latest `.jar` from the releases section
2. Drop it into your `/plugins` folder
3. Restart your server *(not `/reload`)*
4. Edit `plugins/XpMerge/config.yml` to your liking
5. Use `/xpmerge reload` to apply config changes live

## 📜 License

XpMerge is open-source and distributed under the **MIT License**.
Contributions, issues, and pull requests are welcome on the project repository.

*Built for servers that don’t want to choose between XP farms and good performance.*

XPlus PerioTable Modpack (NeoForge)

![banner_neoforge](https://s2.loli.net/2024/09/17/rZa87LUMm4bkvut.png)

XPlus PerioTable Modpack (Neoforge) is a modpack aimed at **improving the vanilla game experience**. This modpack’s ultimate goal is to **improve the vanilla survival experience** as much as possible **without changing the game’s mechanism**, and it includes features like **FPS/MSPT optimization**, compatibility, and **survival utilities**.

**Sinytra Connector** enables XPlus PerioTable Modpack (NeoForge) to **load Fabric mods**, which means **you can use Tweakeroo, Litematica, MiniHUD and other Fabric utility mods** on this **NeoForge** modpack.

**Check out the Fabric version of this modpack: [XPlus PerioTable Modpack (Fabric)](https://modrinth.com/modpack/xplus-2.0-modpack-global)**

XPlus PerioTable Modpack (Fabric) supports Minecraft 1.16.5-latest game version, which provides more utilities and optimization.

### ⭐Ultra Optimization

XPlus PerioTable Modpack (Neoforge) contains many high-performance optimization mods, ensuring efficiency, stability, and smoothness. The mods selected are carefully tested to safe in your world and multiple-player game.

With optimization mods like Sodium, ModernFix, etc., whether you are playing on a modern high-performance PC, or an entry-level device from the previous generation, XPlus PerioTable Modpack can significantly enhance its performance.

![ultra optimization](https://s2.loli.net/2024/05/02/5SVlMdpaDjxtqJb.png)

![XPlus PerioTable en_us neoforge _1_.png](https://s2.loli.net/2024/09/17/BIjnDRFioQUgWvw.png)

### ✨ OptiFine Resourcepack Support

With sodium and Iris Shader’s ultra optimization, XPlus PerioTable Modpack still supports most of OptiFine ResourcePack features, **enabling most of the “OptiFine Only” resourcepack to be loaded correctly.**

### 👓 Game Interface

![](https://s2.loli.net/2024/05/02/z9VEuAOXGKsdiBD.png)

### 🔨 Game utilities and Vanilla toolchain

– **Tweakeroo, Litematica, Minimap, AppleSkin**, provide Tons of **survival utilities**.
– Auto Fish, freeing your hands. Advancement information displaying mod.
– ModernUI includes a powerful text layout engine and powerful Graphical User Interface, which significantly enhances the game’s UI appearance.
![](https://s2.loli.net/2024/05/02/gYh8JGMSwtINLUA.png)

### 🤔FAQ

**Q:** Does the modpack support multiple-player game?

**A:** XPlus PerioTable Modpack supports most of servers, which allows vanilla client to login.

**Q:** What mods does it have?

**A:** Switch to the [Versions](https://modrinth.com/modpack/xplus-periotable-modpack-neoforge/versions) Tab, click on the version and scroll down.

### 🧾 User Agreement and Disclaimer

You unconditionally agree to the [XPlus Series Modpack User Agreement and Disclaimer](https://github.com/Wudji/XPlus-2.0-Modpack/blob/main/LICENSE) by downloading and using this modpack.

[【Simplified Chinese】](https://www.mcmod.cn/modpack/467.html)