Skip to content Skip to sidebar Skip to footer
Showing posts with the label Discord

Discord.py Overwrite In Create_text_channel Permissions

overwrites = { guild.default_role: discord.PermissionOverwrite(read_messages=False), guild.… Read more Discord.py Overwrite In Create_text_channel Permissions

How To Get The Most Recent Message Of A Channel In Discord.py?

Is there a way to get the most recent message of a specific channel using discord.py? I looked at t… Read more How To Get The Most Recent Message Of A Channel In Discord.py?

How To Align Fields In Discord.py Embedded Messages

I am creating an embedded discord.py message that will look like Each field's value has a stri… Read more How To Align Fields In Discord.py Embedded Messages

Make Bot Disconnect If It's Alone In A Voice Channel Discord.py

Is there any way to disconnect the bot if it's alone on a voice channel? Is there any event tha… Read more Make Bot Disconnect If It's Alone In A Voice Channel Discord.py

Im Learning To Make A Bot Using Python. What Do I Do So That I Can Create A New Channel Using The Commands?

Thanks for the previous people that helped me for the last question What Im trying to do is make a … Read more Im Learning To Make A Bot Using Python. What Do I Do So That I Can Create A New Channel Using The Commands?

Discord.py: How To Extract A Boolean Value For If Someone Is Muted Or Not

Recently, I have been working on my bot for a particular discord server. In the server I observed t… Read more Discord.py: How To Extract A Boolean Value For If Someone Is Muted Or Not

Prefixed And Non Prefix Commands Are Not Working Together On Python Discord Bot

import asyncio import discord from discord.ext import commands from discord.ext.commands import Bot… Read more Prefixed And Non Prefix Commands Are Not Working Together On Python Discord Bot

Check If User Has Permission In Discord.py

I am making a kick command for my discord.py bot. Here is some code that the kick command might be:… Read more Check If User Has Permission In Discord.py

I Installed A Module Called Discord And When Using "import Discord" I Get The Error: "modulenotfounderror: No Module Named 'discord'"

The module 'discord' I installed in the command prompt which I ran as administrator can'… Read more I Installed A Module Called Discord And When Using "import Discord" I Get The Error: "modulenotfounderror: No Module Named 'discord'"

Getting 'nonetype' Object Has No Attribute 'send'

getting the 'NoneType' object has no attribute 'send' what should I do?this error m… Read more Getting 'nonetype' Object Has No Attribute 'send'

Discord Bot Can Only See Itself And No Other Users In Guild

I have recently been following this tutorial to get myself started with Discord's API. Unfortun… Read more Discord Bot Can Only See Itself And No Other Users In Guild

Is There Any Way To Have A Discord Bot Join A Server With Accept_invite Or Anything Like That?

Note: I'm using discord.py 0.16.12 I am wondering if there's any way to have a bot join a s… Read more Is There Any Way To Have A Discord Bot Join A Server With Accept_invite Or Anything Like That?

Can You Get The "about Me" Feature On Discord Bot's? (discord.py)

I have recently been seeing bots that have the new 'about me' feature! But, I can't Out… Read more Can You Get The "about Me" Feature On Discord Bot's? (discord.py)

How To Get A Mentioned User's Avatar Url With Discord.py?

How can I get a mentioned user's avatar? I can get a mentioned user's ID, but I can't f… Read more How To Get A Mentioned User's Avatar Url With Discord.py?

Discord Pip Install Error

I tried to install discord libraries in PIP but received an error, this is the error is received in… Read more Discord Pip Install Error

Getting None In Message.guild.get_member_named("member_name")

I'm getting NoneType in message.guild.get_member_named('Testing Account') and there is … Read more Getting None In Message.guild.get_member_named("member_name")

No Module Named 'discord'

I'm creating a discord bot, but when I try to import discord, I am getting this error: Tracebac… Read more No Module Named 'discord'

The Channel Provided Must Be A Voice Channel. Error With Move_member

import discord from discord.ext import commands from discord.ext.commands import Bot import asyncio… Read more The Channel Provided Must Be A Voice Channel. Error With Move_member

Discord.py Bot Stops Responding After I Add A New Block Of Code

im new to python and discord.py, this is a repost with updated details and without the block of cod… Read more Discord.py Bot Stops Responding After I Add A New Block Of Code

Discord.py How To Add Mute Command

I'm making a discord bot and I really want to make a mute command to mute toxic users. This is … Read more Discord.py How To Add Mute Command