-
Notifications
You must be signed in to change notification settings - Fork 5
/
animoji.py
375 lines (335 loc) Β· 10.2 KB
/
animoji.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
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
import asyncio
from collections import deque
from ULTRA.utils import admin_cmd, edit_or_reply, sudo_cmd
from ULTRA import CMD_HELP
@bot.on(admin_cmd(pattern="think$", outgoing=True))
@bot.on(sudo_cmd(pattern="think$", allow_sudo=True))
async def _(event):
if event.fwd_from:
return
event = await edit_or_reply(event, "think")
deq = deque(list("π€π§π€π§π€π§"))
for _ in range(48):
await asyncio.sleep(0.1)
await event.edit("".join(deq))
deq.rotate(1)
@bot.on(admin_cmd(pattern=r"lmao$"))
@bot.on(sudo_cmd(pattern="lmao$", allow_sudo=True))
async def _(event):
if event.fwd_from:
return
event = await edit_or_reply(event, "lmao")
deq = deque(list("ππ€£ππ€£ππ€£"))
for _ in range(48):
await asyncio.sleep(0.1)
await event.edit("".join(deq))
deq.rotate(1)
@bot.on(admin_cmd(pattern=r"nothappy$"))
@bot.on(sudo_cmd(pattern="nothappy$", allow_sudo=True))
async def _(event):
if event.fwd_from:
return
event = await edit_or_reply(event, "nathappy")
deq = deque(list("πβΉοΈπβΉοΈπβΉοΈπ"))
for _ in range(48):
await asyncio.sleep(0.4)
await event.edit("".join(deq))
deq.rotate(1)
@bot.on(admin_cmd(outgoing=True, pattern="clock$"))
@bot.on(sudo_cmd(pattern="clock$", allow_sudo=True))
async def _(event):
if event.fwd_from:
return
event = await edit_or_reply(event, "clock")
deq = deque(list("πππππππππππ"))
for _ in range(48):
await asyncio.sleep(0.1)
await event.edit("".join(deq))
deq.rotate(1)
@bot.on(admin_cmd(pattern=r"muah$"))
@bot.on(sudo_cmd(pattern="muah$", allow_sudo=True))
async def _(event):
if event.fwd_from:
return
event = await edit_or_reply(event, "muah")
deq = deque(list("πππππ"))
for _ in range(48):
await asyncio.sleep(0.1)
await event.edit("".join(deq))
deq.rotate(1)
@bot.on(admin_cmd(pattern="heart$"))
@bot.on(sudo_cmd(pattern="heart$", allow_sudo=True))
async def _(event):
if event.fwd_from:
return
event = await edit_or_reply(event, "heart")
deq = deque(list("β€οΈπ§‘πππππ€"))
for _ in range(48):
await asyncio.sleep(0.1)
await event.edit("".join(deq))
deq.rotate(1)
@bot.on(admin_cmd(pattern="gym$", outgoing=True))
@bot.on(sudo_cmd(pattern="gym$", allow_sudo=True))
async def _(event):
if event.fwd_from:
return
event = await edit_or_reply(event, "gym")
deq = deque(list("πβπβπ€Έβπβπβπ€Έβπβπβπ€Έβ"))
for _ in range(48):
await asyncio.sleep(0.1)
await event.edit("".join(deq))
deq.rotate(1)
@bot.on(admin_cmd(pattern=f"earth$", outgoing=True))
@bot.on(sudo_cmd(pattern="earth$", allow_sudo=True))
async def _(event):
if event.fwd_from:
return
event = await edit_or_reply(event, "earth")
deq = deque(list("ππππππππ"))
for _ in range(48):
await asyncio.sleep(0.1)
await event.edit("".join(deq))
deq.rotate(1)
@bot.on(admin_cmd(outgoing=True, pattern="moon$"))
@bot.on(sudo_cmd(pattern="moon$", allow_sudo=True))
async def _(event):
if event.fwd_from:
return
event = await edit_or_reply(event, "moon")
deq = deque(list("ππππππππ"))
for _ in range(48):
await asyncio.sleep(0.1)
await event.edit("".join(deq))
deq.rotate(1)
@bot.on(admin_cmd(pattern=f"smoon$", outgoing=True))
@bot.on(sudo_cmd(pattern="smoon$", allow_sudo=True))
async def _(event):
if event.fwd_from:
return
event = await edit_or_reply(event, "smoon")
animation_interval = 0.1
animation_ttl = range(101)
await event.edit("smoon..")
animation_chars = [
"πππππ\nπππππ\nπππππ\nπππππ\nπππππ",
"πππππ\nπππππ\nπππππ\nπππππ\nπππππ",
"πππππ\nπππππ\nπππππ\nπππππ\nπππππ",
"πππππ\nπππππ\nπππππ\nπππππ\nπππππ",
"πππππ\nπππππ\nπππππ\nπππππ\nπππππ",
"πππππ\nπππππ\nπππππ\nπππππ\nπππππ",
"πππππ\nπππππ\nπππππ\nπππππ\nπππππ",
"πππππ\nπππππ\nπππππ\nπππππ\nπππππ",
]
for i in animation_ttl:
await asyncio.sleep(animation_interval)
await event.edit(animation_chars[i % 8])
@bot.on(admin_cmd(pattern=f"tmoon$", outgoing=True))
@bot.on(sudo_cmd(pattern="tmoon$", allow_sudo=True))
async def _(event):
if event.fwd_from:
return
event = await edit_or_reply(event, "tmoon")
animation_interval = 0.1
animation_ttl = range(117)
await event.edit("tmoon")
animation_chars = [
"π",
"π",
"π",
"π",
"π",
"π",
"π",
"π",
"π",
"π",
"π",
"π",
"π",
"π",
"π",
"π",
"π",
"π",
"π",
"π",
"π",
"π",
"π",
"π",
"π",
"π",
"π",
"π",
"π",
"π",
"π",
"π",
]
for i in animation_ttl:
await asyncio.sleep(animation_interval)
await event.edit(animation_chars[i % 32])
@bot.on(admin_cmd(pattern=f"hart$", outgoing=True))
@bot.on(sudo_cmd(pattern=f"hart$", allow_sudo=True))
async def _(event):
if event.fwd_from:
return
animation_interval = 0.5
animation_ttl = range(20)
event = await edit_or_reply(event, "β€οΈ")
animation_chars = ["π€", "β€οΈ", "π€", "β€οΈ", "β"]
for i in animation_ttl:
await asyncio.sleep(animation_interval)
await event.edit(animation_chars[i % 4])
@bot.on(admin_cmd(pattern=f"anim$", outgoing=True))
@bot.on(sudo_cmd(pattern=f"anim$", allow_sudo=True))
async def _(event):
if event.fwd_from:
return
animation_interval = 1
animation_ttl = range(20)
event = await edit_or_reply(event, "π’")
animation_chars = [
"π",
"π§",
"π‘",
"π’",
"π",
"π§",
"π‘",
"π’",
]
for i in animation_ttl:
await asyncio.sleep(animation_interval)
await event.edit(animation_chars[i % 10])
@bot.on(admin_cmd(pattern=f"fnl$", outgoing=True))
@bot.on(sudo_cmd(pattern=f"fnl$", allow_sudo=True))
async def _(event):
if event.fwd_from:
return
animation_interval = 2
animation_ttl = range(6)
event = await edit_or_reply(event, "Hey There....")
animation_chars = ["ππΏ", "ππΎ", "ππ½", "ππΌ", "βπ"]
for i in animation_ttl:
await asyncio.sleep(animation_interval)
await event.edit(animation_chars[i % 6])
@bot.on(admin_cmd(pattern=f"monkey$", outgoing=True))
@bot.on(sudo_cmd(pattern=f"monkey$", allow_sudo=True))
async def _(event):
if event.fwd_from:
return
animation_interval = 2
animation_ttl = range(12)
event = await edit_or_reply(event, "Hey There....")
animation_chars = ["π΅", "π", "π", "π", "πβπ΅π"]
for i in animation_ttl:
await asyncio.sleep(animation_interval)
await event.edit(animation_chars[i % 6])
@bot.on(admin_cmd(pattern=f"hand$", outgoing=True))
@bot.on(sudo_cmd(pattern=f"hand$", allow_sudo=True))
async def _(event):
if event.fwd_from:
return
animation_interval = 1
animation_ttl = range(13)
event = await edit_or_reply(event, "ποΈ")
animation_chars = [
"π",
"π",
"βοΈ",
"π",
"π",
"π",
"βοΈ",
"π€",
"π",
"π€",
"π€",
"ποΈ",
"π",
]
for i in animation_ttl:
await asyncio.sleep(animation_interval)
await event.edit(animation_chars[i % 13])
@bot.on(admin_cmd(pattern=f"gsg$", outgoing=True))
@bot.on(sudo_cmd(pattern=f"gsg$", allow_sudo=True))
async def _(event):
if event.fwd_from:
return
animation_interval = 1
animation_ttl = range(12)
event = await edit_or_reply(event, "ContDown....")
animation_chars = [
"π",
"9οΈβ£",
"8οΈβ£",
"7οΈβ£",
"6οΈβ£",
"5οΈβ£",
"4οΈβ£",
"3οΈβ£",
"2οΈβ£",
"1οΈβ£",
"0οΈβ£",
"π",
]
for i in animation_ttl:
await asyncio.sleep(animation_interval)
await event.edit(animation_chars[i % 12])
@bot.on(admin_cmd(pattern=r"theart$", outgoing=True))
@bot.on(sudo_cmd(pattern=r"theart$", allow_sudo=True))
async def _(event):
if event.fwd_from:
return
animation_interval = 0.3
animation_ttl = range(54)
event = await edit_or_reply(event, "π€")
animation_chars = [
"β€οΈ",
"π§‘",
"π",
"π",
"π",
"π",
"π€",
"π",
"π",
"β€οΈ",
"π§‘",
"π",
"π",
"π",
"π",
"π€",
"π",
"π",
]
for i in animation_ttl:
await asyncio.sleep(animation_interval)
await event.edit(animation_chars[i % 18])
CMD_HELP.update(
{
"animoji": """**Plugin : **`animoji`
**Commands in animoji are **
β’ `.think`
β’ `.lmao`
β’ `.nothappy`
β’ `.clock`
β’ `.muah`
β’ `.heart`
β’ `.gym`
β’ `.earth`
β’ `.moon`
β’ `.smoon`
β’ `.tmoon`
β’ `.hart`
β’ `.anim`
β’ `.fnl`
β’ `.monkey`
β’ `.hand`
β’ `.gsg`
β’ `.theart`
**Function : **__Different kinds of emoji animation commands check yourself for their animation .__"""
}
)