
ServerLibraries
A Library made to ease serverside mod creation
- Загрузки
- 682
- Подписчики
- 1
- Обновлён
- 26 августа 2024 г.
- Лицензия
- GPL-2.0-or-later
Опубликован 29 апреля 2024 г.
ServerLibraries

ServerLibraries is a library for Minecraft server-side Fabric mod development, aiming to simplify the development experience and make it feel like making a Bukkit-based plugin.
Features
- Simplified event handling with hundreds of mapped events.
- Easy sync/async scheduling.
Example Usage
Here's an example of how to use ServerLibraries to handle events:
// Listener class that handles server events
public class ExampleListener implements Listener {
@EventHandler
public void onPlayerChatEvent(@NotNull PlayerChatEvent event) {
event.setCancelled(true);
ServerPlayerEntity player = event.getPlayer();
String message = event.getMessage();
// Format the message to display the player's name followed by the message
String formattedMessage = player.getName().getString() + " > " + message;
// Broadcast the formatted message to all players and log it in the console
msg.broadcast(formattedMessage);
msg.log(formattedMessage);
}
@EventHandler
public void onPlayerMoveEvent(@NotNull PlayerMoveEvent event) {
// Get the player and their position
ServerPlayerEntity player = event.getPlayer();
BlockPos pos = player.getBlockPos();
// Format and send the coordinates as an action bar message
String message = "X: " + pos.getX() + " Y: " + pos.getY() + " Z: " + pos.getZ();
msg.sendActionBar(player, message);
}
}
// Main Fabric mod class
public class ExampleMod implements ModInitializer {
@Override
public void onInitialize() {
EventsRegistry.registerListener(new ExampleListener());
}
}
Installation
To include ServerLibraries in your project, add the following to your build.gradle file.
Maven Repository
repositories {
exclusiveContent {
forRepository {
maven {
name = "Modrinth"
url = "https://api.modrinth.com/maven"
}
}
filter {
includeGroup "maven.modrinth"
}
}
}
Dependency
Add the following dependency. Replace <version> with the version you want to use. You can find available versions here or use the version below for the latest stable release.
dependencies {
modImplementation "maven.modrinth:kjqxZ07F:<version>"
}
Documentation
Docs and Javadocs can be found on here.
Центр версий
5 версийЧенджлог
1.4Бета1.20.6, 1.21, 1.21.1 · 26 августа 2024 г.
Improved the Event API and added example usages
1.3Релиз1.20.5, 1.20.6, 1.21 · 17 июля 2024 г.
Updated to 1.21, added Bossbars, added a ping and tps command, added servermetrics and their factory in the api and a bunch of other stuff.
1.2Альфа1.20.6 · 9 июля 2024 г.
Added the cancellable PlayerMoveEvent
1.1Альфа1.20.6 · 9 июля 2024 г.
Added some events, server metrics and bossbar functionality
Комментарии
Загружаем…