Advanced Coding
24.9K subscribers
150 photos
24 videos
21 files
110 links
Owner :- @MiddleDealer
Download Telegram
πŸ‘β€πŸ—¨Command: πŸ™ŒπŸ» Invite

πŸ“TBL:

━━━━━━━━━━━━━━━━━━━━━━━━

var link = Libs.refLib.getLink(bot.name)

Bot.sendMessage(
"<b>πŸ”— Your refferral link is:</b>\n"+link+
"\n\n<u>πŸ”° On each referral you will receive β‚Ή1 referral bonus</u>",
{parse_mode:"html"}
)



━━━━━━━━━━━━━━━━━━━━━━━━

πŸ”°Creator: @coderajinkya
πŸ“‹ Copyright:
@asxdev
πŸ“°Publisher:
@Kids_Coder
πŸ‘β€πŸ—¨Command: 🎁 Bonus

πŸ“TBL:

━━━━━━━━━━━━━━━━━━━━━━━━

var last = User.getProperty("bonusTime")
var now = new Date().getTime()

if(last && now-last < 86400000){
Bot.sendMessage("*❌ You already claimed today's bonus.*")
return
}

Libs.ResourcesLib.userRes("balance").add(1)
User.setProperty("bonusTime",now,"integer")

Bot.sendMessage(
"πŸŽ‰ <b>πŸŽ‰ Congrats, You received β‚Ή1 bonus!</b>",
{parse_mode:"html"}
)


━━━━━━━━━━━━━━━━━━━━━━━━

πŸ”°Creator: @coderajinkya
πŸ“‹ Copyright:
@asxdev
πŸ“°Publisher:
@Kids_Coder
❀2
πŸ‘β€πŸ—¨Command: πŸ—‚ Wallet

πŸ“TBL:

━━━━━━━━━━━━━━━━━━━━━━━━

var wallet = User.getProperty("wallet")

if(!wallet){
wallet = "Not Set"
}

Api.sendMessage({
text:
"<b><u>πŸ’³ Wallet Settings</u></b>\n\n"+
"πŸ’‘ <b>Your Currently Setted Wallet:</b>\n"+
"➑️ <code>"+wallet+"</code>\n\nπŸ—‚ <u>It Will Be Used For Withdrawals</u>",
parse_mode:"html",
reply_markup:{
inline_keyboard:[
[{text:"βš™οΈ Setup Wallet", callback_data:"setupwallet"}]
]
}
})



━━━━━━━━━━━━━━━━━━━━━━━━

πŸ”°Creator: @coderajinkya
πŸ“‹ Copyright:
@asxdev
πŸ“°Publisher:
@Kids_Coder
❀1
πŸ‘β€πŸ—¨Command: setupwallet

πŸ“„ Answer: *✏️ Now Send Your UPI ID To Use It For Future Withdrawals.*

βœ… Wait For Answer: ON

πŸ“TBL:

━━━━━━━━━━━━━━━━━━━━━━━━

User.setProperty("wallet",message,"string")

Bot.sendMessage(
"<b>βœ… Wallet saved successfully.</b>\n\n"+
"πŸ’³ <code>"+message+"</code>",
{parse_mode:"html"}
)



━━━━━━━━━━━━━━━━━━━━━━━━

πŸ”°Creator: @coderajinkya
πŸ“‹ Copyright:
@asxdev
πŸ“°Publisher:
@Kids_Coder
πŸ‘β€πŸ—¨Command: πŸ’³ Withdraw

πŸ“TBL:

━━━━━━━━━━━━━━━━━━━━━━━━

var wallet = User.getProperty("wallet")

if(!wallet){
Bot.sendMessage("*❌ Set wallet first.*")
return
}

var bal = Libs.ResourcesLib.userRes("balance").value()

if(bal < 10){
Bot.sendMessage("*❌ Minimum withdraw is β‚Ή10.*")
return
}

Bot.sendMessage(
"*πŸ’³ Send withdraw amount.\n\nYour available balance: β‚Ή"+bal+"*"
)

Bot.runCommand("/withdrawAmount")



━━━━━━━━━━━━━━━━━━━━━━━━

πŸ”°Creator: @coderajinkya
πŸ“‹ Copyright:
@asxdev
πŸ“°Publisher:
@Kids_Coder
❀1
πŸ‘β€πŸ—¨Command: /withdrawAmount

βœ… Wait For Answer: ON

πŸ“TBL:

━━━━━━━━━━━━━━━━━━━━━━━━

