Skip to content Skip to sidebar Skip to footer
Showing posts with the label Discord.py Rewrite

Kick Command Is Giving Errors

My kick command is below: @bot.command() async def kick(ctx, member: discord.Member, *,reason… Read more Kick Command Is Giving Errors

Can't Make Discord Bot Leave The Voice Channel In Python

I'm trying to make my Discord bot leave the voice channel when someone types 'leave' as… Read more Can't Make Discord Bot Leave The Voice Channel In Python

Python - Is It Possible To Wait_for One Event Or Another In Discord.py-v1.0?

Is there any to use wait_for in such a way that it will wait for either reaction_add or reaction_re… Read more Python - Is It Possible To Wait_for One Event Or Another In Discord.py-v1.0?

Attributeerror: 'nonetype' Object Has No Attribute 'channels'

Hi I'm having an issue with a module for my Discord bot. I'm getting AttributeError: 'N… Read more Attributeerror: 'nonetype' Object Has No Attribute 'channels'

How To Convert A String To A User Discord.py

I'm trying to convert a string to a user so I can dm them. Here's my current code: @bot… Read more How To Convert A String To A User Discord.py

Discord.py Getting All Text Channels Under A Certain Category

I'm trying to get all text channels under a category as a list but I can only do for guild in c… Read more Discord.py Getting All Text Channels Under A Certain Category

Discord.py: Nameerror: Name 'intents' Is Not Defined

I'm trying to use intents in my bot but when running the following code: import discord from di… Read more Discord.py: Nameerror: Name 'intents' Is Not Defined

Is It Possible To Put An Async Function As A Callable Argument?

I'm coding a music bot for my server, and I need to disconnect (a coroutine) when the queue is … Read more Is It Possible To Put An Async Function As A Callable Argument?