Esko Coding
3.05K subscribers
52 photos
2 videos
37 links
๐Ÿ™ƒ
Download Telegram
แ‹จแ‰ฐแŒ แ‰ƒแˆšแ‹แŠ• Profile Photo แˆˆแˆ˜แˆ‹แŠญ แ‹จแˆšแ‹ซแˆตแ‰ฝแˆ Code

user_id = message.from_user.id  # Get user ID

# Fetch user profile photos
photos = bot.getUserProfilePhotos(user_id)

# Check if the user has any profile photos
if photos.total_count > 0: # Check if there are photos
photo_file_id = photos.photos[0][0].file_id # Get the first profile photo
bot.sendPhoto(chat_id=user_id, photo=photo_file_id) # Send the first profile photo
else:
bot.sendMessage(chat_id=user_id, text="โŒ You don't have a profile photo.")
๐Ÿ‘7
Forwarded from Wase Records ๐ŸŽฌ
Deaths Game แŠ แŒญแˆญ แ‰ฐแŠจแ‰ณแ‰ณแ‹ญ แŠแˆแˆ แŠจแˆ˜แŒ€แˆ˜แˆชแ‹ซ แŠฅแˆตแŠจ แˆ˜แŒจแˆจแˆป(1 - 8) แˆแˆ‰แŠ•แˆ แ‰ แ‰ตแˆญแŒ‰แˆ @WaserecBot แˆ‹แ‹ญ Deaths Game แ‰ฅแˆˆแ‹ search แ‰ แˆ›แ‹ตแˆจแŒ แ‹ซแ‹แˆญแ‹ฑแข
๐Ÿ‘2โค1
To send poll quiz
question = "What is the capital of France?"
options = ["Paris", "London", "Berlin", "Madrid"]

bot.sendPoll(
chat_id=u,
question=question,
options=options,
is_anonymous=False,
type="quiz",
correct_option_id=0,
explanation="The capital of France is Paris, known for its art, fashion, and culture."
)
๐Ÿ‘1
To send poll quiz with a timer(30sec)
question = "What is the capital of France?"
options = ["Paris", "London", "Berlin", "Madrid"]

bot.sendPoll(
chat_id=u,
question=question,
options=options,
is_anonymous=False,
type="quiz",
correct_option_id=0,
explanation="The capital of France is Paris, known for its art, fashion, and culture.",
open_period=30 # โณ The quiz will automatically close after 30 seconds
)
๐Ÿ‘1
You can use the code below if you want it to be a regular pole/multiple choice poll
question = "Which of these are European capitals?"
options = ["Paris", "London", "Berlin", "Madrid"]

bot.sendPoll(
chat_id=u,
question=question,
options=options,
is_anonymous=False,
type="regular",
allows_multiple_answers=True,
open_period=30 # โณ Closes after 30 seconds
)
๐Ÿ‘6โค1
QR Code Generator TBC code

Command : * (You can replace it with another command by updating the code)




tum = message.text


# Define the data for the QR code (this could be a URL, text, etc.)
data_for_qr = tum # Replace with the data you want to encode

# Use the QR code generator API to generate the QR code image
qr_code_url = "https://api.qrserver.com/v1/create-qr-code/?data=" + data_for_qr + "&size=150x150"

# Send the generated QR code to the user
bot.sendPhoto(photo = qr_code_url, caption = "Here is your QR code!")
๐Ÿ‘1
๐ŸŒ™ ๐Ÿ” ๐Ÿ” ๐Ÿ” ๐Ÿ” ๐Ÿ” ๐Ÿ” ๐Ÿ” 


แˆˆแŠฅแˆตแˆแˆแŠ“ แŠฅแˆแАแ‰ต แ‰ฐแŠจแ‰ณแ‹ฌแ‰ปแ‰ฝแŠ• แˆ˜แˆแŠซแˆ แ‹จแˆจแˆ˜แ‹ณแŠ• แ†แˆ แŠฅแŠ•แ‹ฒแˆ†แŠ•แˆ‹แ‰ฝแˆ แŠฅแŠ•แˆ˜แŠ›แˆˆแŠ• โœ…

