所以我想为服务器创建一个GUI,使ppl更容易。我创建了一个带按钮的Gui,方便使用,因此您无需一直输入命令。该按钮有效但我没有找到任何执行命令的功能作为播放器本身。我用Google搜索,但没有找到解决此问题的方法。
(顺便说一下,这显然不起作用:player.sendChatToPlayer("/{any command}");
(播放器是EntityPlayer))
问候Jens
答案 0 :(得分:3)
执行Minecraft.getMinecraft().thePlayer.sendChatMessage("/Command here")
答案 1 :(得分:1)
如果您想执行仅客户端命令,可以使用
ClientCommandHandler.instance.executeCommand(Minecraft.getMinecraft().thePlayer, "/your command");