From 5780ff5ef0d46003ae8168e7783f1069a2a83c4f Mon Sep 17 00:00:00 2001 From: Austin <49348256+ImVaskel@users.noreply.github.com> Date: Sun, 6 Mar 2022 23:04:48 -0500 Subject: [PATCH] Add message content intent to examples --- examples/basic_bot.py | 3 ++- examples/basic_voice.py | 8 +++++++- examples/converters.py | 2 ++ examples/custom_context.py | 7 ++++++- examples/deleted.py | 7 ++++++- examples/edits.py | 7 ++++++- examples/guessing_game.py | 7 ++++++- examples/reply.py | 7 ++++++- examples/secret.py | 7 ++++++- examples/views/confirm.py | 7 ++++++- examples/views/counter.py | 7 ++++++- examples/views/dropdown.py | 7 ++++++- examples/views/ephemeral.py | 7 ++++++- examples/views/link.py | 7 ++++++- examples/views/persistent.py | 7 ++++++- examples/views/tic_tac_toe.py | 7 ++++++- 16 files changed, 89 insertions(+), 15 deletions(-) diff --git a/examples/basic_bot.py b/examples/basic_bot.py index d350401eb..cbb8a8a11 100644 --- a/examples/basic_bot.py +++ b/examples/basic_bot.py @@ -1,4 +1,4 @@ -# This example requires the 'members' privileged intents +# This example requires the 'members' and 'message_content' privileged intents import discord from discord.ext import commands @@ -11,6 +11,7 @@ There are a number of utility commands being showcased here.''' intents = discord.Intents.default() intents.members = True +intents.message_content = True bot = commands.Bot(command_prefix='?', description=description, intents=intents) diff --git a/examples/basic_voice.py b/examples/basic_voice.py index 9f47c77aa..bae1174a5 100644 --- a/examples/basic_voice.py +++ b/examples/basic_voice.py @@ -1,3 +1,5 @@ +# This example requires the 'message_content' privileged intent to function. + import asyncio import discord @@ -123,8 +125,12 @@ class Music(commands.Cog): elif ctx.voice_client.is_playing(): ctx.voice_client.stop() +intents = discord.Intents.default() +intents.message_content = True + bot = commands.Bot(command_prefix=commands.when_mentioned_or("!"), - description='Relatively simple music bot example') + description='Relatively simple music bot example', + intents=intents) @bot.event async def on_ready(): diff --git a/examples/converters.py b/examples/converters.py index 9bd8ae067..877715d14 100644 --- a/examples/converters.py +++ b/examples/converters.py @@ -1,4 +1,5 @@ # This example requires the 'members' privileged intent to use the Member converter. +# This example also requires the 'message_content' privileged intent to function. import typing @@ -7,6 +8,7 @@ from discord.ext import commands intents = discord.Intents.default() intents.members = True +intents.message_content = True bot = commands.Bot('!', intents=intents) diff --git a/examples/custom_context.py b/examples/custom_context.py index d3a5b94b1..c9fcc4724 100644 --- a/examples/custom_context.py +++ b/examples/custom_context.py @@ -1,3 +1,6 @@ +# This example requires the 'message_content' privileged intent to function. + + import random import discord @@ -28,8 +31,10 @@ class MyBot(commands.Bot): # use the new MyContext class return await super().get_context(message, cls=cls) +intents = discord.Intents.default() +intents.message_content = True -bot = MyBot(command_prefix='!') +bot = MyBot(command_prefix='!', intents=intents) @bot.command() async def guess(ctx, number: int): diff --git a/examples/deleted.py b/examples/deleted.py index 6e0c203df..25f6765e4 100644 --- a/examples/deleted.py +++ b/examples/deleted.py @@ -1,3 +1,5 @@ +# This example requires the 'message_content' privileged intent to function. + import discord class MyClient(discord.Client): @@ -17,5 +19,8 @@ class MyClient(discord.Client): msg = f'{message.author} has deleted the message: {message.content}' await message.channel.send(msg) -client = MyClient() +intents = discord.Intents.default() +intents.message_content = True + +client = MyClient(intents=intents) client.run('token') diff --git a/examples/edits.py b/examples/edits.py index 367860461..9227609f3 100644 --- a/examples/edits.py +++ b/examples/edits.py @@ -1,3 +1,5 @@ +# This example requires the 'message_content' privileged intent to function. + import discord import asyncio @@ -16,5 +18,8 @@ class MyClient(discord.Client): msg = f'**{before.author}** edited their message:\n{before.content} -> {after.content}' await before.channel.send(msg) -client = MyClient() +intents = discord.Intents.default() +intents.message_content = True + +client = MyClient(intents=intents) client.run('token') diff --git a/examples/guessing_game.py b/examples/guessing_game.py index c96a18e3e..3574a4b3a 100644 --- a/examples/guessing_game.py +++ b/examples/guessing_game.py @@ -1,3 +1,5 @@ +# This example requires the 'message_content' privileged intent to function. + import discord import random import asyncio @@ -30,5 +32,8 @@ class MyClient(discord.Client): else: await message.channel.send(f'Oops. It is actually {answer}.') -client = MyClient() +intents = discord.Intents.default() +intents.message_content = True + +client = MyClient(intents=intents) client.run('token') diff --git a/examples/reply.py b/examples/reply.py index b35ac669a..f7b71a655 100644 --- a/examples/reply.py +++ b/examples/reply.py @@ -1,3 +1,5 @@ +# This example requires the 'message_content' privileged intent to function. + import discord class MyClient(discord.Client): @@ -13,5 +15,8 @@ class MyClient(discord.Client): if message.content.startswith('!hello'): await message.reply('Hello!', mention_author=True) -client = MyClient() +intents = discord.Intents.default() +intents.message_content = True + +client = MyClient(intents=intents) client.run('token') diff --git a/examples/secret.py b/examples/secret.py index 9246c68fb..1aafa176e 100644 --- a/examples/secret.py +++ b/examples/secret.py @@ -1,9 +1,14 @@ +# This example requires the 'message_content' privileged intent to function. + import typing import discord from discord.ext import commands -bot = commands.Bot(command_prefix=commands.when_mentioned, description="Nothing to see here!") +intents = discord.Intents.default() +intents.message_content = True + +bot = commands.Bot(command_prefix=commands.when_mentioned, description="Nothing to see here!", intents=intents) # the `hidden` keyword argument hides it from the help command. @bot.group(hidden=True) diff --git a/examples/views/confirm.py b/examples/views/confirm.py index 6ec813699..cc1164800 100644 --- a/examples/views/confirm.py +++ b/examples/views/confirm.py @@ -1,3 +1,5 @@ +# This example requires the 'message_content' privileged intent to function. + from discord.ext import commands import discord @@ -5,7 +7,10 @@ import discord class Bot(commands.Bot): def __init__(self): - super().__init__(command_prefix=commands.when_mentioned_or('$')) + intents = discord.Intents.default() + intents.message_content = True + + super().__init__(command_prefix=commands.when_mentioned_or('$'), intents=intents) async def on_ready(self): print(f'Logged in as {self.user} (ID: {self.user.id})') diff --git a/examples/views/counter.py b/examples/views/counter.py index a1ab756a2..9771611ce 100644 --- a/examples/views/counter.py +++ b/examples/views/counter.py @@ -1,3 +1,5 @@ +# This example requires the 'message_content' privileged intent to function. + from discord.ext import commands import discord @@ -5,7 +7,10 @@ import discord class CounterBot(commands.Bot): def __init__(self): - super().__init__(command_prefix=commands.when_mentioned_or('$')) + intents = discord.Intents.default() + intents.message_content = True + + super().__init__(command_prefix=commands.when_mentioned_or('$'), intents=intents) async def on_ready(self): print(f'Logged in as {self.user} (ID: {self.user.id})') diff --git a/examples/views/dropdown.py b/examples/views/dropdown.py index db6d699ab..308a415b0 100644 --- a/examples/views/dropdown.py +++ b/examples/views/dropdown.py @@ -1,3 +1,5 @@ +# This example requires the 'message_content' privileged intent to function. + import typing import discord @@ -39,7 +41,10 @@ class DropdownView(discord.ui.View): class Bot(commands.Bot): def __init__(self): - super().__init__(command_prefix=commands.when_mentioned_or('$')) + intents = discord.Intents.default() + intents.message_content = True + + super().__init__(command_prefix=commands.when_mentioned_or('$'), intents=intents) async def on_ready(self): print(f'Logged in as {self.user} (ID: {self.user.id})') diff --git a/examples/views/ephemeral.py b/examples/views/ephemeral.py index 770d4b657..e0c197c6b 100644 --- a/examples/views/ephemeral.py +++ b/examples/views/ephemeral.py @@ -1,10 +1,15 @@ +# This example requires the 'message_content' privileged intent to function. + from discord.ext import commands import discord class EphemeralCounterBot(commands.Bot): def __init__(self): - super().__init__(command_prefix=commands.when_mentioned_or('$')) + intents = discord.Intents.default() + intents.message_content = True + + super().__init__(command_prefix=commands.when_mentioned_or('$'), intents=intents) async def on_ready(self): print(f'Logged in as {self.user} (ID: {self.user.id})') diff --git a/examples/views/link.py b/examples/views/link.py index 2516d5384..dfbcbd31e 100644 --- a/examples/views/link.py +++ b/examples/views/link.py @@ -1,3 +1,5 @@ +# This example requires the 'message_content' privileged intent to function. + from discord.ext import commands import discord @@ -5,7 +7,10 @@ from urllib.parse import quote_plus class GoogleBot(commands.Bot): def __init__(self): - super().__init__(command_prefix=commands.when_mentioned_or('$')) + intents = discord.Intents.default() + intents.message_content = True + + super().__init__(command_prefix=commands.when_mentioned_or('$'), intents=intents) async def on_ready(self): print(f'Logged in as {self.user} (ID: {self.user.id})') diff --git a/examples/views/persistent.py b/examples/views/persistent.py index 717476677..1f44ab7be 100644 --- a/examples/views/persistent.py +++ b/examples/views/persistent.py @@ -1,3 +1,5 @@ +# This example requires the 'message_content' privileged intent to function. + from discord.ext import commands import discord @@ -29,7 +31,10 @@ class PersistentView(discord.ui.View): class PersistentViewBot(commands.Bot): def __init__(self): - super().__init__(command_prefix=commands.when_mentioned_or('$')) + intents = discord.Intents.default() + intents.message_content = True + + super().__init__(command_prefix=commands.when_mentioned_or('$'), intents=intents) self.persistent_views_added = False async def on_ready(self): diff --git a/examples/views/tic_tac_toe.py b/examples/views/tic_tac_toe.py index 81632e265..0e2960cd5 100644 --- a/examples/views/tic_tac_toe.py +++ b/examples/views/tic_tac_toe.py @@ -1,3 +1,5 @@ +# This example requires the 'message_content' privileged intent to function. + from typing import List from discord.ext import commands import discord @@ -120,7 +122,10 @@ class TicTacToe(discord.ui.View): class TicTacToeBot(commands.Bot): def __init__(self): - super().__init__(command_prefix=commands.when_mentioned_or('$')) + intents = discord.Intents.default() + intents.message_content = True + + super().__init__(command_prefix=commands.when_mentioned_or('$'), intents=intents) async def on_ready(self): print(f'Logged in as {self.user} (ID: {self.user.id})')