-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathextra.py
156 lines (136 loc) · 4.16 KB
/
extra.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
import asyncio, subprocess
import time, re, io
from ULTRA import bot, BOTLOG, BOTLOG_CHATID, CMD_HELP
from telethon import events, functions, types
from telethon.events import StopPropagation
from telethon.tl.functions.messages import ExportChatInviteRequest
from telethon.tl.functions.contacts import BlockRequest
from telethon.tl.functions.channels import LeaveChannelRequest, CreateChannelRequest, DeleteMessagesRequest
from collections import deque
from telethon.tl.functions.users import GetFullUserRequest
from ULTRA.events import register
from ULTRA.utils import admin_cmd
@borg.on(admin_cmd(";__;$"))
#@register(outgoing=True, pattern="^;__;$")
async def fun(e):
t = ";__;"
for j in range(10):
t = t[:-1] + "_;"
await e.edit(t)
@borg.on(admin_cmd("yo$"))
#@register(outgoing=True, pattern="^yo$")
async def Ooo(e):
t = "yo"
for j in range(15):
t = t[:-1] + "oo"
await e.edit(t)
@borg.on(admin_cmd("Oof$"))
#@register(outgoing=True, pattern="^Oof$")
async def Oof(e):
t = "Oof"
for j in range(15):
t = t[:-1] + "of"
await e.edit(t)
@borg.on(admin_cmd("ccry$"))
#@register(outgoing=True, pattern="^.cry$")
async def cry(e):
if not e.text[0].isalpha() and e.text[0] not in ("/", "#", "@", "!"):
await e.edit("(;´༎ຶД༎ຶ)")
@borg.on(admin_cmd("fp$"))
#@register(outgoing=True, pattern="^.fp$")
async def facepalm(e):
if not e.text[0].isalpha() and e.text[0] not in ("/", "#", "@", "!"):
await e.edit("🤦♂")
@borg.on(admin_cmd("moon$"))
#@register(outgoing=True, pattern="^.mmoon$")
async def _(event):
if event.fwd_from:
return
deq = deque(list("🌗🌘🌑🌒🌓🌔🌕🌖"))
for _ in range(32):
await asyncio.sleep(0.1)
await event.edit("".join(deq))
deq.rotate(1)
@borg.on(admin_cmd("source$"))
#@register(outgoing=True, pattern="^.source$")
async def source(e):
if not e.text[0].isalpha() and e.text[0] not in ("/", "#", "@", "!"):
await e.edit("/HellBoy-OP/LEGENDBOT")
@borg.on(admin_cmd("readme$"))
#@register(outgoing=True, pattern="^.readme$")
async def reedme(e):
if not e.text[0].isalpha() and e.text[0] not in ("/", "#", "@", "!"):
await e.edit("/HellBoy-OP/LEGENDBOT/blob/master/README.md")
@borg.on(admin_cmd(pattern="evil ?(.*)"))
async def _(event):
if not event.text[0].isalpha() and event.text[0] not in ("/", "#", "@", "!"):
await event.edit("😒You Know I'm a good **PERSON**😏")
await asyncio.sleep(1.9)
await event.edit("BUT😡")
await asyncio.sleep(1.2)
await event.edit("😑Don't give me a reason😠")
await asyncio.sleep(1.9)
await event.edit("🤨To show my😎")
await asyncio.sleep(1.4)
await event.edit("**😈EVIL SIDE**😈")
await asyncio.sleep(1.3)
await event.edit("**😈YOU KNOW THAT I'M A GOOD PERSON. BUT DON'T GIVE ME REASON TO SHOW MY EVIL SIDE😈**")
@borg.on(admin_cmd("heart$"))
#@register(outgoing=True, pattern="^.heart$")
async def _(event):
if event.fwd_from:
return
deq = deque(list("❤️🧡💛💚💙💜🖤"))
for _ in range(32):
await asyncio.sleep(0.1)
await event.edit("".join(deq))
deq.rotate(1)
@borg.on(admin_cmd("fap$"))
#@register(outgoing=True, pattern="^.fap$")
async def _(event):
if event.fwd_from:
return
deq = deque(list("🍆✊🏻💦"))
for _ in range(32):
await asyncio.sleep(0.1)
await event.edit("".join(deq))
deq.rotate(1)
CMD_HELP.update({
";__;": "You try it!"
})
CMD_HELP.update({
"evil": "Evil Guy"
})
CMD_HELP.update({
"cry": "Cry"
})
CMD_HELP.update({
"fp": "Send face palm emoji."
})
CMD_HELP.update({
"moon": "Bot will send a cool moon animation."
})
CMD_HELP.update({
"clock": "Bot will send a cool clock animation."
})
CMD_HELP.update({
"readme": "Reedme."
})
CMD_HELP.update({
"source": "Gives the source of your ULTRA"
})
CMD_HELP.update({
"myusernames": "List of Usernames owned by you."
})
CMD_HELP.update({
"oof": "Same as ;__; but ooof"
})
CMD_HELP.update({
"earth": "Sends Kensar Earth animation"
})
CMD_HELP.update({
"heart": "Try and you'll get your emotions back"
})
CMD_HELP.update({
"fap": "Faking orgasm"
})