如何使用Discord.py读取多行?

时间:2019-03-31 18:56:32

标签: python python-3.5 discord discord.py

因此,我目前正在使用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")

0 个答案:

没有答案