ComputerCraft Run Chat命令

时间:2015-02-18 20:43:42

标签: lua command minecraft computercraft

我托管服务器,我想知道:有没有办法通过ComputerCraft运行聊天命令?我希望能够通过ComputerCraft终端运行/tps,然后打印出TPS。非常感谢帮助。

感谢。

2 个答案:

答案 0 :(得分:2)

在新的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都使用),那么就没有“股票”版本。

希望它有所帮助/ Tyrerexus

答案 1 :(得分:0)

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

http://ftbwiki.org/Chat_Box

但是,它不是默认的Computercraft的一部分。它是我认为的Misc Peripherals mod的一部分。