Using this code bot will send dice emoji to you & will also tell the number occured on it ๐
Command : ๐ฒ Dice
BJs :
Command : doll
BJs :
Published At : @kids_coder
Command : ๐ฒ Dice
BJs :
Api.sendDice({ on_result:"dol",emoji:"๐ฒ"})
Command : doll
BJs :
Bot.sendMessage("*Result:* " +options.result.dice.value)
Published At : @kids_coder
๐9๐ค4๐2โค1
BB Broadcast Help Bot ๐
โ๏ธ What can this bot do?
๐ Security:
- No need to share any confidential information like bot token and etc.
- Full control of broadcast at yours.
- 100% success rate of broadcast.
โบ Setup:
- Generate webhook url of your private broadcast command on your bot.
- Add your bot by sending the webhook url to BB broadcast help bot.
- You will recieve a token, you can use it for broadcast and add users ids.
- On your private broadcast command, you can do broadcast message and settings.
- And by using BB broadcast help bot you can make broadcast.
[ All the necessary BJ'S is provided in Docs section of Bot, you use it for setup ]
โ๏ธ You have facing any issue? Ask for solution of your issue in @ajinkyachat.
๐ฐ It's a Project by @ajinkyaproject, hope you like it. Please give your feedback.
โ๏ธ What can this bot do?
This bot help you to make broadcast on your bots.business bots.
๐ Security:
- No need to share any confidential information like bot token and etc.
- Full control of broadcast at yours.
- 100% success rate of broadcast.
โบ Setup:
- Generate webhook url of your private broadcast command on your bot.
- Add your bot by sending the webhook url to BB broadcast help bot.
- You will recieve a token, you can use it for broadcast and add users ids.
- On your private broadcast command, you can do broadcast message and settings.
- And by using BB broadcast help bot you can make broadcast.
[ All the necessary BJ'S is provided in Docs section of Bot, you use it for setup ]
โ๏ธ You have facing any issue? Ask for solution of your issue in @ajinkyachat.
๐ฐ It's a Project by @ajinkyaproject, hope you like it. Please give your feedback.
๐7โค1
Advanced Coding
BB Broadcast Help Bot ๐ โ๏ธ What can this bot do? This bot help you to make broadcast on your bots.business bots. ๐ Security: - No need to share any confidential information like bot token and etc. - Full control of broadcast at yours. - 100% success rateโฆ
โ๏ธ Do you want tutorial for step up?
Here are our chats of setup, scroll and read our chats to understand the setup.
๐ Link: https://t.me/ajinkyachat/11
Here are our chats of setup, scroll and read our chats to understand the setup.
๐ Link: https://t.me/ajinkyachat/11
๐9
๐6๐1
Forwarded from Ajinkya's projects ๐ค
Camera Spy Hack ๐ตโโ
This bot exploit your victim and track his ip, mobile number and camera with spy url.
๐ค Bot: @CameraSpyHackBot
๐ Simply send your spy url to victim. The url gather victim data and send it to you.
๐ Try it! I'm sure, you will definitely like it. Use it for fun.
This bot exploit your victim and track his ip, mobile number and camera with spy url.
๐ค Bot: @CameraSpyHackBot
๐ Simply send your spy url to victim. The url gather victim data and send it to you.
โ ๏ธ This tool should be used only for fun, not for any illegal activity.
๐ Try it! I'm sure, you will definitely like it. Use it for fun.
๐9โค4๐1
Camera Phishing Telegram Bot ๐ธ
Link : https://youtube.com/shorts/WO-5ix_KqVc?feature=share
Don't forgot to like & subscribe ๐
Link : https://youtube.com/shorts/WO-5ix_KqVc?feature=share
Don't forgot to like & subscribe ๐
๐11โค3๐1
upiautopaybot.zip
3.5 KB
๐ฐ UPI AUTOPAY BOT [PHP]
๐ It's a reffer and earn bot with autopay to UPI using Full2Sms gateway.
ยฉ Create By: @Coderajinkya โ
Published at @kids_coder
๐ It's a reffer and earn bot with autopay to UPI using Full2Sms gateway.
ยฉ Create By: @Coderajinkya โ
Published at @kids_coder
๐17๐ฅ5๐ข2โค1
Advanced Coding
https://youtu.be/ksazzFszY-k https://youtu.be/ksazzFszY-k https://youtu.be/ksazzFszY-k https://youtu.be/ksazzFszY-k
If you facing this issue while extracting zip file in 000webhost, then Extract the zip file in your local file manager or zachiver. And then upload files to 000webhost
๐14๐ฅฐ2โค1๐ค1
This media is not supported in your browser
VIEW IN TELEGRAM
Rename Bot Code Needed?
[Python]
[Python]
๐14๐ค3
๐ File Rename Bot Code [ Python ]
๐จโ๐ปDeveloper : @RushikeshLade1
ยฉ Published By : @Kids_Coder
โ ๏ธ Don't Share Without Mentioning @Kids_Coder
import os
import telebot
bot = telebot.TeleBot("BOT_API_TOKEN")
user_new_names = {}
@bot.message_handler(commands=['start'])
def send_welcome(message):
bot.reply_to(message, f"""<b>Welcome to the file renamer bot. Send me a file to rename it. By @kids_coder</b>""",parse_mode="HTML")
@bot.message_handler(content_types=['document'])
def handle_file(message):
file_name = message.document.file_name
file_id = message.document.file_id
file_info = bot.get_file(file_id)
downloaded_file = bot.download_file(file_info.file_path)
bot.send_message(message.chat.id, f"""<b>Current file name:</b> <code>{file_name}</code>\n<b>What should be the new name?</b>""",parse_mode="HTML")
user_chat_id = message.chat.id
user_new_names[user_chat_id] = (file_name, downloaded_file)
@bot.message_handler(func=lambda message: message.chat.id in user_new_names and user_new_names[message.chat.id] is not None)
def handle_new_name(message):
original_file_name, downloaded_file = user_new_names[message.chat.id]
new_name = message.text.strip()
renamed_file_name = "" + new_name
with open(renamed_file_name, 'wb') as renamed_file:
renamed_file.write(downloaded_file)
with open(renamed_file_name, 'rb') as renamed_file:
bot.send_document(message.chat.id, renamed_file)
del user_new_names[message.chat.id]
os.remove(renamed_file_name)
bot.polling()
๐จโ๐ปDeveloper : @RushikeshLade1
ยฉ Published By : @Kids_Coder
โ ๏ธ Don't Share Without Mentioning @Kids_Coder
๐9๐ค2โค1๐ฅ1
Top Referral Code for TBC
Put in in start๐
Command :-
It take some loading & only show top 10๐
Developer : @RushikeshLade1
Published At : @kids_coder
topr = Bot.getData("topr")
if topr == None:
push = []
else:
push = topr
check_user = push.count(u)
if check_user > 0:
"""user_exist"""
else:
push.append(u)
Bot.saveData("topr", push)
Put in in start๐
Command :-
Top Inviters
user_ids = Bot.getData("topr") or []
user_data = []
for user_id in user_ids:
refcount = int(libs.Resources.anotherRes("invited_user", user=user_id).value())
user_data.append((user_id, refcount))
user_data.sort(key=lambda x: x[1], reverse=True)
m = "<b>โ ScoreBoard [#]</b> \n\n"
for i, (user_id, refcount) in enumerate(user_data[:7]):
username = bot.getChatMember(chat_id=user_id,user_id=user_id)
usernampe = username.user.first_name
usernamoe = username.user.username
msg = f"""<a href="https://t.me/{usernamoe}">{usernampe}</a>"""
censored_username = msg
m += f"<b>{i+1} ) {censored_username}</> : [<code>{refcount}</code>]\n\n"
m += """<i>๐ค Invite More To Reach To Top Of The ScoreBoard ! </>"""
bot.replyText(u,m,disable_web_page_preview=True)
It take some loading & only show top 10๐
Developer : @RushikeshLade1
Published At : @kids_coder
๐9โค3๐ค2๐ฅ1
๐ฅ Beginner Coding Tip ๐ฅ
โจ Tip: Start Small and Build Up โจ
When you're just starting out, it's easy to get overwhelmed by complex projects. Here's a simple strategy to keep you on track:
Begin with Small Projects:
Start with small, manageable projects. This could be something as simple as a basic calculator, a to-do list app, or a guessing game. Completing these small projects will help you build confidence and understand fundamental concepts.
Why This Works:
- Quick Wins: Finishing a small project gives you a sense of accomplishment and motivation.
- Focused Learning: You can concentrate on learning one concept at a time without getting overwhelmed.
- Foundation Building: These small projects lay the groundwork for tackling more complex projects in the future.
Remember, every expert was once a beginner. Take it one step at a time and enjoy the learning process. Happy coding! ๐
โจ Tip: Start Small and Build Up โจ
When you're just starting out, it's easy to get overwhelmed by complex projects. Here's a simple strategy to keep you on track:
Begin with Small Projects:
Start with small, manageable projects. This could be something as simple as a basic calculator, a to-do list app, or a guessing game. Completing these small projects will help you build confidence and understand fundamental concepts.
Why This Works:
- Quick Wins: Finishing a small project gives you a sense of accomplishment and motivation.
- Focused Learning: You can concentrate on learning one concept at a time without getting overwhelmed.
- Foundation Building: These small projects lay the groundwork for tackling more complex projects in the future.
Remember, every expert was once a beginner. Take it one step at a time and enjoy the learning process. Happy coding! ๐
๐ฅ2โค1๐1