-
I’m setting up a simple Python Discord bot, but it only seems to respond to one event/command. It only responds …
- 349 views
- 1 answers
- 0 votes
-
I tried to make blacklist system in discord.py class blackk(commands.CheckFailure): pass def __global_check_once(ctx): cursor.execute(f"SELECT ban_id FROM bany WHERE ban_id = …
- 402 views
- 1 answers
- 0 votes
-
I have a discord bot that when I enter .members, it answers back with all the list of member ids. …
- 311 views
- 1 answers
- 0 votes
-
with open("emoji.jpg", "r") as emoji: image = emoji.read() await ctx.guild.create_custom_emoji(name=’user’, image=image, roles=None, reason=None) I’m trying to create a command that …
- 345 views
- 1 answers
- 0 votes
-
I came up with the idea of creating a unique ID system for my server with a ticket system. This …
- 337 views
- 0 answers
- 0 votes
-
@bot.command() async def ling(ctx): await ctx.send("Mabel") I believe the code above should give me Mabel when I send the word …
- 369 views
- 1 answers
- 0 votes
-
When the desired numbers are written with the test command, it passes to json. then using the test1 command, number3 …
- 337 views
- 1 answers
- 0 votes
-
I’m making a bot that can change the permissions of all the channels in the server the command was run …
- 339 views
- 0 answers
- 0 votes