E-Lab Tech || Money Earnings
4.93K subscribers
290 photos
18 videos
2 files
130 links
Download Telegram
Command: ๐Ÿ’ฐ Balance

TPY Code:
balance = str(User.getData("balance"))
wallet = User.getData("wallet")

status = User.getData("ban")
if status == "ok":
raise ReturnCommand()
if wallet == None:
address = 'แŠ แˆแŒˆแ‰ฃแˆ'
else:
address = wallet

text = f"*แˆฐแˆ‹แˆ {message.from_user.first_name}\n\nแ‰€แˆช แˆ‚แˆณแ‰ฅ: {balance} แ‰ฅแˆญ\n\n แ‰ดแˆŒแ‰ฅแˆญ แŠ แŠซแ‹แŠ•แ‰ต: {address} \n\n แ‹จแ‰ฆแ‰ต แŠ แˆตแˆซแˆญ แŠจแแˆˆแ‹ แˆ˜แˆ›แˆญ แŠจแˆแˆˆแŒ‰แข @miniamex*"
bot.sendMessage(chat_id=u,text=text,parse_mode="Markdown")
๐Ÿ‘1
Command: ๐Ÿ‘ซ Referrals

TPY Code:
total_invite = int(User.getData("ref_count"))
invite_link = f"https://t.me/{Bot.info().username}?start={u}"
text = f"*แˆฐแˆ‹แˆ {message.from_user.first_name:} {total_invite} แˆฐแ‹ แŒ‹แ‰ฅแ‹˜แ‹‹แˆ\n\n โžก๏ธ แ‹จแŠฅแˆญแˆตแ‹Ž แŒแ‰ฅแ‹ฃ แˆŠแŠ•แŠญ: {invite_link}\n\nแŠ แŠ•แ‹ต แˆฐแ‹ แˆฒแŒ‹แ‰ฅแ‹™ 1 แ‰ฅแˆญ แ‹ซแŒˆแŠ›แˆ‰\n\n แˆ˜แˆแŠซแˆ แ‹•แ‹ตแˆ! \n\n *"
status = User.getData("ban")
if status == "ok":
raise ReturnCommand()
bot.sendMessage(chat_id=u,text=text,parse_mode="Markdown")
โค1๐Ÿ‘1
Command: ๐Ÿ’ณ Wallet

TPY Code:
status = User.getData("ban")
if status == "ok":
raise ReturnCommand()
bot.sendMessage(chat_id=u,text="*๐Ÿ“ แ‹จแ‰ดแˆŒแ‰ฅแˆญ แŠ แŠซแ‹แŠ•แ‰ต แ‰แŒฅแˆญ แ‹ซแˆตแŒˆแ‰ก*",parse_mode="markdown")
Bot.handleNextCommand("/setwallet")
๐Ÿ‘1
Command: /setwallet

TPY Code:
def check_address():
if isinstance(message.text, str) and message.text.isdigit() and len(message.text) == 10 and message.text.startswith("09"):
User.saveData("wallet", message.text) # Saving the phone number in the "wallet" field
return bot.replyText(u, "*๐ŸŸฉ แŠ แŠซแ‹แŠ•แ‰ต แ‰แŒฅแˆญ แ‰ แ‰ฐแˆณแŠซ แˆแŠ”แ‰ณ แ‰ฐแ‰€แˆแŒงแˆ*", parse_mode="markdown")
else:
return bot.replyText(u, "โŒ *แˆแŠญ แ‹ซแˆแˆ†แА แŠ แŠซแ‹แŠ•แ‰ต แ‰แŒฅแˆญ*", parse_mode="Markdown")

check_address()
๐Ÿ‘1
Command: ๐Ÿ”‹ Statics

TPY Code:
status = User.getData("ban")
if status == "ok":
raise ReturnCommand()
total_user = Bot.getData("total_users")
payouts = libs.Resources.globalRes('payouts').value()
text = f"<b>๐Ÿ‘ซ แ‹จแ‰ฐแŒ แ‰ƒแˆšแ‹Žแ‰ฝ แ‰แŒฅแˆญ </b>-\n {total_user} แˆฐแ‹Žแ‰ฝ\n\n "
bot.sendMessage(chat_id=u,text=text,parse_mode="HTML")
Command: /verify

TPY Code:
webhook = libs.Webhook.getUrlFor(command="onWebhook", user_id=u)
webPage = "https://api.jobians.top/captcha/verify?webhookUrl="+str(encodeURIComponent(webhook))
keys = [[InlineKeyboardButton(text='โžก๏ธ แŠซแ•แ‰ป แˆ™แˆ‹ ', web_app=webPage)]]
button = InlineKeyboardMarkup(keys)
bot.sendMessage("<b>โ—๏ธแ‰ฆแ‰ฑแŠ• แˆˆแˆ˜แŒ แ‰€แˆ แ‹จแˆšแŠจแ‰ฐแˆˆแ‹แŠ• แŠซแ•แ‰ป แ‹ญแˆ™แˆ‰\n\n โš ๏ธ แˆ˜แˆแ‰ฒ แŠ แŠซแ‹แŠ•แ‰ต แ‹ˆแ‹ญแˆ แ‰ชแ’แŠคแŠ• แŠจแˆ˜แŒ แ‰€แˆ แ‹ญแ‰†แŒ แ‰ก แ‹ญแˆ… แ‰ แˆฒแˆตแ‰ฐแˆ™ แˆตแˆˆแˆšแ‰ณแ‹ˆแ‰… แ‰ แˆซแˆต-แˆฐแˆญ แ‹ญแ‰ณแŒˆแ‹ณแˆ</b>", reply_markup=button)
๐Ÿ‘1
Command: onWebhook

