ComputerCraft 运行 聊天命令

ComputerCraft Run Chat Command

我有一个服务器,我想知道:有什么方法可以通过 ComputerCraft 运行 聊天命令吗?我希望能够通过 ComputerCraft 终端 运行 /tps 然后让它打印出 TPS。将不胜感激。

谢谢。

我相信你可以使用这个叫做聊天框的东西。

http://ftbwiki.org/Chat_Box

但是,它不是默认 Computercraft 的一部分。它是 Misc 外围设备的一部分 mod 我相信。

在新的 Computercraft 1.7 中有一种新型计算机,命令计算机。它允许用户以与 shell.run("mkdir", "foo") 相同的方式 运行 命令。只能通过ops获取,只能通过ops直接控制(我们说的是不用rednet之类的)

  • commands.exec(string command) -- Runs and outputs command output in chat.
  • commands.execAsync(string command) -- Quietly runs command without output.

这是维基页面:

Commands (API)

但是如果我们谈论的是 1.6.4(几乎所有 modpacks 使用),则没有 "stock" 版本可以做到这一点。

希望对您有所帮助/泰瑞克斯