Yamato Gun
Item to be added:
– Bullet
– YG-1 (Gun)
– YG-2
– YG-3
– Sakai Gun
This mod requires Fabric API (Fabric) and MCPitanLib
Adds a simple gun to kill enemies. You can kill mobs more easily.
This mod is in development and currently adds 2 guns and ammo.
Shoot on left-click.
Shooting on right-click will increase attack power.
It can be reloaded with R and cannot be refilled unless ammo is in inventory.
It supports from 1.18 to 1.20.1.
Check REI/JEI for the recipe.
We plan to add more guns in the future.
Yamashita Shimejize 🍄
## Installation
Place the ZIP file in the `shaderpacks` directory.
Do not extract the `shaders` folder from the archive.
## Description
Yamashita Shimejize is a stylized fork of [Miniature Shader](https://modrinth.com/shader/miniature-shader) that pushes the miniature look far beyond pixelated shadows. The pack extends that chunky pixel-art language across lighting, fog, water, weather, reflections, and sky effects while keeping the scene readable and atmospheric.
Features:
– Pixelated shadows, posterized lighting, fog banding, and blocky reflections
– Enhanced two-layer clouds with custom cloud shadows
– Heat haze and emissive glow from lava, fire, torches, and lanterns
– Motion blur, godrays, bloom, chromatic aberration, pixel-art lens flare, pixel-art rain-on-lens droplets with adjustable opacity, and optional depth-aware Depth of Field with adjustable strength, from a subtle miniature softness to a macro-style photo look
– Inkblot-style post-rain puddles with water-like reflections on flat terrain
– Aurora, post-rain rainbow, shooting stars
– Pixel foliage wind with 16×16, 32×32, and 64×64 texture-pack matching modes
—

yaay
YAAY (Yes, Another Addon for Yamipa) is a feature-rich addon for the Yamipa plugin that expands the image-claiming experience with a dedicated /imgui menu flow. Built for Paper and Folia servers, it provides a paginated inventory-based interface that makes browsing and claiming images easier and more intuitive for players.

### Key features
– **Paginated /imgui GUI** for browsing and claiming images
– **Visibility filtering** based on public and private path patterns
– **Claim cooldowns** to control how often players can claim images
– **Hourly limits** to help balance usage on busy servers
– **Anti-exploit protections** for safer image claim handling
– **Language support** with persistent per-player preferences
– **Public language sync API** for integration with other plugins
– **Per-file display overrides** through `display.yml`
– **Item overrides** for more flexible presentation
– **Multiple configuration files** for easy customization
### Configuration files
YAAY includes separate files for customizing:
– GUI behavior
– Claim limits
– Messages and translations
– Display settings
– Player locale options
### Compatibility
– **Java 8+**
– **Paper/Folia compatible**
– **Requires YamipaPlugin**
YAAY is designed to extend Yamipa with a cleaner, more configurable, and more user-friendly image management experience.
y-v
this is a lightweight optimization and quality-of-life modpack, **specifically for the y-v smp**. it includes mods like sodium + ferritecore for performacne, and simple voice chat for quality of like enhancements…
XXL Packets
**[](https://www.curseforge.com/minecraft/mc-mods/xxl-packets “Click here to download on curseforge!. “)**
DISCLAIMER: This is a fork of the original XL Packets mod, This fork extends the packet limit to the Java Integer limit
Fixes https://bugs.mojang.com/browse/MC-185901 by raising the packet size limit from 2MB to 2.14GB (2147483647), so that servers with large datapacks, packets, etc don’t kick the client.
This mod is needed clientside for any connecting clients.

**[](https://bh.lazuline.xyz “Click here for 25% off a minecraft server by BisectHosting. (if you use code ‘Ultimate’). “)**
XTransfer
# XTransfer
## Features
– Developer API
– Whitelist of Player UUID’s
– Token Whitelist via Paper’s Cookie System.
– Customizable and developer-friendly
## Commands
– `/xtransfer` (or your custom Option) – Permission: `transferpacket.command.`
## Permissions
– `xtransfer.command..transfer`
– `xtransfer.command..whitelist`
– `xtransfer.command..whitelist.list`
– `xtransfer.command..whitelist.player`
– `xtransfer.command..whitelist.player.add`
– `xtransfer.command..whitelist.player.remove`
– `xtransfer.command..whitelist.token`
– `xtransfer.command..whitelist.token.add`
– `xtransfer.command..whitelist.token.remove`
## Developer API
**Use our repo to Download the API**
– [https://repo.jespersen.zip/#/releases/dev/xyzjesper/xtransfer](https://repo.jespersen.zip/#/releases/dev/xyzjesper/xtransfer)
### Project Setup
To access the API use the `XTransferAPI` Menthods and interact with the plugin.
__Note: Please add the Plugin TransferPacket as depend! And check the enabled status.__
“`kts
repositories {
mavenCentral()
maven(“https://repo.jespersen.zip/releases”)
}
dependencies {
compileOnly(“zip.jespersen:xtransfer:“)
}
“`
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…
“`
xTeams

# xTeams 👥
**xTeams** is a powerful and flexible team management plugin for Minecraft servers. It allows server administrators to create, manage, and organize teams with advanced features and full PlaceholderAPI support.
### Key Features 💫
– **Team Management** – Create, delete, join, leave, and customize teams.
– **Priority System** – Organize teams with priority levels.
– **Display Names** – Customize team names shown to players.
– **Information Commands** – Quickly view team or player info.
– **Permissions Integration** – Fine-grained control over all plugin commands.
– **Placeholder Support** – Compatible with PlaceholderAPI for dynamic in-game information.
– **User-Friendly** – Intuitive commands and configuration for efficient management.
– **Free and Open Source** – Fully available for download and modification under a permissive license.
### Useful Links 🔗
– [GitHub Repository](https://github.com/33drygo/xTeams) – Access the source code, fast releases, and submit **Issues** for bug reports, feature requests, or questions.
– [Wiki Documentation](https://wiki.drygo.dev/xteams) – Detailed guides, commands, permissions, placeholders, and API usage.
### Support ❓
For technical issues, unexpected behavior, or enhancement suggestions, please submit an **Issue** on the [GitHub repository](https://github.com/33drygo/xTeams/issues). This ensures your feedback is tracked and addressed efficiently.
—
xTeams is engineered to provide a **robust, reliable, and professional team management solution**, ensuring efficient and organized team administration for your Minecraft server.
X-Socials
[](https://www.spigotmc.org/resources/132280/)
[](https://wiki-x-proyects.vercel.app/)
[](https://discord.com/invite/Yb6GsfGWmd)
# X-Socials
### *The ultimate premium bridge between your server and your community*
**Minecraft: 1.8 – 26.1 | Folia Ready | PlaceholderAPI Support**
—
### 🌟 Comprehensive Social Management
X-Socials is a professional and highly optimized solution for managing your server’s social networks. From 1.8 to 1.26.1, provide your players with a **Premium GUI Editor**, **Interactive Links**, **Automatic Rewards**, **Custom Cooldowns**, **Statistics**, and **Rich Text Formatting**. Runs natively on **Folia**, **Paper**, **Purpur**, and **Spigot**.
—
### 🚀 Premium Features
– **🪄 Auto-Config Updater** — Configs stay up-to-date automatically with every new version.
– **🖥️ Professional GUI Editor** — Create, edit and delete social networks from an intuitive in-game interface.
– **💬 Interactive Links** — Clickable URLs with hover tooltips via Bungee Chat API.
– **🎁 Reward System** — Console commands executed on first visit (UUID-based, one-time).
– **⏱️ Custom Cooldowns** — Per-social network cooldown configuration.
– **🔊 Custom Sounds** — Play different sounds for each social network.
– **📺 Custom Titles** — Show titles when players use social commands.
– **📊 Statistics System** — Track total and per-social network usage with placeholders.
– **🎨 Rich Text** — RGB colors, gradients, MiniMessage support.
– **🌍 Universal Compatibility** — Native support for Folia, Paper, Purpur, Spigot, and Bukkit.
– **🌐 Multi-Language** — Bundled support for ES, EN, PT, JA, RU.
– **📡 Broadcast System** — Automatic multi-line announcements.
– **🧩 PlaceholderAPI** — Native expansion with multiple placeholders.
—
### 💻 Commands
| Command | Description | Permission |
| :— | :— | :— |
| `/xs -gui` | Open the premium GUI editor | `xsocials.gui` |
| `/xs reload` | Reload configurations | `xsocials.admin` |
| `/xs list` | List all social networks | `xsocials.use` |
| `/xs update` | Check for updates | `xsocials.admin` |
| `/xs version` | Show plugin version | `xsocials.use` |
**Dynamic Social Commands** — `/discord`, `/youtube`, `/[your-network]`…
—
### 🔐 Permissions
| Permission | Description | Default |
|———–|————-|———|
| `xsocials.*` | Full wildcard access | ❌ |
| `xsocials.admin` | Editor, reload, gui, update | ❌ (OP) |
| `xsocials.gui` | GUI editor access | ❌ (OP) |
| `xsocials.use` | Basic player access | ✅ All players |
—
### 🧩 Placeholders
| Placeholder | Description |
| :— | :— |
| `%xsocials_total_uses%` | Total uses |
| `%xsocials__uses%` | Uses for specific network |
| `%xsocials__enabled%` | Enabled status |
| `%xsocials__link%` | Network link |
| `%xsocials__command%` | Network command |
—
**[Join our Discord for Support & Updates](https://discord.com/invite/Yb6GsfGWmd)**
Xshards
# Xshards Plugin
Xshards is a comprehensive Minecraft plugin designed to manage a shard-based economy system with player transfers, leaderboards, daily rewards, streaks, and multiple earning methods with a customizable shop interface. All data is reliably persisted to the database using batch operations and transaction management.
## Key Features:
– **Shard Economy System**: Players can earn shards through various activities, with configurable earning rates and integration with PlaceholderAPI. Database storage support (SQLite or MySQL) with fixed persistence.
– **Reliable Data Storage**: NEW! Fixed critical shop persistence bug – all shop items, player shards, and streak data now properly save with batch operations and transaction management.
– **Per-Message Control**: Every message in the plugin can now be enabled or disabled, giving server owners full control over chat clutter.
– **Admin Controls**: Robust shard management including give and remove commands.
– **Fully Customizable Shop System**: Supports custom items with lore and model data, adjustable shop sizes, and a price editing system with a purchase confirmation interface. NEW! Customize shop GUI title via config, and per-item display names/lore via `/store editname` and `/store editlore` commands – all stored in database.
– **Shard Transfer System**: Enable true player-to-player economy with GUI confirmation dialogs.
– **Leaderboard GUI & Holograms**: View top players with ranking system, player heads display, and pagination. Full PlaceholderAPI support for hologram leaderboards (e.g., %xshards_top_name_1%).
– **Daily Rewards & Streaks**: Automatic daily bonuses with configurable streak multiplier (Easy/Mid/Hard modes).
– **Advanced AFK System**:
– 5-second countdown with movement detection
– Free movement while in AFK mode
– Persistent location storage
– Automatic return to previous location
– Protection from damage while AFK
– Dedicated world support (recommended)
– Safe teleportation system
– Configurable earning rates
– Seamless server restart handling
## Earning Methods:
– **Playtime Rewards**: Earn shards by staying online.
– **PvP Rewards**: Gain shards from player kills with a cooldown system.
– **AFK Rewards**: Accumulate shards while in AFK mode with countdown system, movement detection, and dedicated world support.
## Commands:
Includes general commands for checking shard balance, opening the shop, and entering/exiting AFK mode, as well as admin commands for managing the shop, player shards (give/remove), and plugin configuration.
## Permissions:
Configurable permissions for basic and admin commands, ensuring a tailored experience for players and server administrators.
## Installation:
Simply download the plugin JAR file, place it in the server’s `plugins` folder, and configure it as needed.
## Database Storage:
XShards now supports both SQLite (default) and MySQL database storage, providing improved data persistence and reliability. The plugin automatically creates the necessary database tables and handles all data operations seamlessly.
For support and further details, please refer to the project’s GitHub repository.