Zomatree
5 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with
13 additions and
2 deletions
-
examples/basic_bot.py
-
examples/new_member.py
|
|
@ -1,3 +1,5 @@ |
|
|
|
# This example requires the 'members' privileged intents |
|
|
|
|
|
|
|
import discord |
|
|
|
from discord.ext import commands |
|
|
|
import random |
|
|
@ -6,7 +8,11 @@ description = '''An example bot to showcase the discord.ext.commands extension |
|
|
|
module. |
|
|
|
|
|
|
|
There are a number of utility commands being showcased here.''' |
|
|
|
bot = commands.Bot(command_prefix='?', description=description) |
|
|
|
|
|
|
|
intents = discord.Intents.default() |
|
|
|
intents.members = True |
|
|
|
|
|
|
|
bot = commands.Bot(command_prefix='?', description=description, intents=intents) |
|
|
|
|
|
|
|
@bot.event |
|
|
|
async def on_ready(): |
|
|
|
|
|
@ -1,3 +1,5 @@ |
|
|
|
# This example requires the 'members' privileged intents |
|
|
|
|
|
|
|
import discord |
|
|
|
|
|
|
|
class MyClient(discord.Client): |
|
|
@ -14,5 +16,8 @@ class MyClient(discord.Client): |
|
|
|
await guild.system_channel.send(to_send) |
|
|
|
|
|
|
|
|
|
|
|
client = MyClient() |
|
|
|
intents = discord.Intents.default() |
|
|
|
intents.members = True |
|
|
|
|
|
|
|
client = MyClient(intents=intents) |
|
|
|
client.run('token') |
|
|
|