Co-authored-by: New-dev0 <New-dev0@users.noreply.github.com> Co-authored-by: Aditya <me@xditya.me> Co-authored-by: Amit Sharma <48654350+buddhhu@users.noreply.github.com> Co-authored-by: sppidy <sppidy@users.noreply.github.com> Co-authored-by: Arnab Paryali <Arnabxd@users.noreply.github.com> Co-authored-by: divkix <divkix@users.noreply.github.com> Co-authored-by: hellboi_atul <hellboi-atul@users.noreply.github.com> Co-authored-by: Programming Error <error@notavailable.live>
57 lines
1.5 KiB
Python
57 lines
1.5 KiB
Python
# Ultroid - UserBot
|
|
# Copyright (C) 2021 TeamUltroid
|
|
#
|
|
# This file is a part of < https://github.com/TeamUltroid/Ultroid/ >
|
|
# PLease read the GNU Affero General Public License in
|
|
# <https://www.github.com/TeamUltroid/Ultroid/blob/main/LICENSE/>.
|
|
|
|
import asyncio
|
|
import time
|
|
|
|
from pyUltroid import *
|
|
from pyUltroid.dB import *
|
|
from pyUltroid.functions.all import *
|
|
from pyUltroid.functions.sudos import *
|
|
from pyUltroid.version import ultroid_version
|
|
from telethon import Button
|
|
from telethon.tl import functions, types
|
|
|
|
from strings import get_string
|
|
|
|
try:
|
|
import glitch_me
|
|
except ModuleNotFoundError:
|
|
os.system(
|
|
"git clone https://github.com/1Danish-00/glitch_me.git && pip install -e ./glitch_me"
|
|
)
|
|
|
|
|
|
start_time = time.time()
|
|
|
|
OWNER_NAME = ultroid_bot.me.first_name
|
|
OWNER_ID = ultroid_bot.me.id
|
|
|
|
List = []
|
|
Dict = {}
|
|
N = 0
|
|
|
|
NOSPAM_CHAT = [
|
|
-1001387666944, # @PyrogramChat
|
|
-1001109500936, # @TelethonChat
|
|
-1001050982793, # @Python
|
|
-1001256902287, # @DurovsChat
|
|
]
|
|
|
|
KANGING_STR = [
|
|
"Using Witchery to kang this sticker...",
|
|
"Plagiarising hehe...",
|
|
"Inviting this sticker over to my pack...",
|
|
"Kanging this sticker...",
|
|
"Hey that's a nice sticker!\nMind if I kang?!..",
|
|
"Hehe me stel ur stiker...",
|
|
"Ay look over there (☉。☉)!→\nWhile I kang this...",
|
|
"Roses are red violets are blue, kanging this sticker so my pack looks cool",
|
|
"Imprisoning this sticker...",
|
|
"Mr.Steal-Your-Sticker is stealing this sticker... ",
|
|
]
|