I want to make a website where people can change what the bot does on their server. I'm currently using Autocode to make it (using discord.js). I also don't kno
I have a discord.py bot that when the command is sent through DM, it works. When the command is ran through a server, nothing happens. There is no errors or tra
I have created an event through the Discord JS Library, and would like to add a user option to add a cover image. The code below is working fine, but the image
I have a bot written in python. Help me deal with HTTP requests. There is a task: rename the channel on command. But discord has a limit on renaming the channel
client.once("ready", () =>{ console.log("Bot is online"); const CLIENT_ID = client.user.id; const rest = new REST({ version: "9"
import discord import time import random import schedule import asyncio async def run_scheduled_tasks(): while True: schedule.run_pending()
so basically i want to add role hierarchy in this command i am using discord.py 2.0 i checked docs but i am not able to figure out how to exactly do it, pls hel
I'm trying to make a selfbot for Discord and cant see message content from other users. async def on_message(message): print(f'USER - {message.author} texte
I would like to do a await message and list for my setWelcome but it does not send me Ok when I select in the Select menu and I do not know if it is good for th
I was interested in making a discord bot an im following a tutorial (https://www.youtube.com/watch?v=-WlLazqQO3I) I've barely learnt python so i only understand
I've been trying to make my bot's embed color update dynamically (using random color, editing HSV value). However, using msg.embeds[0] seems to give me the prev
Since discord developers added intents system I'm unable to get all members from guild using token of my own account. Is it possible now?
How could I change this command to check the custom status of all the members in the server instead of just checking the custom status of the person that wrote
when i finished the code there was MULTIPLE ERRORS and i was personally confused. import os import websocket #pip install websocket-client import json import ti
Im trying to make a python discord bot which pulls all NFTs owned by a wallet which is input by a user. Going through the solana.py docs it only seems they supp
Solved! Answer below. EDIT: Cleaned up this post to keep it all clear. Here's the code for a simple GIF bot. The important thing is: this bot works offline, giv
I am Making a Music discord bot and I have been trying to make it loop and queue songs. But when I try to queue a song it just starts playing it instead of queu
I have a problem with my discord.py bot. Here's a part of the code: import os, discord from discord.ext import commands from flask import Flask from threading i
I have wrote this userinfo code: @bot.command() async def userinfo(ctx, member: discord.Member, roles=None, author=None): if member: embed = discord
Si I have this really simple command : let row = new Discord.MessageActionRow().addComponents(...) // The .. is too long so i'll just remove it for this questio