แˆจแˆ˜แ‹ณแŠ• แŠจแˆชแˆ ๐ŸŒ™
Please open Telegram to view this post
VIEW IN TELEGRAM
๐Ÿ‘14๐Ÿคฉ5โค3๐Ÿ‘Œ2๐Ÿฅฐ1
something is cooking for TBC coders ๐Ÿฆ๐Ÿฆ๐Ÿฆ
Please open Telegram to view this post
VIEW IN TELEGRAM
๐Ÿ‘8
แŠฅแŠ•แŠณแŠ• แˆˆ129แŠ›แ‹ แ‹จแ‹“แ‹ตแ‹‹ แ‹ตแˆ แ‰ แ‹“แˆ แ‰ แˆฐแˆ‹แˆ แŠ แ‹ฐแˆจแˆณแ‰ฝแˆ !
๐Ÿ‘5๐Ÿคฉ3๐Ÿ”ฅ2
Esko Coding
something is cooking for TBC coders ๐Ÿฆ๐Ÿฆ๐Ÿฆ
Cooking ๐Ÿฆ๐Ÿฆ๐Ÿฆ
Please open Telegram to view this post
VIEW IN TELEGRAM
๐Ÿ‘9โค1
๐Ÿš€ Introducing Esko Post Creator Bot! ๐ŸŽ‰

Create stunning posts in seconds with inline buttons and shareable links! Engage your audience effortlessly.

๐Ÿ‘‰ Get Started Now!

@EpocsBot
๐Ÿ‘5๐Ÿ”ฅ2๐Ÿ‘Œ2๐Ÿคฉ1
๐Ÿ”ฅ Convert Images to Stickers with This TBC Code! ๐Ÿ”ฅ

Command : /conv

if options is None:
Bot.sendMessage(
chat_id=message.chat.id,
text="๐Ÿ™ƒ *Please send an image to convert it into a sticker!*",
parse_mode="Markdown",
reply_to_message_id=message.message_id
)
bot.handleNextCommand("/conv", options=True)
else:
if not message.photo:
bot.sendMessage("โŒ Please send an image to convert it into a sticker! ")
bot.handleNextCommand("/conv", options=True)
raise ReturnCommand()
photo_id = message.photo[-1].file_id
file_data = bot.getFile(photo_id)
file_bytes = bot.downloadFile(file_data.file_path)

Bot.sendSticker(
chat_id=message.chat.id,
sticker=file_bytes,
reply_to_message_id=message.message_id
)


โš ๏ธ Give Credit If U Are Posting In Your Channel.
๐Ÿ‘จโ€๐Ÿ’ป Created By: @EskoDrums
ยฉ๏ธ Credit : @EskoCoding

TBC website : www.telebotcreator.com
How to set : help.telebotcreator.com
๐Ÿ‘5โค2๐Ÿ‘2๐Ÿ”ฅ1๐Ÿคฉ1
๐Ÿค– AI Image Generator TBC Code

Command : /img

if options is None:
    bot.sendMessage("Please provide a prompt. Example:\n`A futuristic city skyline at night.`", parse_mode="Markdown")
    bot.handleNextCommand("/img", options=True)
    raise ReturnCommand()

prompt = encodeURIComponent(message.text)
api_url = f"https://botfather.cloud/Apis/ImgGen/?prompt={prompt}"

response = HTTP.get(api_url)


if response.status_code == 200:
    bot.sendPhoto(response.content)
else:
    bot.sendMessage("Failed to generate image. Please try again later.")

โš ๏ธ Give Credit If U Are Posting In Your Channel.
๐Ÿ‘จโ€๐Ÿ’ป Created By: @EskoDrums
ยฉ๏ธ Credit : @EskoCoding
ยฉ๏ธ API Credit : @JSOrganization

TBC website : www.telebotcreator.com
How to set : help.telebotcreator.com
Please open Telegram to view this post
VIEW IN TELEGRAM
โšก4โคโ€๐Ÿ”ฅ2๐Ÿ‘2๐Ÿ”ฅ2โค1
Forwarded from AdRocket (AdRocket Bot)
๐Ÿš€ Introducing AdRocket Bot โ€“ Promote & Earn! ๐Ÿš€

Want to promote your content for FREE?
@Ad_Rocket_Bot lets you earn points by referring friends and use them to post ads in our big channel(@Ad_Rocket_Channel)! ๐Ÿ“ข

๐Ÿ”ฅ How It Works:
โœ… Earn 1 point per referral
โœ… Post ads for just 10 points
โœ… Pin posts for extra 5 points
โœ… Track stats & top referrers
Start earning & promoting now! Click below to launch your ads! ๐Ÿ‘‡
๐Ÿ”— Start Now
๐Ÿ‘3
๐Ÿ”ค๐Ÿ”ค๐Ÿ”ค๐Ÿ”ค  ๐Ÿ”ค๐Ÿ”ค๐Ÿ”ค๐Ÿ”ค๐ŸŒน๐Ÿ”ค๐Ÿ”ค๐Ÿ”ค

