New Advanced Codingsβ„’
482 subscribers
70 photos
1 video
1 file
125 links
Hello Friends Welcome To Our Channel We Will Provides You Here Advanced BJS, PHP ,JS, HTML , Codes if you didn't joined our Channel let's join πŸ”₯
Download Telegram
New Advanced Codingsβ„’
Guys You Need YouTube Force Subscribe BJs
Complete 360 Subscriber Because You Are Leaving Our Channel
Guys You Are Leaving Our Channel
For Deleting Previous Message Use This

if(request.data){
var message_id = request.message.message_id
var chat_id = request.message.chat.id

Api.deleteMessage({
chat_id : chat_id,
message_id : message_id
})

}
USE IT FOR ALL TYPE OF DELETE PREVIOUS MSG

Api.deleteMessage({ message_id: request.message.message_id })
Command = Subscribe
BJs =
var buttons = [
{title: "πŸ˜‡ Subscribe", url: "https://www.youtube.com/c/argamingwarrior"},
{title: "πŸ¦‹ Subscribed", command: "Pending" }
];
Bot.sendInlineKeyboard(buttons, "*⭐️ Must Subscribe Our Yt Channel To Use The Bot..*");
Command = Pending
BJs =
if(request.data){
var message_id = request.message.message_id
var chat_id = request.message.chat.id

Api.deleteMessage({
chat_id : chat_id,
message_id : message_id
})

}
Bot.sendMessage("*⚠️Not Subscribed*")
var buttons = [
{title: "πŸ˜‡ Subscribe", url: "https://www.youtube.com/c/argamingwarrior"},
{title: "πŸ¦‹ Subscribed", command: "main_menu" }
];
Bot.sendInlineKeyboard(buttons, "*🚫 Not Subscribed + bell Youtube Channel🚧 \n\n❌Must Subscribe + bell Channel To Use Our Bot And Earn From It....*");;
Go To Your Check Command Click Edit BJS Here Is A Message Bot.runCommand("main_menu") Replace To Bot.runCommand("Subscribe")
Share Our Channel For Free BJs

Any BJs You Want Inbox Here - @BotsBusinesss
Example -
#request_code
BJs Name - any

Please Don't Ask For Coin Payment BJs
Please write BJs Name In Group I Will Upload
New Advanced Codingsβ„’ pinned Β«Share Our Channel For Free BJs Any BJs You Want Inbox Here - @BotsBusinesss Example - #request_code BJs Name - any Please Don't Ask For Coin Payment BJs Please write BJs Name In Group I Will UploadΒ»
⁉️ How To Send Poll

Api.sendPoll({
question: "Question Name",
options:["Option 1","Option 2"]})


You Can Add More Options
1 Dollar Google Play Redeem Code Giveway

Follow On Instagram - https://instagram.com/aman_gaming_01

RANDOM GIVEWAY

Giveaway By - @FF_Partner_Program
This media is not supported in your browser
VIEW IN TELEGRAM
BB Points Auto Pay BJs

Go To @BBPointBot And Use /getTransferUrl To Generate Your Webhook Url And Must Copy You Url Don't Share Your Url To Else.

Command = πŸ“₯ Withdraw BB Points

BJs = var balance = Libs.ResourcesLib.userRes("balance")
if( balance.value() > 1){
let webhookUrl = Libs.Webhooks.getUrlFor({
command: "onBBTransfer",
user_id: user.id
})

Bot.sendMessage("Transfer in progress")

HTTP.post( {
url: "http://Your Personal Secret Webhook Url From Step 1.",

body: {
// BB Points amount
amount: 3,
// transfer BB Points for current user
to_tg_id: user.telegramid,
// note for @bbpoints channel
note: "*Withdraw From " + bot.name+"*",
webhookUrl: webhookUrl
}
} )
}else{
Bot.sendMessage("*πŸ’Ž You Have Insufficient BB Point For Withdraw.*")
}


πŸ†• New Command = onBBTransfer

BJs = var json = JSON.parse(content);

// You can inspect all passed data:
// Bot.inspect(json)

if(json.error){
Bot.sendMessage("Error: " + json.error.title);
Bot.sendMessage("Code: " + json.error.code);
// error codes:
// 1 - You do not have BB Points for transfer
return
}

// BB Points transferred to current user
let admin_bb_points = json.owner.bb_points - json.amount;

Bot.sendMessage(
"*πŸ’Ž BB Points Transferred Successfully.\n\n♻️ " +
json.amount + "πŸ’Ž BB Points Transfer To Tg Id : " + user.telegramid +

"\n\nπŸ§‘πŸ»β€πŸ’» Admin : @" + json.owner.username +
"\n Have Now " + String(admin_bb_points) + " πŸ’Ž BB Points.*"
)
Please Write In This Group Which BJs You Want - @BotsBusinesss
450 Subscriber On I Will Give Channel Broadcasting BJs
Thanks You Guys
Command = Channel Broadcasting

Answer = Send Channel @username In You Want Channel Broadcasting

Wait For Answer = On

BJs = let adm = Bot.getProperty("adm"+user.telegramid)
if (adm=="ADMIN") {
let cb =
Bot.setProperty("cb",message, "string")
Bot.getProperty("cb")
Bot.runCommand("CB2")
}else{
Bot.sendMessage("*❌ You Need To Be An Admin To Do This*")
}
Command = CB2

Answer = Enter A Message To Broadcast In The Channel

Wait For Answer = On

BJs =
let adm = Bot.getProperty("adm"+user.telegramid)
if (adm=="ADMIN") {
var cb =
Bot.getProperty("cb")
Api.sendMessage({
chat_id: ""+cb+"",text : ""+message+"",disable_web_page_preview:true})
Bot.sendMessage("*βœ… Successfully Message Was Sent*")
}else{
Bot.sendMessage("*❌ You Need To Be An Admin To Do This*")
}