-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBot.py
47 lines (34 loc) · 1.4 KB
/
Bot.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
import discord
from discord.ext import commands
TOKEN = ''
RESPONSE = 'Why not put those Beans on Toast https://tenor.com/view/beans-on-toast-beans-on-toast-bean-gif-21264075'
if __name__ == '__main__':
intents = discord.Intents.default()
intents.message_content = True
client = discord.Client(intents=intents)
@client.event
async def on_ready():
print(f'{client.user} is now running!')
@client.event
async def on_message(message):
if message.author == client.user:
return
if 'beans' in message.content:
print('beans')
await message.channel.send(RESPONSE)
if 'Beans' in message.content:
print('Beans')
await message.channel.send(RESPONSE)
if 'BEANS' in message.content:
print('BEANS')
await message.channel.send(RESPONSE)
if 'bean' in message.content:
print('beans')
await message.channel.send(RESPONSE)
if 'Bean' in message.content:
print('Beans')
await message.channel.send(RESPONSE)
if 'BEAN' in message.content:
print('BEANS')
await message.channel.send(RESPONSE)
client.run(TOKEN)