Forwarded from GetMart Official Channel (FlashCom Helper)
Finding Bots to Use And Make Your Way Easier ?
Join : @QiraOfficial And Find Cool Bots & Use It !
Free & Easy !
Join : @QiraOfficial And Find Cool Bots & Use It !
Free & Easy !
Forwarded from FlashCom - BJS Codes / Bots (FlashCom Helper)
Anyone Here Who Has Bots and Wanted to Make It To Know To Other Users and Want them To Use Your Bot ?
Join to this Channel : @TeleBotsArchive
And Make Your Bot Visible On That Channel !
And Read the Pinned Message in @TeleBotsArchive Channel
Join to this Channel : @TeleBotsArchive
And Make Your Bot Visible On That Channel !
And Read the Pinned Message in @TeleBotsArchive Channel
Forwarded from Cubex Movie
๐ We have Launched a YouTube Channel
Channel Link : https://youtube.com/@flashcomofficial
Our First Video : https://youtu.be/8bsmctF5C98
Please Subscribe and Like and Share. It is a great help
Channel Link : https://youtube.com/@flashcomofficial
Our First Video : https://youtu.be/8bsmctF5C98
Please Subscribe and Like and Share. It is a great help
๐ REDEEM CODE OPTION IN YOUR TBC BOT !
TPY-
CMD -
CODE -
CMD -
CODE -
โ๏ธ TO USE โ
MAKE REDEEM CODE USING COMMAND /make
Example -
-
โจ๏ธ SURE TO EDIT
โ๏ธ CREDITS ~
๐งโ๐ป CREATOR - @dtabse
๐จ CODED ON TELEBOT-CREATOR
โ ๏ธ COPYRIGHT BY ยฉ๏ธ@dtabse
TPY-
CMD -
/makeCODE -
if params:
ca = params.split(" ")
if len(ca) >= 2:
amount = ca[0]
code = ca[1]
Bot.saveData("amount", amount)
Bot.saveData("code", code)
Points = "Points"
text = "*โค๏ธโ๐ฅ New Redeem Code Created โค๏ธโ๐ฅ\nโโโโโโโโโโโโโโโโโโ\n ๐ Code: *" + code + "\n *๐ฒ Amount: " + amount + " " + Points + "\n โ
Redeem Fast\nโโโโโโโโโโโโโโโโโโ\n โก๏ธ Redeem Here @" + Bot.info().username + "*"
bot.replyText(chat_id=u, text=text, parse_mode="markdown") #replace chat_id username with your channel username.
bot.sendMessage("Code Successful Created.")
else:
bot.sendMessage("Send Like This: /make [amount] [code]")CMD -
/redeemCODE -
if options is None:
bot.sendMessage("๐งง Please Input Redeem Code")
Bot.handleNextCommand("/redeem", True)
else:
try:
amount = Bot.getData("amount")
code = Bot.getData("code")
user = message.from_user
balance = libs.Resources.userRes("balance")
if code:
if message.text == code:
text = (
"*โค๏ธโ๐ฅ New Code Redeemed โค๏ธโ๐ฅ\nโโโโโโโโโโโโโโโโโโ\n๐ท Name: " +
user.first_name + "\n๐ Code:* " + message.text +
"\n*๐ฒAmount: " + amount + " Points \nโโโโโโโโโโโโโโโโโโ\nโก๏ธ Active Here @" +
Bot.info().username + "*"
)
# replace chat_id username with your channel username
bot.replyText(chat_id=u, text=text, parse_mode="markdown")
balance.add(amount)
bot.replyText(u, text=f"<b>๐Congratulations, Code successfully Redeemed. \n\nโค๏ธโ๐ฅ " +
amount +
" Points Added to your Balance.</b>")
Bot.deleteData("amount")
Bot.deleteData("code")
else:
bot.sendMessage(
f"<b>โ ๏ธ Invalid Code.</b>")
else:
bot.sendMessage(
f"<b>โ ๏ธ The code is already Redeemed Or Invalid Code.</b>")
except Exception as e:
bot.sendMessage(str(e))โ๏ธ TO USE โ
MAKE REDEEM CODE USING COMMAND /make
Example -
/make [amount] [code]-
/make 10 DEMO-CODE
โจ๏ธ SURE TO EDIT
chat_id USERNAME WITH YOUR CHANNEL USERNAME โ๏ธ CREDITS ~
๐งโ๐ป CREATOR - @dtabse
๐จ CODED ON TELEBOT-CREATOR
โ ๏ธ COPYRIGHT BY ยฉ๏ธ@dtabse
โ๏ธ BEST RANDOM QUOTES GENERATOR TPY
๐ CMD -
โ๏ธ CODE -
โ๏ธ CREDITS -
๐งโ๐ป CREATOR - @dtabse
โจ๏ธ CODED ON TELEBOT-CREATOR
โ ๏ธ COPYRIGHT BY ยฉ๏ธ@dtabse
๐ CMD -
/quotesโ๏ธ CODE -
response = HTTP.get("https://api.quotable.io/random")
data = response.json()
content = data["content"]
author = data["author"]
tags = data["tags"]
bot.replyText(u, text=f"<b>โ๏ธ RANDOM BEST QUOTE GENERATED!\n\n๐ QUOTE - </b>" +
content + "\n\n<i><u>~ " + author + "</u></i>\n\n<b>Type - " + ", ".join(tags) + "\n</b>")
โ๏ธ CREDITS -
๐งโ๐ป CREATOR - @dtabse
โจ๏ธ CODED ON TELEBOT-CREATOR
โ ๏ธ COPYRIGHT BY ยฉ๏ธ@dtabse
๐จ RANDOM MEME GENERATOR TBC CODES
โ๏ธ CMD -
๐ CODE -
โ๏ธ CREDITS -
๐งโ๐ป CREATOR - @dtabse
โธ๏ธ API BY NEP DEVS
โจ๏ธ CODED ON TELEBOT-CREATOR
๐ NOTE - IN THE CASE OF ANY ERRORS OR API ERROR PLEASE REPORT US
โ ๏ธ COPYRIGHT BY ยฉ๏ธ@dtabse
โ๏ธ CMD -
/meme๐ CODE -
def fetch_random_meme():
response = HTTP.get("https://meme-api.com/gimme")
data = response.json()
title = data["title"]
url = data["url"]
author = data.get("author", "")
image = data["preview"][2]
return title, url, image, author
meme_title, meme_url, meme_image, meme_author = fetch_random_meme()
text = f"*โ Title - {meme_title}*\n[ ]({meme_image})\n~ _{meme_author}_"
bot.replyText(chat_id=u, text=text, parse_mode="markdown")
โ๏ธ CREDITS -
๐งโ๐ป CREATOR - @dtabse
โธ๏ธ API BY NEP DEVS
โจ๏ธ CODED ON TELEBOT-CREATOR
๐ NOTE - IN THE CASE OF ANY ERRORS OR API ERROR PLEASE REPORT US
โ ๏ธ COPYRIGHT BY ยฉ๏ธ@dtabse
Forwarded from GetMart Official Channel (yep)
Anyone Who is Pro Coders of BJS ( Bot JavaScript ) And Knows Well on Bots.Business
And Also Pro Coders of TPY and Knows Well on Telebot Creator
Please Make Sure We Need Some Coders To Our Channel To Post Their Codes On Our Channel Tag admin in @flashcomofficialchat Regarding This
Thanks FlashCom Owner
#FlashCoders
And Also Pro Coders of TPY and Knows Well on Telebot Creator
Please Make Sure We Need Some Coders To Our Channel To Post Their Codes On Our Channel Tag admin in @flashcomofficialchat Regarding This
Thanks FlashCom Owner
#FlashCoders
๐ฅ WALLPAPER GENERATOR TPY
๐ญ CMD -
๐ CODE -
๐ฐ CREDITS -
๐งโ๐ป CREATOR - @dtabse
๐ CODED ON TELEBOTCREATOR
โ๏ธ API BY SENSUI
โ ๏ธ COPYRIGHT ยฉ๏ธ@dtabse
TO POST THIS TYPE OF TPY CODES ON YOUR CHANNEL DM ME !โ
๐ญ CMD -
/wallpaper๐ CODE -
response = "https://sensui-useless-apis.codersensui.repl.co/api/tools/lorem-picsumV2"
re = HTTP.get(response).json()
rrr = re["imageUrl"]
bot.sendPhoto(photo=rrr)๐ฐ CREDITS -
๐งโ๐ป CREATOR - @dtabse
๐ CODED ON TELEBOTCREATOR
โ๏ธ API BY SENSUI
โ ๏ธ COPYRIGHT ยฉ๏ธ@dtabse
๐ Force Subscriber TPY Code
๐ #1 Command:
๐ ๏ธ TPY Code:
๐ #2 Command:
๐ ๏ธ TPY Code:
โ ๏ธ Alert: Replace All
โก๏ธOfficial Channel: @HazexTBC
โก๏ธError & Support: Group Chat
๐ #1 Command:
*๐ ๏ธ TPY Code:
def check():
channels = ["#@Channel"]
for i in channels:
check = bot.getChatMember(str(i), u)
if check.status != 'left':
pass
else:
return False
return True
usernm = f"""<a href="tg://user?id={message.chat.id}">{message.from_user.first_name} {message.from_user.last_name}</a>"""
if message.from_user.last_name == None:
usernm = f"""<a href="tg://user?id={message.chat.id}">{message.from_user.first_name}</a>"""
markup = InlineKeyboardMarkup()
markup.add(InlineKeyboardButton(
text="๐ข Joined",
callback_data=f"/joined {u}"))
tim = int(time.time())
until = tim+600
if check() != True:
bot.deleteMessage(chat_id=message.chat.id, message_id= message.message_id)
bot.restrictChatMember(chat_id=message.chat.id, user_id=u,can_send_messages=False, until_date=until)
txt = f"""<b>
๐ Hello {usernm}, Please Join Our Channel To Send Message in This Group
โค #@Channel
โ๏ธ After Joining, Click <code>๐ข Joined</code></b>"""
bot.replyText(chat_id=message.chat.id, text =txt, reply_markup=markup)๐ #2 Command:
/joined๐ ๏ธ TPY Code:
if params != str(u):
bot.answerCallbackQuery(call.id,'โ This Message is Not For You',show_alert=True)
raise ReturnCommand()
def check():
channels = ["#@Channel"]
for i in channels:
check = bot.getChatMember(str(i), u)
if check.status != 'left':
pass
else:
return False
return True
usernm = f"""<a href="tg://user?id={u}">{call.from_user.first_name} {call.from_user.last_name}</a>"""
if call.from_user.last_name == None:
usernm = f"""<a href="tg://user?id={u}">{call.from_user.first_name}</a>"""
if check() == True:
bot.restrictChatMember(chat_id=message.chat.id, user_id=u,can_send_messages=True)
bot.editMessageText(chat_id=message.chat.id, message_id= message.message_id, text=f"<b>๐ {usernm}, Thanks For Joining Our Channel\n\n๐ฌ Now You Can Send Message</b>")
else:
bot.answerCallbackQuery(call.id,'โ Must Join Our Channels',show_alert=True)โ ๏ธ Alert: Replace All
#@Channel With Your Channel Username and Must Add Your Bot as Admin in Channel and Groupโก๏ธOfficial Channel: @HazexTBC
โก๏ธError & Support: Group Chat
๐1
This media is not supported in your browser
VIEW IN TELEGRAM
๐ Need This Osam And Unique Channel Join Checker ?
๐ค You can just try here @Instantbrod_bot
By cmd -
ใฝ๏ธ Please Report Error If Occurs!
โจ๏ธ On bots.business
ยฉ๏ธ Copyright - @dtabse
๐ค You can just try here @Instantbrod_bot
By cmd -
/joinใฝ๏ธ Please Report Error If Occurs!
โจ๏ธ On bots.business
ยฉ๏ธ Copyright - @dtabse
๐ AUTO JOIN CHECKER CODES ๐
CMD - /join
CMD - /joi2
CMD - /joi3
CMD - /joi4
๐จ NOTE - KINDLY EDIT ALL CMDS NAMES.
โ๏ธ CREDITS -
๐งโ๐ป CREATOR - @dtabse
ใฝ๏ธ CODED ON bots.business
โจ๏ธ COPYRIGHT BY ยฉ๏ธ@dtabse
DEMO AT @Instantbrod_bot - /join
CMD - /join
Api.sendMessage({
text:
"*Join This Channel\n\nAccording To Use Me!\n\nโขJoin - sexy_amanch\nโขWait For 10 Sec\nโขBoom You Done!*",
parse_mode: "Markdown",
reply_markup: {
inline_keyboard: [[{ text: "Join", url: "https://t.me/sexy_amanch" }]]
},
on_result: "/joi2"
})CMD - /joi2
var msg = options.result.message_id
//Bot.sendMessage(msg)
User.setProperty("msg_id", msg, "integer")
Bot.run({ command: "/joi3", run_after: "5" })CMD - /joi3
var channel = "@sexy_amanch"
HTTP.get({
url:
"https://api.telegram.org/bot" +
bot.token +
"/getChatMember?chat_id=" +
channel +
"&user_id=" +
user.telegramid +
"",
success: "/joi4"
})CMD - /joi4
var info = JSON.parse(content)
var status = info.result.status
if (
(status == "member") |
(status == "administrator") |
(status == "creator")
) {
var msg = User.getProperty("msg_id")
Api.editMessageText({
chat_id: user.telegramid,
message_id: msg,
text: "Thanks ๐ For Joining Us!",
reply_markup: {
inline_keyboard: [[{ text: "Devloper", url: "t.me/Dtabse" }]]
}
})
}
if (status == "left") {
Bot.run({ command: "/joi3", run_after: "5" })
}๐จ NOTE - KINDLY EDIT ALL CMDS NAMES.
โ๏ธ CREDITS -
๐งโ๐ป CREATOR - @dtabse
ใฝ๏ธ CODED ON bots.business
โจ๏ธ COPYRIGHT BY ยฉ๏ธ@dtabse
DEMO AT @Instantbrod_bot - /join
โค1
ใฝ๏ธ TEXT TO NOTE CONVERTOR
๐ CMD -
๐ CODE-
โ๏ธ CREDITS -
๐งโ๐ป CREATOR - @IndiaGuys
๐๏ธ API BY - UNKNOWN
๐งโโ๏ธ CODED ON TELEBOT-CREATOR
โ ๏ธ COPYRIGHT BY ยฉ๏ธ @IndiaGuys
In the case of any errors kindly inform me!!
๐ CMD -
/note๐ CODE-
photo_url = "https://apis.xditya.me/write?text=" +(params)
caption = "*๐ Here Is Your Notes!!\n\n๐ซ Generated by @" + Bot.info().username + "*"
bot.sendPhoto(
chat_id=u,
photo=photo_url,
caption=caption,
parse_mode="Markdown",
)โ๏ธ CREDITS -
๐งโ๐ป CREATOR - @IndiaGuys
๐๏ธ API BY - UNKNOWN
๐งโโ๏ธ CODED ON TELEBOT-CREATOR
โ ๏ธ COPYRIGHT BY ยฉ๏ธ @IndiaGuys
In the case of any errors kindly inform me!!
Forwarded from GetMart Official Channel (FlashCom)
โExplore the best bots you want !
โญ From @QiraOfficial telegram channel you can explore bots & it's updates which will be useful for you....
โญ From @QiraOfficial telegram channel you can explore bots & it's updates which will be useful for you....
๐2
Forwarded from Hazex Codes
๐ Tip For Group TBC Code
๐ Command:
โ Uses:
๐ ๏ธ TPY Code:
โ ๏ธ Note:
โข Add Bot as Admin in Your Group
โข Reply to User Message For Tipping
โข Change
๐ Official Channel: @HazexTBC
โผ๏ธ Error & Support: Group Chat
๐ Command:
/tipโ Uses:
/tip {amount}๐ ๏ธ TPY Code:
if params == None:
raise ReturnCommand()
coin = "#YourCoin"
try:
amount = int(params)
except:
bot.replyText(chat_id=message.chat.id,reply_to_message_id=message["message_id"], text="<b>โ Invalid Amount!</b>")
raise ReturnCommand()
aid = message.from_user.id
usbal = libs.Resources.anotherRes('TipBal', user=aid).value()
usrbal = int(usbal)
try:
utgid = message.reply_to_message["from"]["id"]
except:
bot.replyText(chat_id=message.chat.id,reply_to_message_id=message["message_id"], text= f"<b>โ To Send {coin} Please Reply To Message!</b>")
raise ReturnCommand()
fname = message.reply_to_message["from"]["first_name"]
try:
tusrn = message.reply_to_message["from"]["username"]
tusrnm = f"@{tusrn}"
except:
tusrnm = fname
gusrn = message.from_user.username
gusrnm = f"@{gusrn}"
if gusrn == None:
gusrnm = message.from_user.first_name
if int(params) <= int(usrbal):
if(int(params)>0):
libs.Resources.anotherRes('TipBal', user=utgid).add(float(params))
libs.Resources.anotherRes('TipBal', user=aid).cut(float(params))
adbal = libs.Resources.anotherRes('TipBal', user=utgid).value()
addbal = int(adbal)
bot.replyText(chat_id=message.chat.id,text=f"""<b>{tusrnm} +{amount} {coin} from {gusrnm}\n
You Have: {addbal} {coin}</b>""", parse_mode="html")
bot.replyText(message.chat.id, f"<b>{gusrnm} > {tusrnm}: +{amount} {coin}</b>")
else:
bot.sendMessage(chat_id=message.chat.id,reply_to_message_id=message["message_id"],
text=f"<b>โ Not Enough {coin}\nYou Have Only: {usrbal} {coin}</b>")โ ๏ธ Note:
โข Add Bot as Admin in Your Group
โข Reply to User Message For Tipping
โข Change
#YourCoin in Code With Your Coin๐ Official Channel: @HazexTBC
โผ๏ธ Error & Support: Group Chat
๐1
๐ WEB SCRAPING TBC CODES
๐ก๏ธ Cmd -
๐งฉ Code -
โ๏ธ CREDITS -
๐งโ๐ป CREATOR - @IndiaGuys
๐๏ธ API BY - @Prime_Nepcoder
๐งโโ๏ธ CODED ON TELEBOT-CREATOR
โ ๏ธ COPYRIGHT BY ยฉ๏ธ @IndiaGuys
๐ก๏ธ Cmd -
/url๐งฉ Code -
if options is None:
bot.sendMessage("Send Url To Scrap.")
Bot.handleNextCommand("/url", options=True)
else:
api_url = "https://webscrapping.apinepdev.workers.dev/?url="+message.text
response = HTTP.get(api_url)
data = response.json()
if response.status_code == 200:
html_data = data['html']
chunks = [html_data[i:i + 4000] for i in range(0, len(html_data), 4000)]
for chunk in chunks:
bot.sendMessage(str(chunk), parse_mode="none")
โ๏ธ CREDITS -
๐งโ๐ป CREATOR - @IndiaGuys
๐๏ธ API BY - @Prime_Nepcoder
๐งโโ๏ธ CODED ON TELEBOT-CREATOR
โ ๏ธ COPYRIGHT BY ยฉ๏ธ @IndiaGuys
In the case of any errors kindly inform me!!
๐3
๐ฎ Fish Game TBC Codes || Bet And Earn #Part-1
๐ก cmd -
๐ Code -
๐ Code -
๐ก cmd -
/game๐ Code -
keyboard = InlineKeyboardMarkup()๐ก cmd -
button1 = InlineKeyboardButton("๐ Fish Game", callback_data="/fish 1-๐")
keyboard.row(button1)
mes_id = User.getData("game")
tt = "<b>๐น Choose Game From Below Button For Play. </b>"
#User.saveData("mes_id", h.message_id)
if params == "edit":
bot.editMessageText(chat_id=u, message_id=message.message_id, text=tt,
parse_mode="html", reply_markup=keyboard)
else:
h = bot.replyText(chat_id=u, text=tt, parse_mode="html",
reply_markup=keyboard)
/fish๐ Code -
spl = params.split("-")
am = int(float(spl[0])) # Convert spl[0] to float and then to integer
fish = spl[1]
add = am + 1
min = am - 1
multi = am * 2
div = am / 2
bal = libs.Resources.userRes("balance")
cur = "Points"
if am < 1: # Check directly on am as it's now an integer
bot.answerCallbackQuery(
call.id, "โ Minimum Bet Is 1 " + str(cur) + ".", show_alert=True)
raise ReturnCommand
if bal.value() < am and am != 0: # Check directly on am as it's now an integer
bot.answerCallbackQuery(call.id, "โ You Have No " +
str(am) + " " + str(cur) + ".", show_alert=True)
raise ReturnCommand
mm = User.getData("game")
tt = "๐ฆ <i>Available Balance:</i><b> " + str(bal.value()) + "</b>\n\nโก๏ธ <i>Bet For Selected Fish: " + \
fish + "</i>\n\n๐ฐ <i>Bet For Selected Money:</i> <b> " + \
str(int(am)) + " " + str(cur) + "</b>"
keyboard = InlineKeyboardMarkup()
button1 = InlineKeyboardButton(
"Max", callback_data="/fish " + str(bal.value()) + "-" + fish)
button2 = InlineKeyboardButton(
"+1", callback_data="/fish " + str(add) + "-" + fish)
button3 = InlineKeyboardButton(
"-1", callback_data="/fish " + str(min) + "-" + fish)
button4 = InlineKeyboardButton("Min", callback_data="/fish 1-" + fish)
button5 = InlineKeyboardButton(
"ร2", callback_data="/fish " + str(multi) + "-" + fish)
button6 = InlineKeyboardButton(
"รท2", callback_data="/fish " + str(div) + "-" + fish)
button7 = InlineKeyboardButton(
"๐", callback_data="/fish " + str(am) + "-๐")
button8 = InlineKeyboardButton(
"๐", callback_data="/fish " + str(am) + "-๐")
button9 = InlineKeyboardButton(
"๐ก", callback_data="/fish " + str(am) + "-๐ก")
button10 = InlineKeyboardButton(
"๐ ", callback_data="/fish " + str(am) + "-๐ ")
button11 = InlineKeyboardButton("๐ Back", callback_data="/game edit")
button12 = InlineKeyboardButton("๐ฎ Play", callback_data="/fishes " + str(am) + "-" + fish)
keyboard.row(button1, button2, button3)
keyboard.row(button4, button5, button6)
keyboard.row(button7, button8, button9, button10)
keyboard.row(button11, button12)
bot.editMessageText(chat_id=u, message_id=message.message_id,
text=tt, parse_mode="html", reply_markup=keyboard)๐1
๐ฎ Fish Game TBC Codes || Bet And Earn #Part-2
๐ก cmd -
๐ Code -
โ๏ธ CREDITS -
๐งโ๐ป CREATOR - @IndiaGuys
๐งโโ๏ธ CODED FOR TELEBOT-CREATOR
๐ก cmd -
/fishes๐ Code -
spl = params.split("-")
am = int(float(spl[0]))
fis = spl[1]
add = am + 1
min = am - 1
multi = am * 2
div = am / 2
bal = libs.Resources.userRes("balance")
cur = "Points"
if am < 1: # Check directly on am as it's now an integer
bot.answerCallbackQuery(
call.id, "โ Minimum Bet Is 1 " + str(cur) + ".", show_alert=True)
raise ReturnCommand
if bal.value() < am and am != 0: # Check directly on am as it's now an integer
bot.answerCallbackQuery(call.id, "โ You Have No " +
str(am) + " " + str(cur) + ".", show_alert=True)
raise ReturnCommand
mm = User.getData("game")
fish = [
"๐", "๐", "๐ก", "๐ ", "๐", "๐", "๐ก", "๐ ", "๐", "๐", "๐ก", "๐ ", "๐", "๐", "๐ก", "๐ ", "๐", "๐", "๐ก", "๐ ", "๐", "๐", "๐ก", "๐ ", "๐", "๐", "๐ก", "๐ ", "๐", "๐", "๐ก", "๐ ", "๐", "๐", "๐ก", "๐ ", "๐", "๐", "๐ก", "๐ ", "๐", "๐", "๐ก", "๐ ", "๐", "๐", "๐ก", "๐ ", "๐", "๐", "๐ก", "๐ ", "๐", "๐", "๐ก", "๐ ", "๐", "๐", "๐ก", "๐ ", "๐", "๐", "๐ก", "๐ "]
ran = libs.Random.randomInt(0, len(fish))
result = fish[ran]
keyboard = InlineKeyboardMarkup()
button1 = InlineKeyboardButton("๐ Back", callback_data="/game edit")
keyboard.row(button1)
if result == fis:
tt = "๐ <b>Congratulations,</b> You Have Won The Game.\n\n๐ <b>Result On: " + \
result+"</b>\n\nโก๏ธ <b>Balance Added: "+str(int(am))+" "+cur+"</b>"
bal.add(am)
else:
tt = "๐โโ <b>Oh! Sorry,</b> You Have Lost The Game.\n\n๐ <b>Result On: " + \
result+"</b>\n\nโก๏ธ <b>Balance Cuted: "+str(int(am))+" "+cur+"</b>"
bal.cut(am)
bot.editMessageText(chat_id=u, message_id=message.message_id,
text=tt, parse_mode="html",reply_markup=keyboard)โ๏ธ CREDITS -
๐งโ๐ป CREATOR - @IndiaGuys
๐งโโ๏ธ CODED FOR TELEBOT-CREATOR
โ ๏ธ COPYRIGHT BY ยฉ๏ธ @IndiaGuys
๐1