TPY Code:
if options == None:
bot.replyText(u, "โŒ Not Allowed", parse_mode="Markdown")
else:
data = bunchify(options.json)
user_hash = data["results"]["user_hash"]
captcha = data["results"]["captcha"]
vpn = data["results"]["vpn"]

verify = User.getData("verify")
if verify:
raise ReturnCommand

if vpn == "yes":
bot.sendMessage("๐Ÿšจ You Are Ban For Using VPN!")
# your ban code system here
User.saveData("ban","ok")
raise ReturnCommand

hashs = Bot.getData("hashs")
if hashs == None:
push = []
else:
push = hashs

check_hash = push.count(user_hash)
if check_hash > 0:
bot.sendMessage("โŒ You Have Been Banned For Using Multiple Account")
# your ban code system here
User.saveData("ban","ok")
raise ReturnCommand

if captcha == "ok":
push.append(user_hash)
Bot.saveData("hashs", push)
User.saveData("verify","ok")
# other code when user is successful verified
bot.sendMessage("โœ… You Are Verified Now")
Bot.runCommand("/start")
Command: ๐Ÿ“ค Withdraw

TPY Code:
verify = User.getData("verify")
status = User.getData("ban")
if status == "ok":
raise ReturnCommand()
if verify != "ok":
Bot.runCommand("/verify")
raise ReturnCommand()
def withdraw():
wall = User.getData("wallet")
bal = User.getData("balance")

Mini_Withdraw = "10"

if bal == None:
return
if wall == None:
bot.sendMessage(chat_id=u,text="<i>โŒแˆแŒ€แˆ˜แˆชแ‹ซ แŠ แŠซแ‹แŠ•แ‰ต แ‹ซแˆตแŒˆแ‰ก - Wallet</i>",parse_mode="html")
return
if bal >= 10:
bot.replyText(u, "<b>๐Ÿ“ฅ แˆ›แ‹แŒฃแ‰ต แˆšแˆแˆแŒ‰แ‰ตแŠ• แ‹จแ‰ฅแˆญ แˆ˜แŒ แŠ• แ‹ซแˆตแŒˆแ‰ก </b>",
parse_mode="html")
Bot.handleNextCommand("withdraw6989")
else:
bot.replyText(
u, "<b>โŒ แ‹แ‰…แ‰ฐแŠ›แ‹ แ‹จแˆ›แ‹แŒฃแ‰ต แˆ˜แŒ แŠ• "+Mini_Withdraw+" แ‰ฅแˆญ แ‰ฅแˆญ แАแ‹ </b>", parse_mode="html")
return
withdraw()
โค1
Command: withdraw6989

TPY Code:
def com(u):
u = str(u)
try:
amount = int(message.text)
bal = float(User.getData('balance'))
wallet = User.getData("wallet")
except:
bot.replyText(u, "โš ๏ธ แˆแŠญ แ‹ซแˆแˆ†แА แАแŒˆแˆญ", parse_mode="markdown")
return
if amount < 9.9:
bot.replyText(u, "*โš ๏ธ แ‹แ‰…แ‰ฐแŠ›แ‹ แ‹จแˆ›แ‹แŒฃแ‰ต แˆ˜แŒ แŠ• 30 แ‰ฅแˆญ แАแ‹*", parse_mode="markdown")
return
if amount > float(bal):
bot.replyText(u, "*โš ๏ธ แ‹ซแˆŽแ‰ต แ‰€แˆช แˆ‚แˆณแ‰ฅ แ‹ซแˆตแŒˆแ‰กแ‰ตแŠ• แˆ˜แŒ แŠ• แˆˆแˆ›แ‹แŒฃแ‰ต แ‰ แ‰‚ แŠ แ‹ญแ‹ฐแˆˆแˆ*", parse_mode="markdown")
return
payment_channel = "@proofs_payments" # Enter your channel username instead of None
username = str(Bot.info().username)
amount = str(amount)
wallet = str(wallet)
currency = "แ‰ฅแˆญ" #Enter your currency instead of None
balance = bal - float(amount)
User.saveData ("balance", balance)

