Yeahlows PVP Pack
THIS IS A TEXTURE PACK
Okay you probably already knew that…
This texture pack prioritizes making the most important changes for a pvp pack without making the game look completley different. Older versions of this texture pack include short swords for 1.8, low shields and smaller items.
This pack supports both 1.6.1-1.8.9 for short swords, and 1.21-1.21.10 (Might support older versions)

YAML Resources
Addon for Simple Resources based on
jackson-dataformats-text which adds support for “`.yml“`/“`.yaml“` files
for both minecraft and custom-registered resources.
Simply place this mod in your mods folder (SimpleResources version 2.1.0 or higher required) and all resources can now
be specified in the YAML format.
YAML API

# YAML API
YAML API is a specialized library that simplifies working with YAML configuration files in Bukkit/Spigot/Paper plugins. It provides a robust and consistent interface for loading, saving, updating, and managing YAML-based configurations, along with advanced mapping capabilities for configuration sections and configurable units.
—
## Overview
The **YAML API** package offers a set of tools designed to handle YAML configuration files efficiently. It abstracts the complexity of file I/O and reflection-based configuration parsing, allowing you to focus on using configuration data in your plugin.
Key components include:
– **YAMLFile**: A class to load, save, and update YAML configuration files.
– **ResourceUtils**: Utility methods for handling resources and file operations.
– **Configurable & ConfigurableFile**: Interfaces and classes that provide easy access to the underlying `FileConfiguration`.
– **ConfigurableUnit**: An interface representing a configuration unit, useful for handling permissions or groups in the configuration.
– **Mappable, SectionMappable, UnitMappable & HashMappable**: A set of interfaces and classes for mapping configuration sections and units into Java collections.
– **YAMLUpdater**: A class that updates YAML files by merging default values and preserving comments.
—
## Key Features
– **Unified Configuration Management**:
Provides a consistent API for reading, writing, and updating YAML configuration files.
– **Dynamic Mapping and Conversion**:
Supports mapping configuration sections to custom units and collections, making it easier to work with complex configuration structures.
– **Resource and File Utilities**:
Includes helper classes to simplify file loading, resource saving, and directory management.
– **Comment Preservation and Updates**:
YAMLUpdater handles merging of default configuration values while preserving existing comments.
– **Reflection-Based Parsing**:
Uses reflection to dynamically access configuration sections and values, ensuring compatibility across server versions.
—
## Usage Example
Below is an example demonstrating how to use the YAML API to load, update, and work with configuration files.
### Example: Using ConfigurableFile and YAMLFile
“`java
package com.example.myplugin;
import me.croabeast.file.ConfigurableFile;
import me.croabeast.file.YAMLFile;
import org.bukkit.configuration.file.FileConfiguration;
import org.bukkit.plugin.java.JavaPlugin;
import java.io.IOException;
public class MyPlugin extends JavaPlugin {
private ConfigurableFile config;
@Override
public void onEnable() {
try {
// Create a new configuration file located in the “config” folder
config = new ConfigurableFile(this, “config”, “settings”)
// Optionally, override methods to control updatability or other behaviors
{
@Override
public boolean isUpdatable() {
// Retrieve the “update” key from the configuration to decide if updates are allowed
return get(“update”, false);
}
};
// Save the default configuration if not present
config.saveDefaults();
// Update the configuration file (merges defaults and preserves comments)
config.update();
} catch (IOException e) {
e.printStackTrace();
}
// Access configuration values
String prefix = config.get(“lang-prefix”, “&e MyPlugin »&7”);
getLogger().info(“Language prefix: ” + prefix);
}
}
“`
### Example: Working with Mappable and SectionMappable
“`java
package com.example.myplugin;
import me.croabeast.file.SectionMappable;
import me.croabeast.file.ConfigurableFile;
import org.bukkit.configuration.ConfigurationSection;
import org.bukkit.plugin.java.JavaPlugin;
public class MyPlugin extends JavaPlugin {
private ConfigurableFile config;
@Override
public void onEnable() {
try {
config = new ConfigurableFile(this, “config”, “settings”);
config.saveDefaults();
config.update();
} catch (Exception e) {
e.printStackTrace();
}
// Assume we have a configuration section “advancements”
ConfigurationSection section = config.getConfiguration().getConfigurationSection(“advancements”);
if (section != null) {
// Create a SectionMappable from the configuration section
SectionMappable.Set sectionMap = SectionMappable.asSet(section.getValues(false));
// Process the mapped configuration as needed
getLogger().info(“Loaded advancements: ” + sectionMap);
}
}
}
“`
—
## Maven / Gradle Installation
To include YAML API to the project, add the following repository and dependency to your build configuration. Replace `${version}` with the desired version tag.
### Maven
Add the repository and dependency to your `pom.xml`:
“`xml
croabeast-repo
https://croabeast.github.io/repo/
me.croabeast
YAML-API
${version}
compile
“`
### Gradle
Add the repository and dependency to your `build.gradle`:
“`groovy
repositories {
maven {
url “https://croabeast.github.io/repo/”
}
}
dependencies {
implementation “me.croabeast:YAML-API:${version}”
}
“`
Replace `${version}` with the appropriate module version.
—
## Conclusion
**YAML API** is a powerful library for managing YAML configurations in your Bukkit/Spigot/Paper plugins. It streamlines file operations, mapping, and updates while preserving comments and ensuring compatibility across server versions. Whether you are building simple configuration systems or working with complex, nested settings, YAML API provides the tools you need to efficiently manage your plugin’s configuration.
Happy coding!
— *CroaBeast*
XTransfer

