-
Notifications
You must be signed in to change notification settings - Fork 5
/
degi.py
52 lines (45 loc) · 1.36 KB
/
degi.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
import random, re
from ULTRA.utils import admin_cmd, edit_or_reply, sudo_cmd
import asyncio
from telethon import events
from ULTRA import CMD_HELP
@bot.on(admin_cmd(pattern="degi$"))
@bot.on(sudo_cmd(pattern="degi$", allow_sudo=True))
async def _(event):
if event.fwd_from:
return
event = await edit_or_reply(event, "degi")
await event.edit("WO")
await asyncio.sleep(1.5)
await event.edit("DegI")
await asyncio.sleep(1.5)
await event.edit("TuM")
await asyncio.sleep(1.5)
await event.edit("EkbaR")
await asyncio.sleep(1.5)
await event.edit("ManG")
await asyncio.sleep(1.5)
await event.edit("KaR")
await asyncio.sleep(1.5)
await event.edit("ToH")
await asyncio.sleep(1.5)
await event.edit("DekhO")
await asyncio.sleep(1.5)
await event.edit("Wo DeGi TuM eKbAr MaNg KaR tOh DeKhO😄")
@bot.on(admin_cmd(pattern=f"nehi$", outgoing=True))
@bot.on(sudo_cmd(pattern=f"nehi$", allow_sudo=True))
async def _(event):
if event.fwd_from:
return
event = await edit_or_reply(event, "nehi")
await event.edit("`Wo PaKkA DeGi Tu ManG KaR ToH DekH\n AuR NaA De To UskI BheN Ko PakaD😚😚`")
await asyncio.sleep(999)
CMD_HELP.update(
{
"degi": """**Plugin : **`degi`
**Commands in degi are **
• `.degi`
• `.nehi`
**Function : **__Leni deni hogi bc...__"""
}
)