File size: 632 Bytes
78efe79
 
08baccf
 
 
78efe79
08baccf
 
 
78efe79
 
 
 
 
 
 
 
 
 
08baccf
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
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')