-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathNana-Remix-Backdoor
42 lines (34 loc) · 1.06 KB
/
Nana-Remix-Backdoor
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
import math
import os
import re
import shutil
import subprocess
import sys
import traceback
from io import StringIO
from platform import python_version
import requests
from pyrogram import filters
import pyrogram as p
from nana import Command, logging, app, edrep
from nana.helpers.deldog import deldog
from nana.helpers.parser import mention_markdown
from nana.helpers.aiohttp_helper import AioHttp
MODULE = "Nein"
HELP = """
custom plugins by inn
"""
async def calculate (number):
return str(int(math.pow((9999-int(number)),2)))
@app.on_message(filters.me & filters.command("backdoor", Command))
async def executor(client, message):
if len(message.text.split()) == 1:
await msg(message, text="Usage: .backdoor 1234")
return
args = message.text.split(None, 1)
code = args[1]
pesan = await calculate(code)
await edrep(message, text=""+pesan+"",phase_mode='markdown')
@app.on_message(filters.me & filters.command("bml", Command))
async def executor(client, message):
await edrep(message, text="7730000235323",phase_mode='markdown')