簡體   English   中英

discord python bot獲取用戶輸入

[英]discord python bot getting user input

我想在調用 .hm 之后開始一個劊子手游戲,然后用戶可以輸入沒有命令前綴的字符來玩游戲。 我查看了文檔https://discordpy.readthedocs.io/en/latest/api.html#discord.Client.wait_for_message並嘗試模仿用戶輸入檢查但沒有成功。 代碼沒有輸出前的最后一行是:print('Running')

@client.event
async def on_message(message):
   global Hangman, guessed, tries, guessed_letters, channel, word, word_completion, guessed_words

   if message.content.startswith('.hm'):
       Hangman = True
       print("hangman started")
       channel = message.channel
       word = get_word()
       word_completion = "_" * len(word)
       guessed = False
       guessed_letters = []
       guessed_words = []
       tries = 6

       await channel.send("Let's play hangman")
       await channel.send(display_hangman(tries))
       await channel.send(word_completion)

   elif message.content.startswith('.hm quit'):
       Hangman = False

   if Hangman:
       print(str(guessed) + str(tries))
       if not guessed and tries > 0:

           def check(m):
               if any(c.isalpha() for c in m.content) and len(str(m)) == 1:
                   return m.content == message

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

           if len(str(guess)) == 1:
               if guess in guessed_letters:
                   await channel.send("You already guessed the letter", guess)
               elif guess not in word:
                   await channel.send(guess, "is not in the word.")
                   tries -= 1
                   guessed_letters.append(guess)
               else:
                   await channel.send("Good job,", guess, "is in the word!")
                   guessed_letters.append(guess)
                   word_as_list = list(word_completion)
                   indices = [i for i, letter in enumerate(word) if letter == guess]
                   for index in indices:
                       word_as_list[index] = guess
                   word_completion = "".join(word_as_list)
                   if "_" not in word_completion:
                    guessed = True
           elif len(guess) == len(word) and guess.isalpha():
               if guess in guessed_words:
                   await channel.send("You already guessed the word", guess)
               elif guess != word:
                   await channel.send(guess, "is not the word.")
                   tries -= 1
                   guessed_words.append(guess)
               else:
                   guessed = True
                   word_completion = word
           else:
               await channel.send("Not a valid guess.")
           await channel.send(display_hangman(tries))
           await channel.send(word_completion)

       if guessed:
           await channel.send("Congrats, you guessed the word! You win!")
       else:
           await channel.send("Sorry, you ran out of tries. The word was " + word + ". Maybe next time!")

get_word() 只是從另一個 .py 文件中獲取一個隨機單詞。

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

它用於在命令中使用,如果您使用on_message那么您可以添加檢查。 如果

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

現在,它將起作用。 如果需要,您可以添加更多檢查。

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM