python-valve rcon minecraft'ConnectionRefusedError:[Errno 111] Connection refused'

时间:2017-12-08 21:40:03

标签: python python-3.x minecraft source-engine

我正在尝试使用python-valve连接到我自己的网络上托管的Minecraft服务器上的RCON。我的代码如下(请记住,它只能在我的网络上访问,因此我与localhost的连接):

noinst_

根据文档,该代码应该可以正常工作但它返回:

import valve.rcon
def rconsendCMD():
    address = ("127.0.0.1", 25575)
    valve.rcon.execute(address,"jeff","time set night")

可以找到'valve.rcon.execute()'的文档here

1 个答案:

答案 0 :(得分:0)

我发现了问题。我正在从我执行python代码的单独机器上托管服务器。我试图发送它连接到localhost而不是我的网络中的私人地址。找到答案here