E-Lab Tech || Money Earnings
4.93K subscribers
290 photos
18 videos
2 files
130 links
Download Telegram
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)
Command: /add_3

TPY Code:
def com(u):
try:
amount = float(message.text)
except:
bot.sendMessage(chat_id=u, text="Invalid value")
return
balance = float(User.getData("balance",user=options))
User.saveData("balance",balance+amount)
bot.sendMessage(chat_id=u,text=f"{amount} birr Added To {options}'s Balance")
bot.sendMessage(chat_id=options,text=f"{amount} birr Added To Your Balance")

com(u)
Command: /adding

TPY Code:
def com(u):
try:
amount = 25
except:
bot.sendMessage(chat_id=u, text="Invalid value")
return
balance = float(User.getData("balance",user=options))
User.saveData("balance",balance+amount)
bot.sendMessage(chat_id=u,text=f"25 birr Added To {options}'s Balance")
bot.sendMessage(chat_id=options,text=f"25 birr Added To Your Balance")

com(u)
Command: /adding1

TPY Code:
def com(u):
try:
amount = float(message.text)
except:
bot.sendMessage(chat_id=u, text="Invalid value")
return
balance = float(User.getData("balance",user=options))
User.saveData("balance",balance+25)
bot.sendMessage(chat_id=u,text=f"25 birr Added To {options}'s Balance")
bot.sendMessage(chat_id=options,text=f"25 birr Added To Your Balance")

com(u)
Command: /back

TPY Code:
verify = User.getData("verify")
status = User.getData("ban")
if status == "ok":
raise ReturnCommand()
if verify != "ok":
Bot.runCommand("/verify")
raise ReturnCommand()
def check():
channels = ["@Birtat_crypto"]
for i in channels:
check = bot.getChatMember(str(i), u)
if check.status != 'left':
pass
else:
return False
return True

if check() == True:
keyboard = ReplyKeyboardMarkup(True)
keyboard.row("💰 Balance")
keyboard.row("📤 Withdraw","💳 Wallet","👫 Referrals")
keyboard.row("🔋 Statics","YouTube Task")
bot.replyText(
chat_id = message.chat.id,
text = "*🔝 Main Menu*",
reply_markup = keyboard,
parse_mode="markdown"
)
if User.getData("refbonus") == None:
if User.getData("invited_by") != None:
refer = User.getData("invited_by")
amount =1
refer_balance = User.getData("balance", user=refer)
refer_balance = float(refer_balance)
refer_balance += amount
bot.replyText(chat_id=refer,text=f"<b> ከአዲስ ሪፈራል {amount} ብር ተገኘ!</b>",parse_mode="html")
User.saveData("refbonus",True)
User.saveData("balance", data=refer_balance, user=refer)
else:
bot.replyText(u, "*⚠️ ሁሉንም ቻናሎቻችንን መቀላቀል አለቦት*" ,parse_mode = "markdown")
.


The End Of Telebot Creator Ref to earn Ethiopian Birr Bot


Credit: @ElabCode
Coder: @Agegnewu0102
🌩 Boost Channel Task Code

💡 Command :- Boost (optional)

username = 'kevinbots' # enter your channel username without @
button = InlineKeyboardMarkup()
button.add(InlineKeyboardButton(text=' Boost',url=f'https://t.me/boost/{username}'))

if message.chat.type != 'private':
raise ReturnCommand

User.saveData('boost', False)
bot.sendMessage(chat_id=u,text=' <b>Boost this channel to help it unlock additional features.\n\n💰 Reward:</b> <i>$0.5</i>',parse_mode='html',reply_markup=button)


💡 Command :- /handler_chat_boost (required)

channel = 'kevinbots' # enter your channel username without @
if message and message['chat']['username'].lower() == channel.lower():
userid = message['boost']['source']['user']['id']
balance = libs.Resources.anotherRes('balance',user=userid)
boost = User.getData('boost',user=userid)
if boost == None:
raise ReturnCommand
if boost == False:
if User.getData('boosted',user=userid) != True:
User.saveData('boosted',data=True,user=userid)
User.saveData('boost',data=True,user=userid)
balance.add(0.5)
bot.sendMessage(chat_id=userid,text='💰 <b>Congratulations, $0.5 Added To Your Balance.</b>',parse_mode='html')
else:
bot.sendMessage(chat_id=userid,text='👍 <b>You have already helped boost our channel.</b>',parse_mode='html')
2024 January & faburary = 800 Birr

DM Fast @Agegnewu0102 👑
Comment Any Bot You Want 🤗
Please open Telegram to view this post
VIEW IN TELEGRAM
Join my Crypto Price Alert Channel 🙏

https://t.me/+AFb221s9d6tlOWFk


If you want auto post Bot codes like above channel, Codes available To sell DM @Agegnewu0102
Please open Telegram to view this post
VIEW IN TELEGRAM
3👌2🥰1
ዛሬ የራሳችንን Bot እናስጀምራለን

Per invite 3 Birr
Min withdraw 45 Birr
min invite 15 invite
6
Officially Our Bot Start Working 👑

Bot link https://t.me/Elabpaybot?start=7348631392
Please open Telegram to view this post
VIEW IN TELEGRAM
👍1