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)
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.
@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();
}
// 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`:
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.
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.
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)”
# **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.
**`/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 or report issues in the discussion section.
# **X-Rooms**
### *Advanced BoxPVP room management for your server*
### 📝 **Description**
X-Rooms is a powerful, all-in-one plugin for creating and managing PvP rooms (BoxPVP) on your server. Define combat zones with WorldEdit, set up custom kits, potion effects, rewards, holograms and winner destinations — all from an intuitive in-game GUI. Compatible with Minecraft 1.8.8 to 1.21.x+.
### ✨ **Features**
– **WorldEdit Integration:** Select a region with WorldEdit/FAWE and instantly create a PvP room with `/xr create`.
– **Full GUI Management:** Edit every room property (name, sounds, abilities, equipment, rewards) from a clean visual interface — no config editing needed.
– **10 Configurable Abilities:** Strength, Speed, Resistance, Haste, Regeneration, Fire Resistance, Jump Boost, Saturation, Absorption, and Fly — each with adjustable levels per room.
– **Ability Level Limits:** Set global maximum levels for each ability in `config.yml` to prevent overpowered setups.
– **Custom Equipment & Rewards:** Define kit items players receive on match start and reward items for the winner, all via GUI.
– **Automatic Inventory Management:** Player inventories are backed up and restored automatically. No items lost.
– **Combat Logging Protection:** Configurable punishment for players who disconnect during PvP — keep or delete their backup inventory.
– **Winner Teleport Location:** Set a custom destination for the match winner per room, or let them stay in the room.
– **Configurable End Delay:** A customizable delay after the match ends before players are teleported out. Players are invulnerable and locked in the room during this period.
– **PvP Countdown:** Visual countdown (Titles + Sounds) before combat begins with a configurable timer.
– **Hologram Support:** Automatic holograms showing room name, player count and time remaining. Supports DecentHolograms and HolographicDisplays.
– **Per-Room Permissions:** Enable or disable permission requirements per room. Rooms are public by default.
– **Anti-Escape System:** Players cannot walk or teleport out of a room during active PvP.
– **Barrier Material:** Configure a visible or invisible barrier material during countdowns.
– **Entry Titles & Sounds:** Custom welcome titles, subtitles and sounds when entering a room region.
– **PlaceholderAPI:** Full PAPI integration for holograms and messages. Supports both internal and global placeholders.
– **HEX Color Support:** Use `&#RRGGBB` colors in messages and titles (1.16+). Falls back gracefully on older versions.
– **Multi-Language:** 3 built-in language files (English, Spanish, French) with automatic config updater.
– **Folia Support:** Full compatibility with Folia’s regionized threading — all teleports and tasks use async-safe methods.
– **Config Auto-Updater:** Detects outdated configs and updates them automatically without losing your settings.
Need help? Join our Discord or report issues in the discussion section.
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
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!
**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.