๐Ÿ” ๐Ÿ” ๐Ÿ”  ๐Ÿ” ๐Ÿ” ๐Ÿ” ๐Ÿ” ๐Ÿ” ๐Ÿ” ๐Ÿ” 

โœˆ๏ธโœˆ๏ธโœˆ๏ธโœˆ๏ธโœˆ๏ธโœˆ๏ธโœˆ๏ธโœˆ๏ธ

๐Ÿ’•แŠฅแŠ•แŠณแŠ• แˆˆ แŠขแ‹ต แŠ แˆแˆแŒฅแˆญ แ‰ แ‹“แˆ แ‰ แˆฐแˆ‹แˆ แŠ แ‹ฐแˆจแˆณแ‰ฝแˆ ๐Ÿ’•
Please open Telegram to view this post
VIEW IN TELEGRAM
๐Ÿ‘4๐Ÿฅฐ3๐Ÿ”ฅ2โค1โšก1๐Ÿ‘1๐Ÿ‘Œ1๐Ÿณ1๐Ÿ‘จโ€๐Ÿ’ป1๐Ÿ’˜1๐Ÿ˜Ž1
๐Ÿฆ Update ๐Ÿค–

@EskoIDBot has been updated!

You can now easily obtain user IDs, group IDs, channel IDs, and bot IDs with just a simple click of a button. No more need to forward messages!

๐Ÿ”„ Don't forget! Restart the bot to enjoy the latest updates and features! ๐Ÿš€ ( /start )
Please open Telegram to view this post
VIEW IN TELEGRAM
๐Ÿ‘7๐Ÿ”ฅ2โšก1๐Ÿ‘1
โ‰๏ธ How To Make Support System

๐Ÿงฉ Command:- ๐Ÿ“ž Support

๐Ÿ–ฅ TPY :-
bot.replyText(u,"*๐Ÿ“ž You Are Now In Direct Contact With Our  Administrator*\n_You can send here any message you want to submit, the administrator will receive it and send an answer directly here in chat!_",parse_mode="markdown")
Bot.handleNextCommand("/support#2")

๐Ÿงฉ Command:- /support#2

๐Ÿ–ฅ TPY :-

admin = 1912340531
#Enter Your ID Here
markup = [[InlineKeyboardButton(text='โ†ฉ๏ธ Reply User',callback_data=f'/replyUser {message.chat.id}')]]
markup = InlineKeyboardMarkup(markup)
bot.sendMessage(chat_id=admin,text=f"*๐Ÿ“ฉ New Support Message From:\n\nโžก๏ธ Name: {message.chat.first_name}\nโžก๏ธ Username: @{message.chat.username}\nโžก๏ธ ID: {message.chat.id}\n\n๐Ÿ“ Message: {message.text}*",parse_mode="markdown",reply_markup=markup)
bot.replyText(u,f"*โœ… Message Sent To The Administrator:* _{message.text}_",parse_mode="markdown")

๐Ÿงฉ Command:- /replyUser

๐Ÿ–ฅ TPY :-

if message.text.startswith('/replyUser'):
    raise ReturnCommand
bot.replyText(u,"*โžก๏ธ Enter Your Message For User*",parse_mode="markdown")
Bot.handleNextCommand("/replyUser#2",params)

๐Ÿงฉ Command:- /replyUser#2

๐Ÿ–ฅ TPY :-

bot.sendMessage(chat_id=options,text=f"*๐Ÿ“ฉ New Support Message From Admin:\n\n๐Ÿ“ Message:* _{message.text}_",parse_mode="markdown")
bot.replyText(u,f"*โ†ฉ๏ธ Reply Sent To User:* _{message.text}_",parse_mode="markdown")


๐Ÿ‘จโ€๐Ÿ’ป Created By: Unknown

TBC website : www.telebotcreator.com
How to set : help.telebotcreator.com
๐Ÿ‘5๐Ÿ”ฅ4๐Ÿฅฐ1๐Ÿ‘จโ€๐Ÿ’ป1
โœจ Introducing Stylite Bot โ€“ Your Ultimate Font Changer!

Ready to level up your texting game? Say hello to Stylite Bot โ€“ the most stylish font changer on Telegram!

