import discord intents = discord.Intents.default() # 기본 intents 활성화 intents.messages = True # 메시지 읽기에 대한 intents 활성화 class MyClient(discord.Client): def __init__(self, *args, **kwargs): super().__init__(*args, **kwargs) async def on_ready(self): print(f'Logged on as {self.user}!') async def on_message(self, message): if message.author == self.user: return response = message.content + " hello" await message.channel.send(response) # 봇 객체 생성 및 실행 client = MyClient(intents=intents) client.run('your_token_here')