Bot Nations πŸš€
16.1K subscribers
18 photos
1 video
3 files
53 links
πŸ–πŸ» Welcome to β€œBot Nations”!

πŸ€– Hello, Everyone! Here, I’ll Teach You How To Create Telegram Bots.

➑ Join Our Discussion Group: @Private_Bots_Chats

πŸ“ž For Sponsorships, Ads, or Promotions, Contact Us At @PB_Sponsorship.
Download Telegram
πŸ”₯8❀5
Forwarded from BIZ FACTORY (MΠΊ HΟƒΡ•Ρ•Ξ±ΞΉΞ·)
πŸ” Vehicle info Bot Codes for TBH

Command : /rc
Usage : /rc KL43G1669

TBL Code πŸ‘‡
if (!params) {
return msg.reply("<b>Usage:</b> /rc <i>RC_Number</i>\n\nExample:\n<code>/rc KL43G1669</code>", { parse_mode: "HTML" })
}

const rc = params.trim().toUpperCase()
const loading = await msg.reply(`πŸ”Ž <b>Fetching details for:</b> <code>${rc}</code>\nPlease wait...`, { parse_mode: "HTML" })

try {
const apiUrl = `https://vehicle-eight-vert.vercel.app/api?rc=${encodeURIComponent(rc)}`
const res = await HTTP.get({ url: apiUrl, timeout: 20000 })

if (!res.ok || !res.data || !res.data.details) {
throw new Error("No vehicle information found for this number.")
}

const d = res.data.details
const info =
`πŸš— <b>Vehicle Information</b>\n━━━━━━━━━━━━━━━\n` +
`πŸͺͺ <b>RC Number:</b> <code>${res.data.rc}</code>\n` +
`πŸ‘€ <b>Owner:</b> ${d["Owner Name"] || "N/A"}\n` +
`🏍️ <b>Model:</b> ${d["Maker Model"] || "N/A"}\n` +
`β›½ <b>Fuel Type:</b> ${d["Fuel Type"] || "N/A"}\n` +
`πŸ›οΈ <b>RTO:</b> ${d["Registered RTO"] || "N/A"}\n` +
`πŸ“… <b>Registration Date:</b> ${d["Registration Date"] || "N/A"}\n` +
`🧾 <b>Tax Upto:</b> ${d["Tax Upto"] || "N/A"}\n` +
`🧰 <b>Fitness Upto:</b> ${d["Fitness Upto"] || "N/A"}\n` +
`🧯 <b>PUC Upto:</b> ${d["PUC Upto"] || "N/A"}\n` +
`πŸ›‘οΈ <b>Insurance Company:</b> ${d["Insurance Company"] || "N/A"}\n` +
`πŸ“† <b>Insurance Upto:</b> ${d["Insurance Upto"] || "N/A"}\n` +
`πŸ’  <b>Contact:</b> ${d["Phone"] || "N/A"}\n` +
`πŸ“ <b>Address:</b> ${d["Address"] || "N/A"}\n━━━━━━━━━━━━━━━\n` +
`πŸ€– <i>Made by @bizft</i>`

await Api.editMessageText({
chat_id: msg.chat.id,
message_id: loading.result.message_id,
text: info,
parse_mode: "HTML"
})
} catch (err) {
await Api.editMessageText({
chat_id: msg.chat.id,
message_id: loading.result.message_id,
text: `❌ <b>Failed to fetch data</b>\n\nReason: <i>${err.message}</i>`,
parse_mode: "HTML"
})
}





πŸš— Vehicle Info Bot β€” Instantly fetch any RC details in seconds! ⚑
🧠 Made by @bizft

Setup Guide:
1️⃣ Go to TelebotHost.com and create your bot.
2️⃣ Paste the /rc TBL code I gave above into a new command.
3️⃣ Deploy & start your bot β†’ send /rc KL43G1669 to test! βœ…
Please open Telegram to view this post
VIEW IN TELEGRAM
❀19πŸ‘3
@ScrollSaverBot
Can everyone check this bot and let me know if there are any errors?
❀7
@VOTES_RO_BOT v2


Let users participate, post entries, and collect votes β€” fully automatic.

πŸ—³οΈ Smart Channel Verification 
Bot checks that both you and the bot are admins before setup.

πŸ˜€ Custom Emoji & Photo 
Make every contest look unique.

πŸ‘₯ Live Participant System 
Every participant gets their own post with a vote button. 
Admins get notified when someone joins!

πŸ’₯ Instant Vote Updates 
Each valid click adds a live vote count. 
πŸ’₯ +1 new vote 
πŸ—³οΈ Total Votes: 4


πŸ“Š Participant Tracker 
View all participants and their total votes easily.

🚫 Voting Closed Protection 
If the contest is deleted, all voting stops automatically.

🧾 Admin Control Panel 
Change emoji, photo, or reset the contest anytime.

The system hasn't been upgraded yet; I'm in the process of upgrading it now.
❀14🐳2πŸ”₯1
Next video on Auto Filter Bot
❀25⚑2πŸŽ‰2πŸ†’2❀‍πŸ”₯1πŸ”₯1
Should we make a video to temp mail?
❀14πŸ”₯6πŸŽ‰5πŸ‘3
πŸ”₯ Free Unlimited Reactions & Views β€” Only for Now

Right now @dukesmm_robot is giving free unlimited reactions and views.
Jo log try karna chahte the, ye best time hai. Offer kab band hoga confirm nahi, so better grab it early.

πŸ‘‰ Check it out: @dukesmm_robot
❀12πŸ”₯5
Video coming soon πŸ˜„

Give reaction...
❀76πŸ₯°7πŸ‘4🐳1
Next video is gonna be very amazing ❀️
❀20🀩5πŸ‘Œ5⚑2🐳2
Forbroadcast tpy code

Command: /forbroadcast

admins = ["7823487580"]
if str(u) not in admins:
    raise ReturnCommand()
# made by @a1mbo
if options == None:
    bot.replyText(u, "<b>πŸŽ™οΈ Send Any Message To Forward Broadcast\n\nTo Cancel: /cancel</>")
    Bot.handleNextCommand("/forbroadcast", options=True)
    raise ReturnCommand()

else:
    if message.text == "/cancel":
        bot.sendMessage("<b>❌ Cancelled</>")
        raise ReturnCommand()

    msg_id = message.message_id
    chat_id = message.chat.id

    code = f"bot.forwardMessage(chat_id=u, from_chat_id={chat_id}, message_id={msg_id})"

    url = libs.webhook.getUrlFor("/broadResult", u)
    task = Bot.broadcast(code=code, callback_url=url)
    Bot.saveData(task, None)
    bot.sendMessage("<b>πŸ” Forward Broadcast Processing...</b>")
# made by @a1mbo
# for buy code contact : @a1mbo

Second command for broadcast status

Command : /broadResult

try:
    get = options.json
    total = get.total
    success = get.total_success
    fail = get.total_errors
   
    txt = f"""<b>
πŸŽ™οΈ Broadcast Done
   
πŸ‘₯ Total: {total}
βœ… Success: {success}
❌ Failed: {fail}
</b>"""
    bot.sendMessage(txt)
except:
    bot.sendMessage("<b>❌ Broadcast Data Process Failed</b>")


Made by : @a1mbo
Website : Telebotcreator.com |old.Telebotcreator.com


Plz share with credit


Old tbc apk : https://t.me/Tbcbetacode/26
❀161🀩16πŸ’―15πŸŽ‰14πŸ‘10