
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 process in the …
How do you make a Discord bot reply to a certain message?
Jun 17, 2023 · You can send the message ID to the bot and the bot saves the message ID as a variable, then replies to the correct message using its message ID. I don't really know where to start here.
discord - How do you make a bot send a specific username of user ...
Mar 17, 2021 · @bot.command() async def hi(ctx, user : discord.Member): await ctx.send(f"{user.name}") # or user.mention or user.display_name Keep in mind that this second …
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.
How do I make my discord.py bot use custom emoji?
Aug 23, 2018 · await bot.say(msg) Example: If I upload some custom emojis on Server 1 and when we use the !ping command (mentioned above) in Server 2 or Server 3 or any server where the bot has …
How to make bot respond to a certain msg? - Stack Overflow
May 7, 2018 · You can do this one of two ways, either with the commands extension, or within the on_message event. Below is an example of how you can do this. With this example, when a user …
How to make a bot ping a user using discord.js - Stack Overflow
Aug 21, 2020 · 2 I'm kinda new to bot developing, but I've made a command called &pat and I want it to work like this: You do &pat @user and I want it to respond like this: @user-executing-the-command, …
discord.js - How do I add the "TRY MY COMMANDS" feature to my bot?
Aug 23, 2022 · You can manually add this feature to your bot's description box using the command ID. How to retrieve the command ID: Go to Server Settings. Click on "Integrations". Look for your bot …
How do you make a command which restarts your bot in discord.js?
Feb 4, 2018 · How do you make a command which restarts your bot in discord.js? Asked 7 years, 10 months ago Modified 5 years, 2 months ago Viewed 71k times
How do I "Link" a channel like a mention in my Discord Bot message?
Mar 21, 2019 · I'd like our Discord Bot to mention a specific channel, and let it be clickable. I understand mentioning a user you use the user ID. I do have the channel Id, just unsure how to implement it.