Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
所以我想为服务器创建一个 GUI,让 ppl 的工作变得更容易。我创建了一个带有按钮的 Gui 以便于使用,因此您不必一直输入命令。该按钮有效,但我没有找到任何作为播放器本身执行命令的函数。我四处搜索,但没有找到解决这个问题的方法。
(顺便说一句。这显然不起作用:(player.sendChatToPlayer("/{any command}");玩家是实体玩家))
player.sendChatToPlayer("/{any command}");
问候延斯
做一个Minecraft.getMinecraft().thePlayer.sendChatMessage("/Command here")
Minecraft.getMinecraft().thePlayer.sendChatMessage("/Command here")
如果您只想执行客户端命令,您可以使用
ClientCommandHandler.instance.executeCommand(Minecraft.getMinecraft().thePlayer, "/your command");