Server Events
ModA Fabric mod enhancing server-side event handling with a Bukkit-inspired system, extending and encapsulating Fabric API events.
Type
Mod
Modrinth Downloads
2,369
Modrinth ID
hykUQTdx
Last Updated
Jun 4, 2026
Description
Server Events
Server Events is a support library for Fabric server development, designed to enhance the Fabric API's limited event system. It offers a Bukkit-like event framework while adhering to Fabric's minimalist philosophy.
The mod doesn't wrap CommandRegistrationCallback and DynamicRegistrySetupCallback from Fabric API.
Installation
- Import this package to your project.
- Add serverevents to your mod depends.
Since 2.0.0, the groupId has been changed from icu.suc to icu.suc.mc.
Usage
ServerEvents provides a simple API for registering and processing events.
Here is an example of a player modifying broadcast information:
import net.fabricmc.api.ModInitializer; import net.minecraft.network.chat.Component; import net.minecraft.world.item.Items; import icu.suc.mc.serverevents.ServerEvents; public class ExampleMod implements ModInitializer { @Override public void onInitialize() { ServerEvents.Player.MODIFY_JOIN_MESSAGE.register((player, message) -> Component.literal("[+] ").append(player.getName())); } }Since 2.2.0:
import icu.suc.mc.serverevents.Listener; import icu.suc.mc.serverevents.ServerEvents; import net.fabricmc.api.ModInitializer; import net.fabricmc.fabric.api.event.Event; import net.minecraft.network.chat.Component; import net.minecraft.server.level.ServerPlayer; import org.jetbrains.annotations.NotNull; public class ExampleMod implements ModInitializer, Listener, ServerEvents.Player.Join.ModifyMessage { @Override public void onInitialize() { ServerEvents.register(this); } @Override public @NotNull Event<?>[] events() { return new Event[]{ServerEvents.Player.Join.MODIFY_MESSAGE}; } @Override public @NotNull Component modifyJoinMessage(@NotNull ServerPlayer player, @NotNull Component message) { return Component.literal("[+] ").append(player.getName()); } }License
This project is licensed under the MIT License © 2025 sucj.
Compatibility
Mod Loaders
Game Versions
Similar Mods
MenuFPSUnlocker
This mod raises the frame rate of the main menu from 30fps or 60fps to 120fps
VillagerPickup
A mod that allows you to pick up villagers and place them somewhere else!
Iron Smelters
Adds faster Furnaces, Blast Furnaces and Smokers!
Airport Lighting
Added airport lighting assets with numerous variations
Deeper Depths
Trial Chambers, Copper and Geodes backported to 1.12
Deeper Oceans: Refabricated
Continuation of Apollo's Deeper Oceans mod for Fabric. Oceans 3x as deep as vanilla, with adjusted Ocean Monument placem...