About 132,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. How to change activity of a discord.py bot? - Stack Overflow

    Dec 1, 2019 · You can use the following lines of code, depending on which activity you want to change the bot to: # Setting `Playing ` status await …

  3. How to make your Discord Bot always active - Stack Overflow

    Oct 16, 2020 · How do I make my Discord Bot active? When I close my vs code and command prompt, and I do the command in discord, it's not responding anymore. My Discord Bot is …

  4. 403 Forbidden (error code: 50001): Missing Access when adding …

    Aug 7, 2020 · Apparently, if the Discord server your Bot / integration mandates multi-factor authentication, the developer account associated with your Bot MUST have MFA enabled. I …

  5. How to create a leveling system with discord.py with python?

    May 27, 2020 · I tried to make a levelling system into my bot but something went wrong. The level rose after each message and not after the specified parameter. How to make it work properly? …

  6. Welcome message when joining discord Server using discord.js

    I am making a discord bot using node.js and discord.js, and I am currently trying to make it so that when a user joins the discord server, a custom welcome message is sent. Here is my code: …

  7. discord.errors.Forbidden: 403 FORBIDDEN (error code: 50013): …

    Jun 30, 2019 · I'm mostly confused on how my bot works on my Discord Server with only Send Message and Read Message History permissions.

  8. Python Discord Bot - Simply send a message to a channel from a …

    Mar 30, 2021 · UPDATE: I really only want to make the bot send message whenever I call it from a different point in my python files. I neither want to send a message on start nor in an intervall.

  9. 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 …

  10. Python Discord.py Ban/Kick Command - Stack Overflow

    Apr 8, 2023 · Kick: @client.command() @has_permissions(kick_members=True) async def kick(ctx, member: discord.Member, *, reason=None): await member.kick(reason=reason) …