Skip to content
Advertisement

How to create a Rock Paper Scissors command in discord.py

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

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

References:

User contributions licensed under: CC BY-SA
1 People found this is helpful
Advertisement