不和谐的python机器人获取用户输入

时间:2020-09-08 05:04:54

标签: python user-input discord.py discord.py-rewrite

我想在调用.hm后开始执行子手游戏,然后用户可以输入不带命令前缀的字符来玩游戏。我看了文档https://discordpy.readthedocs.io/en/latest/api.html#discord.Client.wait_for_message 并尝试模仿用户输入检查,但未成功。代码没有输出前的最后一行是:print('Running')

for index, row in df1.iterrows():
    power_val=df1.at[index,'y_true'] 

    for index, row in df2.iterrows():
        power_val2=df2.at[index,'power_out'] 

        if power_val == power_val2:
            df1.at[index,'date_wind'] = df2.at[index,'observation_date']

get_word()只是从另一个.py文件中获得一个随机单词。

1 个答案:

答案 0 :(得分:0)

guess = await client.wait_for('message', check=check)

如果您使用on_message,则用于命令中,则可以添加检查。 如果

def check(m):
  return m.channel = message.channel and m.author == message.author

现在,它将起作用。您可以根据需要添加更多支票。