var amount = parseInt(message)
var bal = Libs.ResourcesLib.userRes("balance").value()

if(amount < 10){
Bot.sendMessage("*❌ Minimum withdraw β‚Ή10.*")
return
}

if(amount > bal){
Bot.sendMessage("*❌ Amount exceeds balance.*")
return
}

Libs.ResourcesLib.userRes("balance").remove(amount)

var wallet = User.getProperty("wallet")

Bot.sendMessage(
"βœ… <b>Withdraw Request Placed!</b>\n\n"+
"πŸ’° Amount: β‚Ή"+amount+"\n"+
"πŸ’³ Wallet: "+wallet+"\n\n"+
"⏳ Admin will process soon.",
{parse_mode:"html"}
)

Api.sendMessage({
chat_id:"@payoutchannel",
text:
"<b>πŸ’Έ New Withdrawal Request</b>\n\n"+
"πŸ‘€ Name: "+user.first_name+"\n"+
"πŸ”— Username: @"+user.username+"\n"+
"πŸ†” ID: "+user.telegramid+"\n\n"+
"πŸ’° Amount: β‚Ή"+amount+"\n"+
"πŸ’³ Wallet: "+wallet+"\n\n"+
"πŸ€– Bot: @"+bot.name,
parse_mode:"html"
})



━━━━━━━━━━━━━━━━━━━━━━━━

πŸ”°Creator: @coderajinkya
πŸ“‹ Copyright:
@asxdev
πŸ“°Publisher:
@Kids_Coder
❀3
πŸ‘β€πŸ—¨Command: πŸ“Š Statistics

πŸ“TBL:

━━━━━━━━━━━━━━━━━━━━━━━━

var total = Libs.ResourcesLib.anotherChatRes("totalUsers","global")

Bot.sendMessage(
"<b>πŸ“Š Bot Statistics\n\nπŸ‘₯ Total Bot Users: "+total.value()+" Users\n\n"+
"πŸ‘‘ Bot creator : @CoderAjinkya</b>",
{parse_mode:"html"}
)


━━━━━━━━━━━━━━━━━━━━━━━━

πŸ”°Creator: @coderajinkya
πŸ“‹ Copyright:
@asxdev
πŸ“°Publisher:
@Kids_Coder
❀6
⁉️Telebot Host: Referral Bot Codes

πŸ“šDescription: It's a Referral Bot Codes. Using this code, you can host your own referral bot on
TeleBotHost.com. Fast & Ad-Free

━━━━━━━━━━━━━━━━━━━━━━━━

πŸ‘¨β€πŸ’» Codes Start At : Click Here To View

πŸ“„ Codes End At : Click Here To View


━━━━━━━━━━━━━━━━━━━━━━━━

πŸ”°Creator: @coderajinkya
πŸ“‹ Copyright:
@asxdev
πŸ“°Publisher:
@Kids_Coder
❀7πŸ‘3πŸŽ‰1
πŸ”₯ Battle Royale (BR) - Solo by @Mohit_ESports with a Prize Pool of 225 INR

πŸ†” Tournament ID:
ME-LE1B5zy9wi5ILMHbxpTk3IhPS

πŸ₯‡ 1st Prize: 100 INR
πŸ₯ˆ 2nd Prize: 75 INR
πŸ₯‰ 3rd Prize: 50 INR
πŸ§Ÿβ€β™‚οΈ Per Kill: 0 INR
πŸ“… Date: 20/03/2026
⌚ Time: 09:00 PM
βš” Minimum Players: 20
βš” Maximum Players: 48

πŸ’² Entry Fee: 0 INR
❀13
❀️ @TikShortBot

😍 Don't think too much.... Just try! Maybe you'll like it!
πŸ˜‰ Enjoy!
❀9
πŸ”° Tutorial: How to Host Refer & Earn Telegram Bot On Telebothost.com

πŸ”— Link: https://youtu.be/2y2qsJTArDA

❀️ Do Like & Subscribe β€’ Watch Till End
❀21πŸ‘3
Surprise coming for bot maker😁
❀11
βœ… New Bot Added:

━━━━━━━━━━━━━━━━━━━━━━━━

πŸ€– @InstagramSaverDLbot

πŸ“₯ The fastest bot for downloading photos, videos, and stories from Instagram.


┣━ πŸ–Ό Post
┣━ 🎬 Reels
┣━ 🎞 Stories

πŸ”Ž Use Inline Mode in Any Chat:
Example: @instagramsaverdlbot + link


━━━━━━━━━━━━━━━━━━━━━━━━

