Answers for "how to mantion someone with a bot in discord python"

9

how to make it so a discord bot messages in a certain channel python

channel = client.get_channel(12324234183172)
await channel.send('hello')
Posted by: Guest on January-19-2020
1

how to make a discord bot dm someone python

@bot.command(pass_context = True)
async def dm(ctx, member : discord.Member, *, content: str):
    await bot.send_message(member, content)
Posted by: Guest on May-17-2020

Code answers related to "how to mantion someone with a bot in discord python"

Python Answers by Framework

Browse Popular Code Answers by Language