WolfPound
WolfPound – Adopt a Wolf Today!

Current Version: v1.0.4
Features:
– Lets users buy wolves (or you could make them free )
– Integrates with iConomy, BOSEconomy, RealEconomy, Essentials Built in Economy, and Permissions! (ToDoo: Integrate Vault)
– Spawn wolves as neutral, friendly or REALLY ANGRY
– Spawn multiple wolves with one command! (Disclaimer: I am not responsible for the massive amount of wolves you spawn, or if wolves start getting in fights)
– Limit the number of wolves you can spawn with the command
– Multi-World Support! All options are now configurable PER WORLD!
[documentation](https://www.spigotmc.org/resources/wolfpound.119248/field?field=documentation)
Wild Wolves
Make tamed wolves use the wild wolf texture. Download the “No Collars” version to remove collars on tamed dogs as well!
Supports all Minecraft versions from Beta 1.4 (when wolves were added!)
Includes all wolf variants from 1.20.5.
Compatible with Fresh Animations!
Must be loaded _above_ Fresh Animations resource pack.
**Note:** For versions before 1.6.1, this pack must be placed in the texturepacks folder, rather than the resourcepacks folder.
**Another Note:** In 1.8, the default colour of collars was changed to orange. This was reverted in 1.9. This is _not_ accounted for in this resource pack.
White Enderman
Makes Enderman White
What Language Is That?
### Consider joining the Discord server for updates!
**”What Language Is That?”** fixes one of Minecraft’s most confusing features by **converting the Standard Galactic Alphabet into readable English**.
The mysterious symbols used in enchanting tables are fully translated, so you can finally understand what you’re looking at instead of guessing like a wizard who skipped class.
This pack works directly on the Enchanting Table interface, making enchantment text clear and easy to read while keeping the original vanilla style intact.
No gameplay changes, no mods required — just a simple, clean upgrade that makes Minecraft make sense.
✔ Works with Enchanting Tables
✔ Translates Standard Galactic Alphabet
✔ Keeps vanilla style
✔ No mods required
Wayland Fix
*Note: if you do not use Linux, this mod is not for you*
“[Wayland](https://wayland.freedesktop.org/) is a replacement for the X11 window system protocol and architecture with the aim to be easier to develop, extend, and maintain.”
With the increasing popularity of Wayland compositors on Linux, including several desktop environments switching to Wayland by default, application support for Wayland makes the Linux desktop experience all the better.
While Minecraft does run under XWayland, features like per-monitor HiDPI scaling do not function. If you experience problems related to XWayland, this mod is for you.
# Requirements
A Wayland-supported system GLFW installation and the following JVM flag is required:
“`
-Dorg.lwjgl.glfw.libname=/usr/lib/libglfw.so
“`
To install the proper GLFW on Arch Linux, run:
“`sh
sudo pacman -S glfw-wayland
“`
# Motivation
I wrote this mod after using [Sway WM](https://swaywm.org/) with a HiDPI display. All XWayland applications look blurry, so it is not an option. The community solution was to [patch the system glfw](https://github.com/Admicos/minecraft-wayland), but I’d rather not do that.
# Bug Reports
If you continue to experience problems with Minecraft on Wayland after installing this mod, file a bug report [on the issue tracker](https://github.com/StackDoubleFlow/MCWaylandFix/issues) if it hasn’t already been reported.
Version Numbering Converter
# VNC (Version Numbering Converter)
Version Numbering Converter (VNC) is a Java library for working with Minecraft versions across both numbering families:
– Classic Java-style versions such as `1.20.6` and `1.21.11`
– Year-based drop versions such as `24.1`, `25.4`, and `26.1.1`
It covers two use cases:
– Pure version modeling and conversion through `MinecraftVersion`, `VersionScheme`, and `MappingTable`
– Bukkit/Paper runtime detection through `VNC`, including server constants, player version resolution, protocol lookup, and version comparisons
## Highlights
– Exact historic mappings from `1.0.0` through `1.21.11`
– Drop support for current lines such as `25.4`, `26.1`, and `26.1.1`
– Protocol lookup for exact releases and published snapshots
– A runtime bridge for Bukkit/Paper with legacy-compatible constants like `SERVER_VERSION`
– String-based comparisons that correctly handle patch-sensitive boundaries like `1.20.5`
## Core API
### 1. Parse and inspect versions
“`java
MinecraftVersion classic = MinecraftVersion.parse(“1.21.11”);
MinecraftVersion drop = MinecraftVersion.parse(“26.1”);
classic.isClassic(); // true
classic.getVersion(); // “1.21.11”
classic.getProtocol(); // 774
classic.supportsHex(); // true
drop.isClassic(); // false
drop.getVersion(); // “26.1”
drop.getProtocol(); // 775
“`
### 2. Convert between numbering schemes
“`java
String dropName = VersionScheme.MOJANG.toDrop(“1.20.3”); // “23.2”
String classicName = VersionScheme.MOJANG.toClassic(“25.2.2”); // “1.21.8”
String customClassic = VersionScheme.CROA_CUSTOM.toClassic(“25.4”); // “1.22”
String customDrop = VersionScheme.CROA_CUSTOM.toDrop(“1.22.1”); // “25.4.1”
“`
### 3. Create your own mapping scheme
“`java
MappingTable table = new MappingTable()
.registerLine(30, 1, “1.50”, “1.50.1”)
.registerMapping(“1.51”, “30.2”);
VersionScheme scheme = VersionScheme.mapped(table);
scheme.toDrop(“1.50.1”); // “30.1.1”
scheme.toClassic(“30.2”); // “1.51”
“`
### 4. Resolve protocols
“`java
Integer protocol = MinecraftVersion.protocolForIdentifier(“1.20.6”); // 766
Integer snapshot = MinecraftVersion.protocolForIdentifier(“26.2-snapshot-3”);
MinecraftVersion newest = MinecraftVersion.fromProtocol(754); // 1.16.5
List all = MinecraftVersion.versionsForProtocol(767); // 1.21, 1.21.1
“`
## Bukkit / Paper runtime API
`VNC` exposes a runtime snapshot of the current server:
“`java
MinecraftVersion server = VNC.SERVER_MINECRAFT_VERSION;
String classic = VNC.SERVER_CLASSIC_VERSION;
String drop = VNC.SERVER_DROP_VERSION;
int protocol = VNC.SERVER_PROTOCOL;
double legacy = VNC.SERVER_VERSION;
boolean modernRegistry = VNC.isAtLeast(“1.20.5”);
boolean legacyCommands = VNC.isBefore(“1.13”);
boolean inRange = VNC.isBetween(“1.19”, “1.21.11”);
“`
Player version resolution uses ViaVersion when present and falls back to the server version otherwise:
“`java
MinecraftVersion playerVersion = VNC.player(player);
if (playerVersion.supportsHex()) {
// Safe to send RGB formatting to this player
}
“`
## Why use the string helpers?
`SERVER_VERSION` is still available for compatibility with older plugins, but patch-sensitive checks should prefer:
“`java
VNC.isAtLeast(“1.20.5”);
VNC.isBefore(“1.21.9”);
VNC.compare(VNC.SERVER_MINECRAFT_VERSION, “26.1”);
“`
That avoids the common limitations of comparing versions only as `double`.
## Requirements
– Java 8+
– For the Bukkit runtime helpers: a Bukkit/Paper-compatible runtime on the classpath
– Optional: ViaVersion, if you want `VNC.player(…)` to resolve the effective client version instead of the server version
Vitelist

[My Website](https://pandadev.net)

***

Vitelist is a simple, but useful Whitelist plugin for Velocity based on UUIDs, so it does not rely on player names.
***

– Vitelist runs on [Velocity](https://papermc.io/software/velocity).
***

If you have any issues or find a bug, please remember to report it
here [GitHub](https://github.com/0PandaDEV/Vitelist/issues)
***
Check out my other projects on [my profile](https://modrinth.com/user/PandaDEV)
Villagers Speak

# What does this resource pack do?
This resource pack changes the villager “Hrrrrmmm” sounds to be more verbal ones, **such as:**
– _”**Get outa my village steve I wont tell you again**”_
– _”**Get away from me stinky**”_
– _”**Ahhh, why’d you kill me**”_
– **And more!**
# Additional information,
The villagers **do not swear** or say any **_rude_** language and all the **voices still sound like villagers** and not humans.
# Credits
We (**_ELTE Studios_**), **developed** and **made** this pack using the **Butterium** modpack for the **best optimisation, smoothness and QOL**, you can **download it on modrinth [here](https://modrinth.com/modpack/butterium)**.
# Villager house

VHS Shader
**English version:**
VHS Shader — Play Minecraft Like It’s on an Old VHS Tape 📼
Transforms your Minecraft into a retro VHS camera recording. RGB color split, tape wobble, scanlines, random tracking glitches, color bleed, warm yellow tint, heavy grain and head switching artifact at the bottom — everything you’d expect from a dusty old VHS tape found in the attic.
**Features:**
– RGB color split like deteriorating tape
– Horizontal tape wobble distortion
– CRT scanlines
– Random tracking glitch lines
– Horizontal color bleed
– Warm yellow-green VHS tint
– Heavy 24fps film grain
– Head switching artifact at the bottom of the screen
– Brightness flicker like power fluctuation
– Camera lens vignette
Compatible with Minecraft 1.0–1.21.x via OptiFine or Iris.
Subscribe so you don’t miss any updates! If you have questions or need support, join our Discord.
—
**Русская версия:**
VHS Shader — Играй в Майнкрафт как на старой VHS кассете 📼
Превращает твой Майнкрафт в запись на ретро VHS камеру. Расползание RGB каналов, дрожание ленты, сканлайны, случайные глитчи трекинга, размытие цветов, тёплый жёлтый тинт, тяжёлое зерно и артефакт переключения головки внизу экрана — всё как на пыльной кассете найденной на чердаке.
**Возможности:**
– Расползание RGB каналов как на изношенной ленте
– Горизонтальное дрожание ленты
– CRT сканлайны
– Случайные полосы трекинга
– Горизонтальное размытие цветов
– Тёплый жёлто-зелёный VHS тинт
– Тяжёлое зерно на 24 fps
– Артефакт переключения головки внизу экрана
– Мигание яркости как перепады питания
– Виньетка объектива камеры
Совместимо с Minecraft 1.0–1.21.x через OptiFine или Iris.
Подписывайтесь, чтобы не пропустить обновления! Если есть вопросы — заходите в Discord за поддержкой.
VelocityUtils

VelocityUtils is a plugin designed for Velocity proxy servers that adds essential utilities for both players and server administrators. It aims to simplify network management with useful, configurable, and easy-to-use features.

[](https://rexi666-plugins.gitbook.io/rexi666/velocityutils/installation)

[]([https://rexi666-plugins.gitbook.io/rexi666](https://rexi666-plugins.gitbook.io/rexi666/velocityutils/commands-and-permissions))
| [](https://rexi666-plugins.gitbook.io/rexi666) | [](https://discord.com/invite/a3zkKtrjTr) |
|—|—|