VPacketEvents
🟡 Updated this yearPreview

🔍 Analysis
- 👍 0.1% endorsement rate
- 🏆 #2 of 15 library mods in this game by downloads
📋 About This Mod
# VPacketEvents (https://img.shields.io/discord/899740810956910683?color=7289da&label=Discord)](https://discord.gg/5NMMzK5mAn) !(https://img.shields.io/maven-central/v/io.github.4drian3d/vpacketevents-api?style=flat-square) !(https://img.shields.io/github/downloads/4drian3d/VPacketEvents/total?logo=GitHub&style=flat-square) Manage and register packets through Velocity's native events (https://www.bisecthosting.com/partners/custom-banners/6fa909d5-ad2b-42c2-a7ec-1c51f8b6384f.webp)](https://www.bisecthosting.com/4drian3d?r=ModVPacketEvents) ```java class PacketListener { @Subscribe public void onPacketReceive(PacketReceiveEvent event) { final MinecraftPacket packet = event.getPacket(); if (packet instanceof KeyedPlayerCommand commandPacket) { event.setResult(GenericResult.denied()); } } @Subscribe public void onPacketSend(PacketSendEvent event) { // some stuff } public void registerPacket() { // UpdateTeamsPacket registration PacketRegistration.of(UpdateTeamsPacket.class) .direction(Direction.CLIENTBOUND) .packetSupplier(UpdateTeamsPacket::new) .stateRegistry(StateRegistry.PLAY) .mapping(0x47, MINECRAFT_1_13, false) .mapping(0x4B, MINECRAFT_1_14, false) .mapping(0x4C, MINECRAFT_1_15, false) .mapping(0x55, MINECRAFT_1_17, false) .mapping(0x58, MINECRAFT_1_19_1, false) .mapping(0x56, MINECRAFT_1_19_3, false) .mapping(0x5A, MINECRAFT_1_19_4, false) .register(); } } ``` ## Installation - Download VPacketEvents from Modrinth - Drag and drop on your plugins folder - Start the server ## Dev Setup ### Gradle ```kotlin repositories { mavenCentral() } dependencies { compileOnly("io.github.4drian3d:vpacketevents-api:1.1.0") } ``` ## Javadocs https://javadoc.io/doc/io.github.4drian3d/vpacketevents-api
# VPacketEvents
[!(https://img.shields.io/discord/899740810956910683?color=7289da&label=Discord)](https://discord.gg/5NMMzK5mAn)  !(https://img.shields.io/github/downloads/4drian3d/VPacketEvents/total?logo=GitHub&style=flat-square)
Manage and register packets through Velocity's native events
[](https://www.bisecthosting.com/4drian3d?r=ModVPacketEvents)
```java class PacketListener { @Subscribe public void onPacketReceive(PacketReceiveEvent event) { final MinecraftPacket packet = event.getPacket(); if (packet instanceof KeyedPlayerCommand commandPacket) { event.setResult(GenericResult.denied()); } } @Subscribe public void onPacketSend(PacketSendEvent event) { // some stuff }
public void registerPacket() { // UpdateTeamsPacket registration PacketRegistration.of(UpdateTeamsPacket.class) .direction(Direction. CLIENTBOUND) .packetSupplier(UpdateTeamsPacket::new) .stateRegistry(StateRegistry. PLAY) .mapping(0x47, MINECRAFT_1_13, false) .mapping(0x4B, MINECRAFT_1_14, false) .mapping(0x4C, MINECRAFT_1_15, false) .mapping(0x55, MINECRAFT_1_17, false) .mapping(0x58, MINECRAFT_1_19_1, false) .mapping(0x56, MINECRAFT_1_19_3, false) .mapping(0x5A, MINECRAFT_1_19_4, false) .register(); } } ```
## Installation - Download VPacketEvents from Modrinth - Drag and drop on your plugins folder - Start the server
## Dev Setup
```kotlin repositories { mavenCentral() } dependencies { compileOnly("io.github. 4drian3d:vpacketevents-api:1. 1. 0") } ```
## Javadocs https://javadoc.io/doc/io.github. 4drian3d/vpacketevents-api
📊 Mod Details
- Game
- Minecraft Plugins
- Author
- 4drian3d
- Version
- 1.2.0
- Downloads
- 24,095
- Endorsements
- 31
- Category
- library
- Created
- 2/25/2023
- Updated
- 7/31/2026
- Game Versions
- 1.7.2, 1.7.3, 1.7.4, 1.7.5, 1.7.6
- Tags
- library, technology
🔧 How to Install Minecraft Plugins Mods
Download from Modrinth. Use Prism Launcher or drop into your mods folder.
📖 Full step-by-step install guide for Minecraft Plugins →
Visit the official mod page for specific installation instructions for this mod.
🎮 Need cheat codes or console commands? Check ur gaming wiki for Minecraft Plugins commands, item IDs, and more.
❓ Frequently Asked Questions
Which Minecraft Plugins versions does VPacketEvents support?
The author lists 1.7.2, 1.7.3, 1.7.4, 1.7.5, 1.7.6, 1.7.7. Other versions may work but are untested by the author.
What is the latest version of VPacketEvents?
Version 1.2.0, published 2026-07-31 with 24,095 downloads recorded at the source.
Keep browsing — more Minecraft Plugins mods await