About 50 results
Open links in new tab
  1. Discord Bot to trigger other bots actions - Stack Overflow

    Jun 28, 2019 · I want to make use of other bots by triggering their actions via my own bot. Basicly somthing like : !dothis .. which triggers my own bot command , then my bot outputs a message like …

  2. Let discord bot interact with other bots - Stack Overflow

    Apr 23, 2023 · 0 It is not possible to invoke your bot's commands from other bots. If you want to trigger a function on bot A from bot B, I suggest you use the on_message event on bot A to handle requests …

  3. node.js - Discord Bot use slash command - Stack Overflow

    Apr 10, 2022 · 4 Bots cannot use other bot's slash commands, as they're not able to send Application Command Interactions, only receive them. If the other bot still uses regular message-prefix …

  4. javascript - Discord bot with animated emojis - Stack Overflow

    Jul 9, 2020 · I have a discord bot and I would like to know how I can make the bot use animated emoticons on the server. I have tried other bots that put animated emoticons through WebHooks or …

  5. oauth 2.0 - Discord OAuth2 redirect URI how-to - Stack Overflow

    Jun 4, 2016 · I'm trying to make a discord bot (with the bot tag) that can join other servers. I will be able to do this, if I can set up a redirect URI for it. I already have the bot account set up, and it al...

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

  7. How to use emoji from URL in Discord.js? - Stack Overflow

    Jun 8, 2020 · I'm trying to use emojis from an image url, so the bot can use the specific emojis across multiple servers. At the moment i'm having to upload the emoji directly to the server. Is there a way to …

  8. javascript - Use your bot as a normal user - Stack Overflow

    Apr 22, 2020 · Unfortunately, using what's called "self-bots" or "user-bots" is against Discord's ToS. Read more here. Basically, you must create a bot account to run a bot.

  9. discord.py - How can we add a bot when we are not the owner of the ...

    Apr 12, 2021 · To add a bot to a server you need to firstly have the "Manage Server" or "Administrator" permission in that server. Then head to the Discord Developer Portal > Your Application > OAuth2 …

  10. javascript - A discord bot activating another bot via /commands or ...

    Apr 24, 2022 · It is not possible for bots to use other bots' slash commands; however, you can detect when someone uses a command for a certain bot. I will use discord.js v13 in my answer.