Answers for "disocrd.py event"

3

discordpy base code

import discord

client = discord.Client()

@client.event
async def on_ready():
    print('Logged in as {0.user}'.format(client))

@client.event
async def on_message(message):
    if message.author == client.user:
        return

    if message.content.startswith('$hello'):
        await message.channel.send('Hello!')

client.run('your token here')
Posted by: Guest on July-15-2020
7

create a role with discord.py

@client.command(aliases=['make_role'])
@commands.has_permissions(manage_roles=True) # Check if the user executing the command can manage roles
async def create_role(ctx, *, name):
	guild = ctx.guild
	await guild.create_role(name=name)
	await ctx.send(f'Role `{name}` has been created')
Posted by: Guest on September-29-2020
1

How to create role discord.py

guild = ctx.guild
await guild.create_role(name="role name")
Posted by: Guest on July-07-2020
1

get guild from a channel discord py

channel.guild
Posted by: Guest on January-12-2021

Code answers related to "disocrd.py event"

Python Answers by Framework

Browse Popular Code Answers by Language