因此,我目前正在使用python 3.5中的discord机器人,并使用discord.py库,我的问题是,是否有一种方法可以在调用命令本身后继续读取行(我想要的示例确实是在下面的代码中),它将用于级别和阶段等更复杂的游戏(感谢所有阅读此书的人,不知道这是否可能)。
async def game(mes):
#i want the response to this to be an input
input = await client.say("what would you like to play today)
if input == 'rock paper scissors':
#rock paper scissors stuff
if input == 'russian roulette':
#russian roulette stuff
else:
await client.say("please input an option")