I’m very new to discord.py and I want to create a Rock, Paper, Scissors command. I got it working, but I want to do it using user input.
I tried using the await bot.wait_for
code, but for some reason it doesn’t work. I’m not getting any errors, but it just doesn’t work and I can’t figure out why. Here’s my code:
JavaScript
x
40
40
1
from discord.ext.commands import Bot
2
import random
3
4
bot = Bot(".")
5
6
@bot.command(help="Play with .rps [your choice]")
7
async def rps(ctx):
8
rpsGame = ['rock', 'paper', 'scissors']
9
await ctx.send(f"Rock, paper, or scissors? Choose wisely...")
10
11
def check(msg):
12
return msg.author == ctx.author and msg.channel == ctx.channel and msg.content.lower() in rpsGame
13
14
user_choice = await bot.wait_for('message', check=check)
15
16
comp_choice = random.choice(rpsGame)
17
if user_choice == 'rock':
18
if comp_choice == 'rock':
19
await ctx.send(f'Well, that was weird. We tied.nYour choice: {user_choice}nMy choice: {comp_choice}')
20
elif comp_choice == 'paper':
21
await ctx.send(f'Nice try, but I won that time!!nYour choice: {user_choice}nMy choice: {comp_choice}')
22
elif comp_choice == 'scissors':
23
await ctx.send(f"Aw, you beat me. It won't happen again!nYour choice: {user_choice}nMy choice: {comp_choice}")
24
25
elif user_choice == 'paper':
26
if comp_choice == 'rock':
27
await ctx.send(f'The pen beats the sword? More like the paper beats the rock!!nYour choice: {user_choice}nMy choice: {comp_choice}')
28
elif comp_choice == 'paper':
29
await ctx.send(f'Oh, wacky. We just tied. I call a rematch!!nYour choice: {user_choice}nMy choice: {comp_choice}')
30
elif comp_choice == 'scissors':
31
await ctx.send(f"Aw man, you actually managed to beat me.nYour choice: {user_choice}nMy choice: {comp_choice}")
32
33
elif user_choice == 'scissors':
34
if comp_choice == 'rock':
35
await ctx.send(f'HAHA!! I JUST CRUSHED YOU!! I rock!!nYour choice: {user_choice}nMy choice: {comp_choice}')
36
elif comp_choice == 'paper':
37
await ctx.send(f'Bruh. >: |nYour choice: {user_choice}nMy choice: {comp_choice}')
38
elif comp_choice == 'scissors':
39
await ctx.send(f"Oh well, we tied.nYour choice: {user_choice}nMy choice: {comp_choice}")
40
What can I do to fix it?
Advertisement
Answer
user_choice
is the whole message object, it contains an attribute for content
which stores the content of the message.
This should fix your problem:
JavaScript
1
2
1
user_choice = (await bot.wait_for('message', check=check)).content
2
References: