-
Notifications
You must be signed in to change notification settings - Fork 14
/
dankmemerReact.py
138 lines (134 loc) · 7.01 KB
/
dankmemerReact.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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
import discord, time
class MyClient(discord.Client):
async def on_ready(self):
print("Logged on as {0}!".format(self.user))
async def on_message(self, message):
#if message.author == client.user:
# return
channel = client.get_channel(ENTER CHANNEL ID)
if message.author.id == 270904126974590976 and message.channel.id == ENTER CHANNEL ID:
#print("Message from {0.author}: {0.content}".format(message))
message.content = message.content.replace('','')
if "god forbid" in message.content:
print("Interacted with a Dragon !")
if "EVENT TIME WOO!" in message.content:
print("Interacting with a Event !")
if "christmas tree" in message.content:
time.sleep(1)
await channel.send("christmas tree")
elif "north pole" in message.content:
time.sleep(1)
await channel.send("north pole")
elif "christmas card" in message.content:
time.sleep(1)
await channel.send("christmas card")
elif "big bait catches big fish" in message.content:
time.sleep(1)
await channel.send("big bait catches big fish")
elif "What type of meme do you want to post?" in message.content:
time.sleep(1)
await channel.send("k")
elif "yes please" in message.content:
time.sleep(1)
await channel.send("yes please")
elif "oh look a dragon" in message.content:
time.sleep(1)
await channel.send("oh look a dragon")
elif "oh frick a dragon" in message.content:
time.sleep(1)
await channel.send("oh frick a dragon")
elif "pls no eating me" in message.content:
time.sleep(1)
await channel.send("pls no eating me")
elif "woah those are some toothers" in message.content:
time.sleep(1)
await channel.send("woah those are some toothers")
elif "why didn't I just go fishing" in message.content:
time.sleep(1)
await channel.send("why didn't I just go fishing")
elif "eat lead dragon" in message.content:
time.sleep(1)
await channel.send("eat lead dragon")
elif "imma kill this dragon" in message.content:
time.sleep(1)
await channel.send("imma kill this dragon")
elif "pls no eating me" in message.content:
time.sleep(1)
await channel.send("pls no eating me")
elif "make snow angel" in message.content:
time.sleep(1)
await channel.send("make snow angel")
elif "frick off" in message.content:
time.sleep(1)
await channel.send("frick off")
elif "glub glub glub" in message.content:
time.sleep(1)
await channel.send("glub glub glub")
elif "mistletoe" in message.content:
time.sleep(1)
await channel.send("mistletoe")
elif "krampus is a nerd" in message.content:
time.sleep(1)
await channel.send("krampus is a nerd")
elif "push" in message.content:
time.sleep(1)
await channel.send("push")
elif "dibs" in message.content:
time.sleep(1)
await channel.send("dibs")
elif "happy holidays" in message.content:
time.sleep(1)
await channel.send("happy holidays")
elif "throw snowball" in message.content:
time.sleep(1)
await channel.send("throw snowball")
elif "get the camera ready" in message.content:
time.sleep(1)
await channel.send("get the camera ready")
elif "whoville sucks" in message.content:
time.sleep(1)
await channel.send("whoville sucks")
elif "build snowman" in message.content:
time(1)
await channel.send("build snowman")
elif "hook line sinker" in message.content:
time.sleep(1)
await channel.send("hook line sinker")
elif "disinfect" in message.content:
print("Found a Karen !")
for _ in range(1,8):
await channel.send("disinfect")
elif "fuck off karen" in message.content:
print("Found a Karen !")
for _ in range(1,8):
await channel.send("fuck off karen")
elif "lol imagine using skype in 2020" in message.content:
await channel.send("lol imagine using skype in 2020")
elif "savage" in message.content:
await channel.send("savage")
elif "I forgot dragon repellent again" in message.content:
await channel.send("I forgot dragon repellent again")
elif "why my pls rich no work?" in message.content:
for _ in range(1,8):
await channel.send("why my pls rich no work?")
elif "f in chat" in message.content:
await channel.send("f in chat")
elif "i am so very bored" in message.content:
await channel.send("i am so very bored")
elif "wear a mask god damn it" in message.content:
await channel.send("wear a mask god damn it")
elif "dragon these nuts on your momma" in message.content:
await channel.send("dragon these nuts on your momma")
elif "dragon says rawr" in message.content:
await channel.send("dragon says rawr")
elif "why didn't I just go fishing" in message.content:
await channel.send("why didn't I just go fishing")
client = MyClient()
print("""______ _ ___ ___ ______ _
| _ \ | | | \/ | | ___ \ | |
| | | |__ _ _ __ | | _| . . | ___ _ __ ___ ___ _ __ | |_/ /___ __ _ ___| |_ ___ _ __
| | | / _` | '_ \| |/ / |\/| |/ _ \ '_ ` _ \ / _ \ '__| | // _ \/ _` |/ __| __/ _ \| '__|
| |/ / (_| | | | | <| | | | __/ | | | | | __/ | | |\ \ __/ (_| | (__| || (_) | |
|___/ \__,_|_| |_|_|\_\_| |_/\___|_| |_| |_|\___|_| \_| \_\___|\__,_|\___|\__\___/|_|
""")
client.run("ENTER TOKEN", bot = False)