* Ultroid - v0.0.3 Full Changelog - https://t.me/TheUltroid/21 Co-authored-by: Amit Sharma <48654350+buddhhu@users.noreply.github.com> Co-authored-by: Danish <72792730+1Danish-00@users.noreply.github.com> Co-authored-by: Aditya <me@xditya.me> Co-authored-by: buddhhu <buddhhu@users.noreply.github.com> Co-authored-by: New-dev0 <New-dev0@users.noreply.github.com> Co-authored-by: 1Danish-00 <1Danish-00@users.noreply.github.com> Co-authored-by: Sρι∂у <68327188+sppidy@users.noreply.github.com> Co-authored-by: sppidy <sppidy@users.noreply.github.com> Co-authored-by: Arnab Paryali <arnabxd@pm.me> Co-authored-by: Programming Error <error@notavailable.live> Co-authored-by: ArnabXD <ArnabXD@users.noreply.github.com> Co-authored-by: xditya <xditya@users.noreply.github.com> Co-authored-by: ProgrammingError <ProgrammingError@users.noreply.github.com>
67 lines
1.9 KiB
Python
67 lines
1.9 KiB
Python
# Ultroid - UserBot
|
|
# Copyright (C) 2020 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 time
|
|
|
|
from pyUltroid import *
|
|
from pyUltroid.dB import *
|
|
from pyUltroid.dB.core import *
|
|
from pyUltroid.functions import *
|
|
from pyUltroid.functions.all import *
|
|
from pyUltroid.functions.broadcast_db import *
|
|
from pyUltroid.functions.gban_mute_db import *
|
|
from pyUltroid.functions.google_image import googleimagesdownload
|
|
from pyUltroid.functions.sudos import *
|
|
from pyUltroid.utils import *
|
|
|
|
start_time = time.time()
|
|
ultroid_version = "v0.0.3"
|
|
OWNER_NAME = ultroid_bot.me.first_name
|
|
OWNER_ID = ultroid_bot.me.id
|
|
|
|
|
|
def grt(seconds: int) -> str:
|
|
count = 0
|
|
up_time = ""
|
|
time_list = []
|
|
time_suffix_list = ["s", "m", "h", "days"]
|
|
|
|
while count < 4:
|
|
count += 1
|
|
if count < 3:
|
|
remainder, result = divmod(seconds, 60)
|
|
else:
|
|
remainder, result = divmod(seconds, 24)
|
|
if seconds == 0 and remainder == 0:
|
|
break
|
|
time_list.append(int(result))
|
|
seconds = int(remainder)
|
|
|
|
for x in range(len(time_list)):
|
|
time_list[x] = str(time_list[x]) + time_suffix_list[x]
|
|
if len(time_list) == 4:
|
|
up_time += time_list.pop() + ", "
|
|
|
|
time_list.reverse()
|
|
up_time += ":".join(time_list)
|
|
|
|
return up_time
|
|
|
|
|
|
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... ",
|
|
]
|