ServerLibraries 图标

ServerLibraries

作者:rebot | 分类:模组

价格:0 墨喵币 下载量:0 点赞:0 版本 1.4
本资源为搬运资源,原资源地址: https://modrinth.com/mod/serverlibraries
资源信息

Minecraft 版本: 1.20.1 1.20.2 1.20.3 1.20.4 1.20.5 1.20.6 1.21 1.21.1

平台: fabric

标签: library optimization

资源介绍

ServerLibraries

Modrinth Shield
Github Shield
Wakatime

Banner Image

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.

Stable Release Shield

dependencies {
    modImplementation "maven.modrinth:kjqxZ07F:<version>"
}

Documentation

Docs and Javadocs can be found on here.

下载太慢?试试 墨喵加速站,支持 Modrinth 和外网直链高速下载! 用的人越多,下载的越快!
下载与版本
评论(0)
登录 后发表评论。

暂无评论,抢个沙发吧~

举报此资源

请登录后举报

🔥 相关推荐
The Entity O' Corruption

价格:0 墨喵币
下载量:0

查看详情
ColaFun

价格:0 墨喵币
下载量:0

查看详情
Everything Korean

价格:0 墨喵币
下载量:0

查看详情
Enhanced Warriors

价格:0 墨喵币
下载量:0

查看详情