With just a few taps, you can:
โ€ข Instantly convert your text into 20+ unique fonts
โ€ข Use it inline in any chat โ€“ no need to open the bot!
โ€ข Add flair to your bios, usernames, posts, and more
From ๐“ฌ๐“พ๐“ป๐“ผ๐“ฒ๐“ฟ๐“ฎ to แดษชษดษช, ๊œฐแด€ษดแด„ส, ๐“พ๐“ท๐“ญ๐“ฎ๐“ป๐“ต๐“ฒ๐“ท๐“ฎ and even ๐Ÿ…’๐Ÿ…˜๐Ÿ…ก๐Ÿ…’๐Ÿ…›๐Ÿ…”๐Ÿ…“ fonts โ€“ Stylite has it all!

Try it now: @StyliteBot
Unleash your style, one font at a time.
1๐Ÿ‘3โค2๐Ÿ”ฅ2๐Ÿคฉ1
๐Ÿค– Random Quote Sender TBC Code ๐Ÿฆ

Command : /quote

api_url = "https://zenquotes.io/api/random"
response = HTTP.get(api_url)
   
if response.status_code == 200:
    data = response.json()
    quote = data[0]["q"]
    author = data[0]["a"]
       
    message_text = f"โ {quote} โž\n\nโ€” *{author}*"
    bot.sendMessage(chat_id=u, text=message_text, parse_mode="Markdown")
else:
    bot.sendMessage("Failed to fetch a quote. Please try again later.")

โš ๏ธ Give Credit If U Are Posting In Your Channel.
๐Ÿ‘จโ€๐Ÿ’ป Created By: @EskoDrums
ยฉ๏ธ Credit : @EskoCoding

TBC website : www.telebotcreator.com
How to set : help.telebotcreator.com
Please open Telegram to view this post
VIEW IN TELEGRAM
โคโ€๐Ÿ”ฅ3๐Ÿ‘3๐Ÿ”ฅ3๐Ÿ‘จโ€๐Ÿ’ป3
๐Ÿ”ฃแŠฅแŠ•แŠณแŠ• แˆˆแ‰ตแŠ•แˆณแŠค แ‰ แ‹“แˆ แ‰ แˆฐแˆ‹แˆ แŠ แ‹ฐแˆจแˆณแ‰ฝแˆ๐Ÿ”ฃ

       ๐Ÿ”ฃแˆ˜แˆแŠซแˆ แ‰ แ‹“แˆ แ‹ญแˆแŠ•แˆ‹แ‰ฝแˆ๐Ÿ”ฃ

๐Ÿ” ๐Ÿ” ๐Ÿ” ๐Ÿ” ๐Ÿ”  ๐Ÿ” ๐Ÿ” ๐Ÿ” ๐Ÿ” ๐Ÿ” ๐Ÿ” 

     ๐Ÿ˜ต๐Ÿค”๐Ÿ™๐Ÿ˜๐Ÿ˜คโ˜น๏ธโ˜น๏ธ๐Ÿ™โ˜น๏ธ
Please open Telegram to view this post
VIEW IN TELEGRAM
๐Ÿ‘5๐Ÿ”ฅ4๐Ÿฅฐ1๐Ÿคฉ1๐Ÿพ1๐Ÿค—1
๐Ÿค– Forward Message Broadcast TBC Code ๐Ÿฆ

โžก๏ธ Command : /broadcast

admin_id = "1254745064" #replace with your own id

if admin_id != str(u):
    raise ReturnCommand()

if options is None:
    bot.replyText(
        u,
        "<b>๐ŸŽ™๏ธ Send Any Message to Broadcast\n\nTo Cancel: /cancel</b>",
        parse_mode="html",
    )
    Bot.handleNextCommand("/broadcast", options=True)
    raise ReturnCommand()

if message.text == "/cancel":
    bot.sendMessage(
        chat_id=u, text="<b>โŒ Broadcast Cancelled</b>", parse_mode="html"
    )
    raise ReturnCommand()

response = Bot.broadcast(
    function="forward_message",
    from_chat_id=message.chat.id,
    message_id=message.message_id,
)

success_msg = (
    "Broadcast completed successfully! โœ…"
    if response and 'broadcast_id' in response
    else "Broadcast failed! โŒ"
)
bot.sendMessage(chat_id=u, text=success_msg)

โš ๏ธ Give Credit If U Are Posting In Your Channel.
๐Ÿ‘จโ€๐Ÿ’ป Created By: @EskoDrums
ยฉ๏ธ Credit : @EskoCoding


TBC website : www.telebotcreator.com
How to set : help.telebotcreator.com
Please open Telegram to view this post
VIEW IN TELEGRAM
โค4๐Ÿ‘3๐Ÿ”ฅ2๐Ÿคฉ1๐Ÿ‘จโ€๐Ÿ’ป1