-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathfinalgot.py
32 lines (31 loc) · 1.35 KB
/
finalgot.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
# BY @STARKTM1
from telethon import events
import asyncio
import random
@borg.on(events.NewMessage(pattern=r"\.snow", outgoing=True))
async def _(event):
if event.fwd_from:
return
await event.edit("Hmm...")
await asyncio.sleep(1)
x=(random.randrange(1,11))
if x==1:
await event.edit("Never forget what you are. The rest of the world will not.Wear it like armor,\n and it can never be used to hurt you.")
if x==2:
await event.edit("There is only one thing we say to death: **Not today.**")
if x==3:
await event.edit("If you think this has a happy ending, you haven’t been **paying attention**.")
if x==4:
await event.edit("Chaos isn’t a pit. Chaos is a ladder.")
if x==5:
await event.edit("You know nothing, **Jon Snow**")
if x==6:
await event.edit("**Winter** is coming.")
if x==7:
await event.edit("When you play the **game of thrones**, you win or you die.")
if x==8:
await event.edit("I'm not going to **stop** the wheel, I'm going to **break** the wheel.")
if x==9:
await event.edit("When people ask you what happened here, tell them the **North remembers**. Tell them winter came for **House Frey**.")
if x==10:
await event.edit("When the snows fall and the white winds blow,\n the lone wolf dies, but the pack **survives**.")