๐Ÿ‡ณ ๐Ÿ‡ฎ ๐Ÿ‡ฐ ๐Ÿ‡ฎ ๐Ÿ‡น ๐Ÿ‡ฆ

๐Ÿ‡ณ ๐Ÿ‡ฎ ๐Ÿ‡ฐ ๐Ÿ‡ฎ ๐Ÿ‡น ๐Ÿ‡ฆ


import asyncio

import random, re

import os

import sys





from telethon import events

from uniborg.util import admin_cmd

from telethon.tl.functions.users import GetFullUserRequest

from telethon.tl.types import MessageEntityMentionName

from collections import deque



import requests









# ================= CONSTANT =================





EMOJIS = [

"๐Ÿ˜‚",

"๐Ÿ˜‚",

"๐Ÿ‘Œ",

"โœŒ",

"๐Ÿ’ž",

"๐Ÿ‘",

"๐Ÿ‘Œ",

"๐Ÿ’ฏ",

"๐ŸŽถ",

"๐Ÿ‘€",

"๐Ÿ˜‚",

"๐Ÿ‘“",

"๐Ÿ‘",

"๐Ÿ‘",

"๐Ÿ•",

"๐Ÿ’ฅ",

"๐Ÿด",

"๐Ÿ’ฆ",

"๐Ÿ’ฆ",

"๐Ÿ‘",

"๐Ÿ†",

"๐Ÿ˜ฉ",

"๐Ÿ˜",

"๐Ÿ‘‰๐Ÿ‘Œ",

"๐Ÿ‘€",

"๐Ÿ‘…",

"๐Ÿ˜ฉ",

"๐Ÿšฐ",

]







#========================================================================================



@borg.on(events.NewMessage(pattern="^.cp(?: |$)(.*)", outgoing=True))

async def copypasta(cp_e):

""" Copypasta the famous meme """

if not cp_e.text[0].isalpha() and cp_e.text[0] not in ("/", "#", "@", "!"):

textx = await cp_e.get_reply_message()

message = cp_e.pattern_match.group(1)



if message:

pass

elif textx:

message = textx.text

else:

await cp_e.edit("`๐Ÿ˜‚๐Ÿ…ฑ๏ธIvE๐Ÿ‘sOME๐Ÿ‘…text๐Ÿ‘…forโœŒ๏ธMe๐Ÿ‘ŒtO๐Ÿ‘MAkE๐Ÿ‘€iT๐Ÿ’žfunNy!๐Ÿ’ฆ`")

return



reply_text = random.choice(EMOJIS)

b_char = random.choice(

message

).lower() # choose a random character in the message to be substituted with ๐Ÿ…ฑ๏ธ

for owo in message:

if owo == " ":

reply_text += random.choice(EMOJIS)

elif owo in emoji:

reply_text += owo

reply_text += random.choice(EMOJIS)

elif owo.lower() == b_char:

reply_text += "๐Ÿ…ฑ๏ธ"

else:

if bool(random.getrandbits(1)):

reply_text += owo.upper()

else:

reply_text += owo.lower()

reply_text += random.choice(EMOJIS)

await cp_e.edit(reply_text)

Report Page