码迷,mamicode.com
首页 > 其他好文 > 详细

Minecraft Client 教程 #7 添加Command

时间:2020-02-25 20:00:00      阅读:71      评论:0      收藏:0      [点我收藏+]

标签:修改   gui   sign   pack   form   assets   this   adc   ddt   

首发于Enaium的个人博客


一. 添加Command

下载Command解压到你想要的目录

二. 添加到Start

    [...]
    public CommandManager commandManager;
    public void start() {
        [...]
        commandManager = new CommandManager();
        Display.setTitle("Coreium");
        moduleManager.loadMods();
        commandManager.loadCommands();
        [...]
    }
    [...]

三. 在ModuleManager中添加getModule方法

    [...]
    public Module getModule(String name) {
        for (Module m : modules) {
            if (m.getName().equalsIgnoreCase(name))
                return m;
        }
        return null;
    }
    [...]

四. 新建一个PlayerUtils类

package cn.enaium.coreium.utils;

import com.mojang.realmsclient.gui.ChatFormatting;
import net.minecraft.client.Minecraft;

public class PlayerUtils {
    public static void tellPlayer(String text) {
        Minecraft.getMinecraft().ingameGUI.getChatGUI().printChatMessage(new ChatComponentText(
                ChatFormatting.WHITE + "[" + ChatFormatting.RED + "Coreium" + ChatFormatting.WHITE + "] " + text));
    }
}

五. 修复Command中的错误

技术图片

六. 在EntityPlayerSP类中修改sendChatMessage方法

    public void sendChatMessage(String message) {
        if (!Coreium.INSTANCE.commandManager.processCommand(message)) {
            this.sendQueue.addToSendQueue(new C01PacketChatMessage(message));
        }
    }

七. 运行测试

技术图片

Minecraft Client 教程 #7 添加Command

标签:修改   gui   sign   pack   form   assets   this   adc   ddt   

原文地址:https://www.cnblogs.com/Enaium/p/12363265.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!