About 206,000 results
Open links in new tab
  1. How do i make a working slash command in discord.py

    Feb 17, 2022 · I am trying to make a slash command with discord.py I have tried a lot of stuff it doesn't seem to be working. Help would be appreciated.

  2. python - Reply to a message discord.py - Stack Overflow

    Dec 14, 2020 · I want to make my bot react to a users message when they type a certain sentence. My code to reply:

  3. Python - DM a User Discord Bot - Stack Overflow

    Sep 15, 2018 · 3 I'm working on a User Discord Bot in Python .If the bot owner types !DM @user then the bot will DM the user that was mentioned by the owner.

  4. python - How can I make Discord bots display the "Bot is typing ...

    How can I make Discord bots display the "Bot is typing ..." status? Asked 7 years, 5 months ago Modified 4 years, 3 months ago Viewed 26k times

  5. I want to let my Discord Bot send images/gifs - Stack Overflow

    Apr 18, 2021 · I've been trying every bit of code I find that might work but either the command doesn't load (it says the bot is typing and then stops) or just the bot itself doesn't work. I'm using Python.

  6. python - Making a say command in discord.py - Stack Overflow

    Mar 23, 2021 · I want to make a simple say command in discord.py (ex.!say something - the bot says "something" and deletes the command message) but every code I found doesn't work for me.

  7. How do I make my discord.py bot use custom emoji?

    Aug 23, 2018 · 0 As we know, every discord bot has nitro privileges when it comes to using emotes. So a bot can access any emoji for all servers it has been added to. What I do is make an API converter …

  8. python - How do I send a DM (direct message) using discord.py to …

    Someone asked me to make a bot for him that sends a DM to anyone he specifies through a command, like *send_dm @Jess#6461 hello. I've searched a lot and I came across this code: async def …

  9. python - Join voice channel (discord.py) - Stack Overflow

    When I try to let my bot join my voice channel, I get this error: await client.join_voice_channel(voice_channel) (line that generates the error) Traceback (most recent call …

  10. python - How do you make a Discord bot reply to a certain message ...

    Jun 17, 2023 · from discord.ext import commands bot = commands.Bot(command_prefix=“!!”, …) @bot.command(name=“reply”) async def reply_command(ctx, message_id): … I will use the …