if payment_channel != "None":
bot.replyPhoto(
chat_id=payment_channel,
photo="https://files.fm/u/4s95qvbjfv",
caption=f"""
<b>โœ… แŠ แ‹ฒแˆต แ‹จแˆ›แ‹แŒฃแ‰ต แŒฅแ‹ซแ‰„

๐Ÿ†” แ‰ฐแŒ แ‰ƒแˆš :- {u}
๐Ÿ“ แ‰ดแˆŒแ‰ฅแˆญ แŠ แŠซแ‹แŠ•แ‰ต :- {wallet}
๐Ÿ’ต แ‹จแ‰ฅแˆญ แˆ˜แŒ แŠ• :- </b>{amount}<b> {currency}
๐Ÿ” แˆแŠ”แ‰ณ :- <code>แ‰ แˆ˜แŠญแˆแˆ แˆ‹แ‹ญ...</code>

๐Ÿค– แ‰ฆแ‰ต แˆŠแŠ•แŠญ </b> :- https://t.me/{username}?start={u}""",
parse_mode="html"
)
bot.replyText(
chat_id=u,
text=f"""
<b>โœ… แˆ›แ‹แŒฃแ‰ต แ‰ฐแŒ แ‹ญแ‰‹แˆ

๐Ÿ†” แ‰ฐแŒ แ‰ƒแˆš :- {u}
๐Ÿ“ แ‰ดแˆŒแ‰ฅแˆญ แŠ แŠซแ‹แŠ•แ‰ต :- {wallet}
๐Ÿ’ต แ‹จแ‰ฅแˆญ แˆ˜แŒ แŠ• :- </b>{amount}<b> {currency}
๐Ÿ” แˆแŠ”แ‰ณ :- <code>แ‰ แˆ˜แŠญแˆแˆ แˆ‹แ‹ญ...</code>

๐Ÿค– แ‰ฆแ‰ต แˆŠแŠ•แŠญ </b> :- https://t.me/{username}?start={u}""",
parse_mode="html"
)

com(u)
Command: /ban

TPY Code:
bot.sendMessage("Enter User Telegram Id To Ban")
Bot.handleNextCommand("/ban2")
โค1
Command: /ban2

TPY Code:
balance = User.getData("balance",user=message.text)
if balance == None:
bot.sendMessage(f"{message.text} is not a user of this bot")
else:
User.saveData("ban",data="ok",user=message.text)
bot.sendMessage(chat_id=u,text=f"{message.text} Succesfully Banned From Using This Bot")
bot.sendMessage(chat_id=message.text,text="You are banned from using this bot")
Command: /unban

TPY Code:
bot.sendMessage("Enter User Telegram Id To Unban")
Bot.handleNextCommand("/unban2")
Command: /unban2

TPY Code:
balance = User.getData("balance",user=message.text)
if balance == None:
bot.sendMessage(f"{message.text} is not a user of this bot")
else:
User.saveData("ban",data="no",user=message.text)
bot.sendMessage(chat_id=u,text=f"{message.text} Succesfully Unbanned From Using This Bot")
bot.sendMessage(chat_id=message.text,text="You are unbanned from using this bot")
Command: /broadcast

TPY Code:
bot.sendMessage("your message")
Bot.handleNextCommand("/onBroadcast")
Command: /onBroadcast

TPY Code:
adminlist = ['1667974618']
check = [ele for ele in adminlist if(ele in str(u))]

if bool(check) == True:
msg = message.text
code = f"""bot.replyText(u,'''{msg}''',parse_mode="markdown")"""
task = Bot.broadcast(code = code)
bot.sendMessage("<b>Broadcast Task Added โ˜๏ธ \n Your msg will be sent to all in 1 minutes</b>")
Bot.saveData(task,None)
Command: /check

TPY Code:
bot.sendMessage("Enter User Telegram Id To Check Balance")
Bot.handleNextCommand("/check_2")
Command: /check_2

TPY Code:
balance = User.getData("balance",user=message.text)
if balance == None:
bot.sendMessage(f"{message.text} is not a user of this bot")
else:
bot.sendMessage(chat_id=u,text=f"{message.text}'s balance is {balance} TRX")
Command: /admin

TPY Code:
button = InlineKeyboardMarkup()
button.add(InlineKeyboardButton(text="Check Balance",callback_data="/check"))
button.add(InlineKeyboardButton(text="Ban",callback_data="/ban"),InlineKeyboardButton(text="Unban",callback_data="/unban"))
button.add(InlineKeyboardButton(text="Broadcast",callback_data="/broadcast"),InlineKeyboardButton(text="add balance",callback_data="/add"))

adminlist = ['1667974618']
check = [ele for ele in adminlist if(ele in str(u))]

if bool(check) == True:
bot.sendMessage(chat_id=u,text="โ™จ๏ธ*Welcome To The Admin Panel๐Ÿง‘๐Ÿปโ€๐Ÿ’ป\n\nโ€ผ๏ธWarning When Using This Panel Please Don't Send Any Other Command It May Spoil Your Work*",parse_mode="markdown",reply_markup=button)
Command: /add

TPY Code:
adminlist = ['1667974618']
check = [ele for ele in adminlist if(ele in str(u))]

if bool(check) == True:
bot.sendMessage("Enter User Telegram Id To Add Balance")
Bot.handleNextCommand("/add_2")
Command: /add_2

TPY Code:

balance = User.getData("balance",user=message.text)
if balance == None:
bot.sendMessage(f"{message.text} is not a user of this bot")
else:
bot.sendMessage(chat_id=u,text="Enter Amount To add")
Bot.handleNextCommand("/add_3",options=message.text)