# 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…
“`
xRods

**xRods is a plugin to improve fishing rods for 1.8 PvP servers. It works by enhancing the movement of fishing rods by simply increasing its momentum and also setting a timer to decrease it over-time.**

xRods focuses on combat performance in order to have a smooth combat experience. The rod mechanic does not affect the server and has been tested with 80+ players and can handle many more.
All rod settings are super easy to configure from the plugin’s config and reload with a single command.




Setting up the plugin is super easy; upload it to the plugins
folder, and restart your server. The default configuration is
currently the best setup, and it replicates larger networks.
1. Upload the plugin to your Plugins folder
2. Restart the server
Commands:
– /xrods reload – Reloads the plugin
– Permission: xrods.reload
XPHearts
# **About**
 

XPHearts is a plugin that automatically adjust maximum hearts/health depending on your experience level. You can configure the amount of experience level needed in the configuration file.

### Features
– Automatically adjust the player’s maximum hearts/health when they reach the experience level specified in the configuration.
– Easy to understand config.
– Lightweight.
### Commands
| Command | Description | Permission |
|—————-|————————————-|—————–|
| `/xh` | Get the information about the plugin. | `xh.use` |
| `/xh reload` | Reloads the config file. | `xh.admin` |
| Command aliases| **xh, xpheart, xphearts** |
### Issues and Suggestions
Suggest and report issues on Github.
XP Stacker
🎉 **XPStacker: Let Your Server Breathe!** 🎉
Is your server slowing down because of all the scattered XP orbs? 🐢 XPStacker offers a sleek and effective solution to this problem. This lightweight plugin automatically merges nearby XP orbs into a single one, significantly reducing server load while providing a smoother experience for players.
✨ **Key Features:**
– **Lag Reduction:** 💨 Drastically reduces server lag by merging hundreds of scattered XP orbs into a single orb.
– **Automatic Merging:** 🤝 New XP orbs automatically merge with nearby ones. No player action is required.
– **Configurable Radius:** ⚙️ Easily adjust the merge radius of XP orbs in the config.yml file.
– **Lightweight and Stable:** 🔋 Operates with minimal resource usage and does not affect your server’s other features.
Add XPStacker to your server now and let your players collect XP without any lag! 💎
✨ **Check Out Our Other Plugins!** ✨
If you enjoy the **XPStacker** plugin, don’t forget to check out our other high-quality plugins for your server!
– **BuildByBit**: https://builtbybit.com/creators/fisfiskoray.600970
– **PolyMart:** https://polymart.org/user/57522/fisfiskoray
– **Modrinth:** https://modrinth.com/user/FisFisKoray
XP-like HUD
# **About
XP-like HUD**
**XP-like HUD** (or wixewsky’s XP-like HUD) will change in-game HUD (health, food, armor, etc) to use colored experience-like bars, being very vanilla-friendly.

Originally I made this HUD for Better than Adventure! and published it on Planet Minecraft, but came up porting this to vanilla Minecraft with some improvements and publishing here, on Modrinth.
You can download XP-like HUD for BTA! here!
## Mod Support
This Resource Pack supports 182 mods in total! ≈143 with custom assets and ≈39 tested out*. Currently supported mods:
Expand to see
– AppleSkin by squeek502.
– Amarite by AmyMialee.
– Armor Toughness Bar by pbone64.
– Armor Toughness Bar, Again by paypur.
– Armor Chroma for Fabric by A5b84.
– Armor Chroma by jobicade.
– Farmer’s Delight by vectorwing.
– Brewin’ And Chewin’ by Torty.
– More Heart Types by Oth3r.
– Heartache by spzla.
– Detail Armor Bar by RedLime.
– Detail Armor Bar Reconstructed by Coredex.
– Pick Your Poison by Ladysnake.
– Raised by yurisuika.*
– Colorful Hearts by Terrails.
– Nostalgic Tweaks by rjxkenshin.
– Heart Effects by Doublea06_.
– Victus by glisco.
– Stamina by Insane96.
– PartialHearts by DialingSpoon527.*
– ArmorSkin by IzzyDotExe.
– Extra Armor Info by mrmelon54.
– Insane’s Survival Overhaul (aka IguanaTweaks Reborn) by Insane96.
– Thirst Was Taken by ghen-git and mlus.
– Thirst Bar by 3geE.
– It’s Thirst by capybaro.
– Tough As Nails by Adubbz and Forstride.
– Survive by Stereowalker.
– Simple Hydration by Boid.
– uku’s Armor HUD by uku.*
– Auto HUD by Crendgrim.*
– Homeostatic by wendall911.
– Energy Bar Indicator by Diesse.
– Dehydration by Globox1997.
– Bewitchment by MoriyaShiine and cybercat5555.
– Upgrade Aquatic by Team Abnormals.
– The Aether by The Aether Team.
– Njol’s HUD by Njol.
– Fancy Health Bar by efekos.*
– Armor Hud by SaolGhra.
– SpiffyHUD by Keksuccino.*
– Melancholic Hunger & HUD by antigers.
– Mediumcore by AlexModGuy.
– NutritionZ by xR4YM0ND and Globox1997.
– Health Indicators by AdyTech99.
– Dietary Statistics by Rikka-Kitani.
– Quark by Vazkii.
– Water Source 2 by Koiro.
– Mantle by KnightMiner.
– BedrockIfy by juancarloscp52.*
– Bedrock Hotbar by BizCub.*
– Malum by SammySemicolon.
– Energizer by Gauraaaaaaaa.
– Arthritis by ProstStuff and Bloxedzero.
– Hydration by Exzotic.
– Hydration by BlackVault.
– Armor Points ++ by Cheos and SopsyHallow.
– ParCool! by alRex_U.
– Scaling Health by SilentChaos512.
– Legacy4J by Kyubion Studios.
– Feathers by Elenai.
– Verticality by KrLite.*
– HUDTweaks by burgerindividual.*
– Crim’s Party GUI by Crim and Favouriteless.*
– Hunger Remover by SmushyTaco.*
– Overflowing Bars by Fuzs.
– Mindful Eating by camcam_burger.
– Botania by Vazkii.
– Cracker’s Wither Storm Mod by nonamecrackers2.
– Frostbyte’s Improved Inventory by FrostbyteGames.
– Totem Bar by Yomna.
– I ❤ TFC (I Heart TFC) by alekiponi.
– Leave My Bars Alone by Fuzs.*
– Colorful ui by pustoykishka.*
– Overloaded Armor Bar by Tfarcenim.*
– Crumbling Hearts by KreaDex.*
– Scorchful by TheDeathlyCow.
– Frostiful by TheDeathlyCow.
– Mana Attributes by TheRedBrain.
– Life Fruits by super_okina.
– ArmorHUD by kyh148.
– Vampirism by maxanier and cheaterpaul.
– Would you Rather by EightSidedSquare.
– Chococraft by clienthax and Mrbysco.
– Hudless by ZipeStudio.*
– Withered Hearts by Ramixin.*
– Extended Hotbar by DenWav and unilock.*
– Double Hotbar by sidezbros.*
– RemoveHUD by IzzyDotExe.*
– Better GUI Scaling by yeahimrose.*
– Granular Hunger by Tetro48.
– Blue Skies by Modding Legacy.
– Extra RPG Attributes by cleannrooster.
– RunicLib by Yirmiri and BackupCup.
– Cold Sweat by Mikul.
– Dungeon’s Delight by Yirmiri and Betwixer.
– Additional Saturation by wet_noodles90.
– Advanced UI Scaling by qendolin.*
– Head-down Display Continuation by The_Computerizer.*
– Vehicle Hunger Bar by CrownSheep.*
– Hexed by BackupCup.
– Better Bubbles by IllagerCaptain.
– Vampire’s Delight by GridExpert.
– Meulti’s Backrooms by Meulti and hacone.
– Extended Armor Bars by RebelKeithy.
– Elytra Bar HUD by Fotatata.
– Advanced Armor Bar by Sygikal.
– Saturative by emilahmaboy.*
– More Offhand Slots by TkkynaA.*
– Giacomo’s HUD Overlays Configurator by zacomat.*
– Cyra by Le_Keko.
– Ametrine by nickfluffingfox and Buff_sheep.
– LemonSkin by myxazaur.
– Haema by will_bl.
– Spells & Shields by CAS_ual_TY.
– Oreganized by TeamGalena.
– Fantazia by ArkadiyHimself.
– Secrets of the Void by the_destiny.
– Horseman by mortuusars.*
– Offhand Hotbar by ThePotatoArchivist.*
– Bountiful Fares by Hecco.
– FireHud by LordEnder_Kitty.
– WinWeapons by Lumineade and TheTrueYak.
– Etherology by Faradey and Feytox.
– Fright’s Delight by ChefMooon.
– Metabolism by lilypuree.
– Just Another Witchery Remake by mrsterner and anatevka.
– Toxony by MrFrostyDev.
– SmartHUDReheated by deflatedpickle.*
– CustomHealthHUD by POHH.*
– Ecological Replenishment Station by niannianan and mlus.
– Eternal Starlight by LeoMinecraftModding.
– Eidolon:Repraised by Alexthw46.
– Stellarity by kohara.
– Trailier Tales by FrozenBlock.
– Sweet Calamity by Valent and Valend.
– Better Flight by ArkVeil and rejahtavi.
– Illager Revolution by SangreBK and AstianBK.
– Unusual End by Sweetygamer2 and SashaKYotoz.
– BITE by KevReTV.
– Stamina Attributes by TheRedBrain.
– ExtendedHotbarRebared by deflatedpickle.*
– Eleron by Sindercube.
– Aileron by Lodestar.
– Overhauled Damage by TheRedBrain.
– Combat Roll by ZsoltMolnarrr.
– ArmorWeight by ptayur.
– Goety – The Dark Arts by Polarice3.
– Chai’s Better HUD by Chai.*
– Axiom by Moulberry.*
– Rats by AlexModGuy and GizmoTheMoonPig.
– The Undergarden by quek and GizmoTheMoonPig.
– Galosphere by Orcinus, Ninni and lunarbunten.
– Aylyth by cybercat5555.
– Burnt by pxlbnk.
– JCRAFT: Eyes of Ender by Arna and more.
– L_Ender’s Cataclysm by mcl_ender.
– Unusual Prehistory by peeko322131 and crydigo.
– WitherUtils by klangzwang.
– Sanity: Descent Into Madness by croissantnova.
– StaminaZ by Globox1997.*
– Sprint O’ Meter by PaperScorpio.*
– Goblins & Dungeons by superlord9362 and Weastiann.
– Exotelcraft by TKD_Kedis.
– Euphorics by TalonMinecraft and EightSidedSquare.
– Enigmatic Legacy by Aizistral.
– Legendary Survival Overhaul by krampus_there, armkath and Alex_Hashtag.
– Hardcore Survival by AFrozenRain.
– Nycto by MoriyaShiine and cybercat5555.
– TerraFirmaCraft by eerussianguy, Therighthon, dries007 and alcatrazEscapee.
– Enlightend by lixir and hhumanoid.
– Jaden’s Nether Expansion by ThatJadenXgamer.
– GD656MotionHUD by Minecraft_GD656.*
– Inventorio by RubixDev and LizardOfOz.
– Supplementaries by MehVahdJukaar and Plantkillable.
– Mutant More by AlexandersFunAndGames.
– Confluence: Otherworld by Magic_Team.Jvav.
– Embers Rekindled by RCXcrafter.
– Obscure API by Obscuria.
– Frozify by XZX.
– Defile by RAT and more.
– Slotted Armor HUD by poqbox.*
| * — _mods that already work but were tested for some issues_.
**This count will grow with updates.** If you want to see your favorite mod in this list, DM me on Discord or Telegram (read Contact). Some mods not included in this list can work without issues, but it is not guaranteed. Forks of included mods must work fine, if textures and texture structuring was not affected by the fork. I recommend use mod versions that were released before XP-like HUD’s update since some mods may add more content in the HUD or change it with updates.
Due to the rounded corners, some mods, like hunger removal or HUD flipping mods, may cause some visual problems. You can download sharp or circular corner variant to fix these compatibility issues. Just download additional (supplementary) file by selecting it on download page, since it is not the main version of this Resource Pack. Also you can find an addon for flipped armor bar inside .zip file.
## Variants and Addons
This Resource Pack comes in three variants:
– **Rounded**: The main variant, rounds only the left or right side of bars, depending on its position.
– **Sharp**: No corners of the bars are rounded.
– **Circular**: Every corner of the bars is rounded.
This Resource Pack includes four optional addons inside .zip file:
– **Pre-hunger Addon**. Flips armor and oxygen bars for better experience with hunger removal mods.
– **Numbered Hotbar Addon**. Adds numbers on hotbar for better accessibility.
– **Alpha and Beta Addon**. Extends XP-like HUD’s support to every single Minecraft version.
– **Armor Chroma Addon**. Adds full compatibility for Armor Chroma and Armor Chroma for Fabric.
Due to some limitations with assets count, some XP-like HUD versions on Minecraft 1.20.3 and below can crash your game because it has too much folders inside assets. Delete useless mods, update your game, use version with less content, or use older Resource Pack versions, there is nothing I can do (except stop adding more and more mod support) (Minecraft 1.20.X and below worked fine on my end while I was testing mods ever since I added “CRASH FIX” and “Vanilla” versions inside main .zip btw).
You can leave a comment on Planet Minecraft!
## Contact
If you want contact me, ask a question, help with development, suggest a mod to support, or report a bug, DM me on Discord **@wixewsky** or Telegram **@wixewsky**.
License and Legal
You are **NOT allowed** to:
– Publish this Resource Pack or its modifications on third-party websites and platforms without permission AND original Modrinth link.
– Steal or modify this Resource Pack unless it is for personal use or help with develepment.
– Port and publish this Resource Pack to the Bedrock Edition or BE’s Marketplace.
– Sell this Resource Pack.
– Share this Resource Pack as a file on your media, like Telegram channels.
You are allowed to do anything not included in this list, like including this Resource Pack to your modpacks or use it in your videos or livestreams.
If you are not sure what you are allowed or disallowed to do, feel free to DM me on Discord or Telegram.
This Resource Pack officially published **ONLY** on Modrinth and Planet Minecraft, if you downloaded it from somewhere else, you have been scammed and you shouldn’t use these websites ever again. **They deprive authors of revenue, overtake traffic and adding virues in their reuploads**.
This list can be changed at any moment. LICENSE.txt can be different from this section.
A stable and bug-free experience is not guaranteed, especially with old Minecraft versions or a modded client. **In my experience**, vanilla and modded Minecraft 1.20.1, 1.21.1 and 1.21.8 worked perfectly fine. Modded Minecraft 1.21.8 with a few supported mods worked fine as well.
Xmas meowl Totem of Undying
– ENG: **Meowl** (in Russian, “Myaowl” or “Myaul”) is a creature with a cat’s head and an owl’s body, sitting on a branch. Initially, it was a fun photoshop creation.
The first images of the cat owl appeared in 2013 on the Chinese platform Weibo. However, it gained popularity only in October 2025 on TikTok
– RU: **Meowl** (в рунете — «Мяовл» или «Мяул») — существо с кошачьей головой и телом совы, сидящее на ветке. Изначально — это весёлое творение фотошопа.
Первые изображения с котосовой появились в 2013 году на китайской платформе Weibo. Но популярность они обрели только в октябре 2025 года в TikTok
Meowl Totem
ALL RESOURCEPACKS COLLECTION: MEMES + STREAMERS
xLogin
# 🛡️ xLogin – Simple, Lightweight & Powerful Authentication

**xLogin** is an all-in-one authentication system designed for servers that want maximum security without the bloat. Forget about complex external database setups; xLogin is optimized to work locally, fast, and secure out of the box, whether you run a standalone server or a massive Proxy network.
> Note: /premium is only available for networks and proxies. Compatible with Bungeecord, Velocity, Waterfall, and others.
How do I activate proxy mode?
Go to config.yml and enable proxy mode, then download and install the add-on for your proxy, and you’re all set!
—
## 🚀 Key Features
* **🌐 Smart Network & Proxy Ready:** Fully compatible with **BungeeCord** and **Velocity**. Features auto-detection to enable secure UUID verification and includes an automatic Auth-Lobby redirect system to send players to a specific server upon successful login.
* **📦 Local-First Storage & Backups:** High-performance, thread-safe H2 database system (`data.mv.db`). No need for MySQL to get professional network-level performance. Easily create instant database backups via in-game commands!
* **💎 Smart Premium System:** Using an official Minecraft account? Players can use `/premium` to enable auto-login. The plugin uses real Mojang validation (via your Proxy) to ensure nobody can steal a premium identity.
* **🧠 Industrial-Grade Security:**
* **BCrypt Hashing:** Passwords are encrypted with the industry standard, making them virtually impossible to crack.
* **Premium Name Impersonation Protection:** Automatically kicks non-premium players trying to join with the username of an official purchased account.
* **Anti-Bot Captcha:** A visual verification system during registration to stop bot attacks in their tracks.
* **Total Protection:** Blindness, immobilization, and block/damage protection until the user is authenticated.
* **Asynchronous Logging:** Keeps a silent, detailed history of logins, registrations, and admin actions.
* **🖼️ Ultimate Admin Control:** Manage everything from the console or in-game. Features an intuitive visual GUI menu with player heads, plus a massive arsenal of commands to purge inactive users, force logins, change UUIDs, and more.
* **📱 Bedrock Support (Geyser):** Fully compatible with console and mobile players via Floodgate integration. Bedrock players authenticated via Xbox Live can automatically bypass the login screen (100% configurable).
* **⚡ Performance Optimized:** Fully asynchronous database operations ensure your TPS stays at 20.0, no matter how many players are joining.
—
## 🛠️ Commands & Permissions
### Player Commands
| Command | Description | Permission |
| :— | :— | :— |
| `/login ` | Log in to your account. | None |
| `/register ` | Create a new account with captcha. | None |
| `/premium [confirm]` | Toggle Auto-login (Premium Mode). | None |
| `/changepassword ` | Securely change your current password. | None |
| `/captcha ` | Solve the registration captcha. | None |
### Admin Commands (`xlogin.admin`)
| Command | Description |
| :--- | :--- |
| `/xlogin gui` | Open the visual administration menu. |
| `/xlogin backup` | Create an instant backup of the database. |
| `/xlogin purge ` | Delete all accounts inactive for ``. |
| `/xlogin verify ` | View a player's UUID, IP, Premium status, & last login. |
| `/xlogin forcelogin ` | Forcefully log a player into the server. |
| `/xlogin setspawn` / `spawn` | Set or teleport to the login spawn location. |
| `/xlogin changepass ` | Forcefully change a player's password. |
| `/xlogin changeuuid ` | Manually update a player's registered UUID. |
| `/xlogin unpremium ` | Remove the premium auto-login status from an account. |
| `/xlogin unban ` | Remove an IP from the registration blacklist. |
| `/xlogin unregister ` | Completely delete a player's account. |
| `/xlogin reload` | Reload the plugin configuration and messages. |
---
## ⚙️ Simplified Configuration
We've stripped the config down to the essentials so you don't waste time, while giving you absolute control over your network.
### `config.yml`
```yaml
# -------------------------------------------------------
# __ _
# __ __ / / ___ __ _(_)_ __
# / // / / _ / _` | | '_ Made by xPlugins
# > /__| (_) | (_| | | | | | Fork: Paper
# /_/_____/___/ __, |_|_| |_|
# |___/ Release v1.0.6
#
# Wiki: https://xplugins.es/xlogin
# 24/7 Support: https://discord.gg/AH5k9YE78b
# -------------------------------------------------------
settings:
# The default language (es, en). It will load messages_es.yml or messages_en.yml
language: "en"
protection:
# Block everything before logging in (movement, chat, etc.)
general-protection: true
# Visual effects upon joining the server
effects:
blindness: true
security:
# Auto-register premium users detected by the proxy (Requires BungeeCord/Velocity)
auto-premium-registration: false
# Prevents Non-Premium players from using premium account names (Requires BungeeCord/Velocity)
prevent-premium-name-impersonation: false
# Allowed commands BEFORE logging in
allowed-commands-before-login:
- "/help"
- "/rules"
- "/discord"
passwords:
size:
min: 6
max: 20
# ___ _ _
# / __ ___ __| |_ __ ___ ___| | __
# /__/// _ / _` | '__/ _ / __| |/ /
# / / __/ (_| | | | (_) | (__| <
# _____/___|__,_|_| ___/ ___|_|_
geyser-support:
# If true, Bedrock players (Floodgate) join without needing to login.
auto-login-bedrock: true
# __ _ _
# / ___| |___ _____ _ __| | __
# / / / _ __ / / / _ | '__| |/ /
# / / / __/ |_ V V / (_) | | | <
# _ / ___|__| _/_/ ___/|_| |_|_
proxy-redirect:
# Send the player to the target server after a successful login (ideal for Auth&Lobby)
enabled: false
target-server: "Lobby"
captcha:
enabled: true
timeout-seconds: 120
ui:
titles:
before-login:
title: '&#A9DFBFWelcome!'
subtitle: '&fUse /login '
before-register:
title: 'FAD7A0Register!'
subtitle: '&fUse /register '
after-login:
title: 'A9DFBFSuccess!'
subtitle: '&fEnjoy your stay'
incorrect-password:
title: 'F1948AIncorrect Password!'
subtitle: '&7Please try again'
logging:
enabled: true
log-successful-logins: true
log-registrations: true
log-failed-attempts: true
log-admin-actions: true