discord.py-机器人不响应多个连接的消息

时间:2018-10-27 23:11:06

标签: python discord.py

我正在尝试使不和谐的机器人用Python讲笑话。但是,特别是对于Knock Knock笑话,我无法让机器人在用户回复“谁在那儿”后做出响应。 你能帮我吗?

@bot.command(pass_context=True)
async def joke(ctx, type):

    if type.lower() == "ym":
        yo_momma = ("fat, I took a picture of her last Christmas and it's still printing.",
               "fat when she got on the scale it said, 'I need your weight not your phone number.'",
               "fat and old when God said, 'Let there be light', he asked your mother to move out of the way.",
               "fat she doesn't need the internet, because she's already world wide.",
               "fat, when she sat on an iPod, she made the iPad!",
               "fat she walked past the TV and I missed 3 episodes.",
               "ugly when she tried to join an ugly contest they said, 'Sorry, no professionals.'",
               "ugly she made One Direction go another direction.",
               "ugly Fix-It Felix said, 'I can\'t fix it.'"
               "stupid when an intruder broke into her house, she ran downstairs, dialed 9-1-1 on the microwave, and couldn't find the 'CALL' button.",
               "stupid she stuck a battery up her ass and said, 'I GOT THE POWER!'",
               "stupid that she sat on the TV to watch the couch.")
        await bot.say("Yo momma so {}".format(random.choice(yo_momma)))

    elif type.lower() == "kk":
        await bot.send_message(ctx.message.channel, "Knock Knock.")

        if "who's there" in ctx.message.content.lower():
            kk = [["A little old lady", "All this time, I did not know you could yodel."],
              ["Cow says", "Cow says mooooo!"],
              ["Etch", "Bless you, friend."],
              ["Robin", "Now hand over the cash."],
              ["Cash", "No thanks, I'll have some peanuts."],
              ["Mustache", "I mustache you a question, but I'll shave it for later."],
              ["Tank", "You're welcome."],
              ["Candice", "Candice door open, or what?"],
              ["Boo", "No need to cry, it's only a joke."],
              ["Howl", "Howl you know unless you open this door?"],
              ["Iran", "Iran all the way here. Let me in already!"]]

        joke_num = random.randint(0, 9)
        chosen_joke = [kk[joke_num][0], kk[joke_num][1]]
        await bot.say(chosen_joke[0])

        if "{} who".format(chosen_joke[0]) in ctx.message.content.lower():
            await bot.say(chosen_joke[1])

1 个答案:

答案 0 :(得分:1)

您可以将wait_for_messageui <- fluidPage( sidebarPanel( fileInput("file1", "Import", accept = c(".xlsx")), uiOutput("selectCAT"), actionButton("goBu", "Click!")), mainPanel("Display Results" tableOutput("acBTTON") )) server <- function(input, output, session) { output$selectCAT <- renderUI({ req(input$file1) ct <- read_excel(input$file1$datapath, sheet = "abc") empl <- read_excel(input$file2$datapath, sheet = "emp") selectInput(inputId = "showp", label = "Selection", empl)}) } pf <- eventReactive(input$goBu,{ s1 <- sqldf("SELECT * FROM ct") }) output$acBTTON <- renderTable({ pf()}) 函数一起使用,以等待来自某些具有特定内容的用户的消息:

check