πŸ‘¨β€πŸ’» Created by: @CoderAjinkya
1❀22πŸ‘2πŸŽ‰1
⚠️ Telegram is currently experiencing instability

We are observing delays and interruptions in the Telegram Bot API.
Because of this, you may experience:
β€” delays in message delivery
β€” temporary errors in bots

This is a global issue on Telegram’s side.

Check status: https://downforeveryoneorjustme.com/telegram
❀13πŸ”₯2
⁉️BJS: Auto Reaction Bot Code

πŸ“šDescription: It's an Auto Reaction Bot code. Using this, your bot will automatically react to channel posts.


πŸ‘β€πŸ—¨Command: * (master command)

πŸ“BJS:

var request2 =JSON.parse(request)

if(request2.channel_post){
var msgid = request2.channel_post.message_id
var ch = request2.channel_post.sender_chat.id

var myEmoji = ["πŸ‘","❀️","πŸ”₯","πŸ₯°","πŸŽ‰","🀩","πŸ™","πŸ‘Œ","😍","❀‍πŸ”₯","πŸ’―","⚑️","πŸ†","πŸ€—","😘","😎"];

var doEmoji = myEmoji[Math.floor(Math.random() * myEmoji.length)];

HTTP.post({
url: "https://api.telegram.org/bot" + bot.token + "/setMessageReaction",
body: {
chat_id: ch,
message_id: msgid,
reaction: JSON.stringify([
{
type: "emoji",
emoji: doEmoji,
is_big: true
}
])
}
});

return

}


πŸ”°Creator: @coderajinkya
πŸ“‹ Copyright:
@asxdev
πŸ“°Publisher:
@Kids_Coder
❀16πŸŽ‰2
πŸ€– @igxdbot (Instagram Downloader )

πŸ“₯ The fastest bot for downloading photos, videos, and stories from Instagram.


┣━ πŸ–Ό Post
┣━ 🎬 Reels
┣━ 🎞 Stories

πŸ”Ž Use Inline Mode in Any Chat:
Example: @igxdbot + link

πŸ‘¨β€πŸ’» Created by: @CoderAjinkya
❀13πŸ‘2πŸ”₯2
⁉️BJS: Styled & Premium Emoji Inline Keyboard

πŸ“šDescription: This code lets you create styled inline buttons with different colors and add premium emojis to them.


πŸ‘β€πŸ—¨Command: Any (as you wish)

πŸ“BJS:

var emoji_id = "6255659242884174461"

var button = [
[
{ text: "Click Me", callback_data: "styled_btn", style: "success" }
],
[
{ text: "Emoji", callback_data: "emoji_btn", icon_custom_emoji_id: emoji_id }
]
]

Api.sendMessage({
text: "<b>Buttons Test</b>",
parse_mode: "HTML",
reply_markup: { inline_keyboard: button }
})


You can use three button styles in inline keyboards:
Blue = "primary"
Green = "success"
Red = "danger"

Use like:
"style": "primary"


πŸ”°Creator: @coderajinkya
πŸ“‹ Copyright:
@asxdev
πŸ“°Publisher:
@Kids_Coder
❀21πŸ‘3πŸŽ‰2
βš οΈβš οΈβš οΈβš οΈβš οΈπŸ“‘βž‘οΈ

πŸ”Έ Earn Big Money By Completing social media tasks.

πŸ’Ž Current available task - 1 ( 0.07$ reward )
πŸ˜” Referral Commission - 30% ( You can earn upto 0.065$ per person from this first task just by referring )

πŸ’΅ Withdrawals:- Withdrawals Are Instant & Automatic :)

✨ Bot Link: https://t.me/TaskBirdBot?start=ref_5996155721
Please open Telegram to view this post
VIEW IN TELEGRAM
1❀10πŸ‘6
πŸš€ KWICK MARKET BOT β€” EARN

Sell anything digital β€” fast, simple, inside Telegram.

No website. No setup. No headache.

πŸ’» Codes & Bots
πŸ“ Files & Products
πŸ’Ό Freelance Services

Post β†’ Get buyers β†’ Get paid πŸ€‘

Clean. Direct. Powerful.

πŸ€– Start now: KwickMarketBot

πŸ†Early sellers get maximum reach + rewards
Please open Telegram to view this post
VIEW IN TELEGRAM
1❀14🀩5
@CheapSMMServiceXBot is working totally fine πŸ”₯
❀15
Based on all of our previous conversations, which movie character do you think I resemble the most ??One Word ...

Comment YourπŸ‘‡
26❀9