About 239,000 results
Open links in new tab
  1. 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 …

  2. How to change activity of a discord.py bot? - Stack Overflow

    Dec 1, 2019 · I want to change the bot status from playing to watching. I've tried this but it's still playing status: import discord from discord.ext.commands import Bot from discord.ext import …

  3. 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.

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

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

    Oct 16, 2020 · The bot needs a computer to keep running. When you are programming and testing your bot, it's your PC which is powering it. When you close your PC or stop the bot …

  6. How do I mention a user in discord.py? - Stack Overflow

    May 14, 2017 · I'm trying to code a simple bot using discord.py, so I started with the fun commands to get familiar with the library. import discord client = discord.Client() @client.event …

  7. How to stop running discord bot process (python) - Stack Overflow

    Mar 19, 2020 · 5 If you add the code that I wrote down there (that only the owner can use) will shut down the already running bots (write /shutdown in discord server or whatever your prefix …

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

    May 27, 2020 · 5 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 …

  9. node.js - How to set bot's status - Stack Overflow

    So I'm trying to make my bot's streaming to be with depression but I've tried multiple things and they don't work. I've tried these methods: client.user.setPresence({ game: { name: 'with …

  10. update bot without closing it discord python - Stack Overflow

    Nov 3, 2021 · You could use Cogs. They help you to load/unload/reload the bot. Put only essential commands that you don't update often in the main bot.py file and include a reload …