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
๐ข Wish to be a part of our team ?
โด๏ธ We need people to post codes, giveaways etc... To our made channels and for free.
If your willing to become a member of our team then please make sure contact @FlashComSupport
Due Data : 23/11/2023 ( Make sure send a message to the particular account mentioned above before the due Data by asking to become a part of our team )
Requirements
1. BJS
2.TPY
3.Group Management
4. Channel Checker
You may select a topic and request from the above mentioned account.
โHurry Up Only 1 Will Be Selected Each Of The Above Mentioned Requirements
Thanks,
โด๏ธ We need people to post codes, giveaways etc... To our made channels and for free.
If your willing to become a member of our team then please make sure contact @FlashComSupport
Due Data : 23/11/2023 ( Make sure send a message to the particular account mentioned above before the due Data by asking to become a part of our team )
Requirements
1. BJS
2.
3.
4. Channel Checker
You may select a topic and request from the above mentioned account.
โHurry Up Only 1 Will Be Selected Each Of The Above Mentioned Requirements
Thanks,
FlashCom TPY Codes / Bots
๐ข Wish to be a part of our team ? โด๏ธ We need people to post codes, giveaways etc... To our made channels and for free. If your willing to become a member of our team then please make sure contact @FlashComSupport Due Data : 23/11/2023 ( Make sure sendโฆ
Two has been already selected as a member of the particular channel / group now only another two are available
Available Requirements
1. BJS
2. Channel Checker
Now Soon Become a Member Of Our Team By Messaging @FlashComSupport By Sending any of the above available requirements or even you can select two
Available Requirements
1. BJS
2. Channel Checker
Now Soon Become a Member Of Our Team By Messaging @FlashComSupport By Sending any of the above available requirements or even you can select two
User Info Finder TpY โ
๐ Command :
๐ ๏ธ TPY Code :
โก๏ธPosted on : @flashcomtpy
โก๏ธPosted by : @HelpGoFree
โก๏ธCredits : @CodeUnknownCredits
โก๏ธError Report : @flashcomofficialchat
โก๏ธ Official Channel : @flashcomofficial
๐ด Flag Post
๐ Command :
/start๐ ๏ธ TPY Code :
firstname = message.from_user.first_name
lastname = message.from_user.last_name
username = message.from_user.username
id = message.chat.id
bot.replyText(u,f"""๐ค* Full Name:* {firstname} {lastname}
๐ *Username:* {username}
๐ *Telegram ID:* {id}""",parse_mode="Markdown")โก๏ธPosted on : @flashcomtpy
โก๏ธPosted by : @HelpGoFree
โก๏ธCredits : @CodeUnknownCredits
โก๏ธError Report : @flashcomofficialchat
โก๏ธ Official Channel : @flashcomofficial
๐ด Flag Post
Telegram
Report Post
Reporting Post Of FlashCom Channels
โค1
Forwarded from GetMart Official Channel (HelpGo Free)
We need help from you ?
> If you know php and know to host files in databases please make sure send a message to @FlashComSupport because we need help from you !
Thank You,
> If you know php and know to host files in databases please make sure send a message to @FlashComSupport because we need help from you !
Thank You,
Do you want your tpy codes or bots giveaways to be posted in this channel !
โญ๏ธ If your willing to post your tpy codes or your tpy bots giveaways to this channel you can contact @FlashComSupport by sending your post.
Post Format Will Be Edited And Posted In This Channel Once After Verifying
Send Message Of Your tpy Codes or Bots to @FlashComSupport
โญ๏ธ If your willing to post your tpy codes or your tpy bots giveaways to this channel you can contact @FlashComSupport by sending your post.
Post Format Will Be Edited And Posted In This Channel Once After Verifying
Send Message Of Your tpy Codes or Bots to @FlashComSupport
๐2
๐ Announcement
โญ๏ธ We are just thrilled to announce you the GoFlash App.
What's GoFlash App ?
๐ This app helps you to find codes to build telegram bots, telegram bot templates and tools.
๐ Join GoFlash Official Channel to Get App Download Link and App Updates :
https://t.me/GoFlashOfficial
โญ๏ธ We are just thrilled to announce you the GoFlash App.
What's GoFlash App ?
๐ This app helps you to find codes to build telegram bots, telegram bot templates and tools.
๐ Join GoFlash Official Channel to Get App Download Link and App Updates :
https://t.me/GoFlashOfficial
๐ Sorry for the delay.
As per the channels which we made related to to BJS, TPY Etc... Admins and I was less active of posting codes, giveaways etc...
Reason for delay according to me ?
According to me I was busy during the day and time and took rest at night time and was not able to be active in telegram and to post codes, giveaways etc... and also I don't know the exact reasons why admins are less active on this channel and the channels which this post has. So please make sure I apologize you for this.
๐ What's my plan for next year ( 2024 ) ?
As per my plan I have decided to change the plan going on this channel to upgrade the plan which was made previous or to implement new plans for the channels. This will be applied once the final decision is made. You may see below some of the plans below ๐.
๐ค Few Plans Made For Now ?
- Creating New Channels.
- Upgrading the post structure.
- Public Posting Codes On Our Channels ( You can post your own code once after verification terms and conditions may be applied ).
- Reforming all our channels.
โบ๏ธ Hope You All Having A Great Day and Happy New Year And Sorry For The Delay.
โ๏ธ Contact us via email or telegram
flashcomhelp@gmail.com
๐ FlashCom Admin
@FlashComSupport
Thanks,
As per the channels which we made related to to BJS, TPY Etc... Admins and I was less active of posting codes, giveaways etc...
Reason for delay according to me ?
According to me I was busy during the day and time and took rest at night time and was not able to be active in telegram and to post codes, giveaways etc... and also I don't know the exact reasons why admins are less active on this channel and the channels which this post has. So please make sure I apologize you for this.
๐ What's my plan for next year ( 2024 ) ?
As per my plan I have decided to change the plan going on this channel to upgrade the plan which was made previous or to implement new plans for the channels. This will be applied once the final decision is made. You may see below some of the plans below ๐.
๐ค Few Plans Made For Now ?
- Creating New Channels.
- Upgrading the post structure.
- Public Posting Codes On Our Channels ( You can post your own code once after verification terms and conditions may be applied ).
- Reforming all our channels.
โบ๏ธ Hope You All Having A Great Day and Happy New Year And Sorry For The Delay.
โ๏ธ Contact us via email or telegram
flashcomhelp@gmail.com
๐ FlashCom Admin
@FlashComSupport
Thanks,
๐2
Forwarded from GetMart Official Channel (FlashCom)
๐ Introducing FlashGuide - Complete Guide Channel
๐ FlashGuide channel is built to provide guides, tricks and techniques etc... For you to know something useful and use some tricks which you doesn't know. Even you can learn something with guide about something related to technology etc...
๐ Please Click The Below Button And Join To The Channel Which Will Be Useful To You.
๐ FlashGuide channel is built to provide guides, tricks and techniques etc... For you to know something useful and use some tricks which you doesn't know. Even you can learn something with guide about something related to technology etc...
๐ Please Click The Below Button And Join To The Channel Which Will Be Useful To You.
๐ Happy New Year 2024 !
๐ New Year 2024 is a cause for celebration, for spending time with friends and family, and for offering happy New Year wishes. A lot can happen in a year and between the good, the bad, and the ugly, this may seem like an understatement for most. Forget about the past and start living happily from now. Celebrate this new year with joy and happiness almost we are reaching to 2024 after 365 days in a year of 2023 and the 2023 may be sad or happy to you but make sure you enjoy the happiness with you and your family with 2024
โด๏ธ New Year Wishes From FlashCom Team !
๐ New Year 2024 is a cause for celebration, for spending time with friends and family, and for offering happy New Year wishes. A lot can happen in a year and between the good, the bad, and the ugly, this may seem like an understatement for most. Forget about the past and start living happily from now. Celebrate this new year with joy and happiness almost we are reaching to 2024 after 365 days in a year of 2023 and the 2023 may be sad or happy to you but make sure you enjoy the happiness with you and your family with 2024
โด๏ธ New Year Wishes From FlashCom Team !
๐ Sponser Ads For Free.
๐ฃ We are just happy to announce you that you can show your own ads for free in our bots or channels. As per we announced before the ads was still free but for limited time and now you can keep your ads visible for 1 month or more.
Ads can contain
- Telegram Channels, Groups and Bots.
- Youtube Channels.
- External Like Websites Etc...
๐ด Your ads will be published once after verification and make sure that your ads has to follow ad rules and we will strictly review the ads before publishing it.
โ Please send a message to admin by asking to sponser your ads
Admin : @FlashComSupport
๐ฃ We are just happy to announce you that you can show your own ads for free in our bots or channels. As per we announced before the ads was still free but for limited time and now you can keep your ads visible for 1 month or more.
Ads can contain
- Telegram Channels, Groups and Bots.
- Youtube Channels.
- External Like Websites Etc...
๐ด Your ads will be published once after verification and make sure that your ads has to follow ad rules and we will strictly review the ads before publishing it.
โ Please send a message to admin by asking to sponser your ads
Admin : @FlashComSupport
โค1