-
-
Notifications
You must be signed in to change notification settings - Fork 301
/
animations.py
46 lines (36 loc) · 71.3 KB
/
animations.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
# Ultroid Userbot
# 2020 Copyright (c)
# Animation Plugin
"""
Animation Plugin
✘ Commands Available
• `{i}kill`
• `{i}fp`
"""
import asyncio
@ultroid_cmd(pattern="kill$")
async def _(event):
animation_interval = 0.7
animation_ttl = range(0, 12)
a = await event.eor("`ready to die dude.....`")
animation_chars = [
"Fiiiiire",
"( ・ิω・ิ)︻デ═一-->",
"---->____________",
"------>__________",
"-------->_________",
"---------->_______",
"------------>_____",
"-------------->____",
"------------------>",
"------>;(^。^)ノ",
"( ̄ー ̄) DEAD",
"""`Targeted user killed by Headshot😈.😈.😈.😈.😈.😈.😈......`
`#Sad_Reacts_Offline`\n""",
]
for i in animation_ttl:
await asyncio.sleep(animation_interval)
await a.edit(animation_chars[i % 12])
@ultroid_cmd(pattern="fp$")
async def a(e):
await e.eor("🤦♂")