ADVANCE BOT CODERS
1.56K subscribers
54 photos
2 videos
26 files
78 links
Hello Guys Welcome To Our channel Here You Will Get All type bot Codes.

๐Ÿšถโ€โ™‚๏ธ Road To 10000 Subscribers

โœ”๏ธ CONTACT ME : @Armanidrisi_bot

๐Ÿฑ GITHUB : https://github.com/Armanidrisi
Download Telegram
๐Ÿ”‘ Command - Your Command
๐Ÿ–ฅBJS :-

var bal = Libs.ResourcesLib.userRes("balance")
var buttons = [
[
{ title: "5 INR", command: "/ondart" }
],
[{ title: "Back ", command: "/Back" }]
]

Bot.sendInlineKeyboard(
buttons,
"Here you can play darts and win more INR.\nSet the amount of your bet or choose from suggested options.\n\nThe rules are simple:\n\nIf you hit red - you win x2 of the bet.\nWhite or off - you lose the bet.\n\nAvailable balance: " +
bal.value(6).toFixed(6) +
" INR"
)



๐Ÿ•น Command - /ondart
๐Ÿ–ฅ BJS :-
var balance = Libs.ResourcesLib.userRes("balance")
var result = options.result.dice.value
if (6 == result) {
balance.add(10)
Bot.sendMessage("You win")
}
if (5 == result) {
balance.add(-5)
Bot.sendMessage("You lose")
}
if (4 == result) {
balance.add(-5)
Bot.sendMessage("You win")
}
if (3 == result) {
balance.add(-5)
Bot.sendMessage("You lose")
}
if (2 == result) {
balance.add(8)
Bot.sendMessage("You win")
}
if (1 == result) {
balance.add(-5)
Bot.sendMessage("You lose")
}
๐Ÿ‘6
Bet And Earn Codes
๐Ÿ‘3
๐Ÿ’ Presenting the All New @ArmanOfficialSeller_Bot, most Cheap BB Codes and Bots Shop!

๐Ÿ…ฐ๏ธ Why @ArmanOfficialSeller_Bot?
๐Ÿ…ฑ๏ธ Because Our Shop is Most Powerful, Stable, Advanced, having Each & Every type of Bjs/Bot for BB Bot Developers!

๐Ÿ…ฐ๏ธ Bot Features?
๐Ÿ…ฑ๏ธ Fully Automated Bot with Automatic Buy Bots & Codes, Automatic Deposits, Seller Panel, and Many More!

๐Ÿ…ฐ๏ธ Special Features?
๐Ÿ…ฑ๏ธ 1) Add Your Bots and Codes to Bag, to Buy Later.
2) Claim Multiple Bonus : Daily, Weekly, Monthly!

๐Ÿ…ฐ๏ธ Deposit Options?
๐Ÿ…ฑ๏ธ Our Shop has Paytm deposit, And Crypto Deposit is Coming Soon.

(ยข) @ArmanOfficialSeller_Bot, Available 24 hours a day and 7 days a week in your service.
# @ArmanOfficialSeller_Bot
๐Ÿ‘1
Anyone Have Withdraw history bjs please send me
๐Ÿ”ฅ2๐Ÿฅด1
Lene ke liye sb comment kar dete hai ab dene ki baat aayi to kisi ka comment nahi aaya๐Ÿ˜ข
๐Ÿ‘1
๐Ÿ“ฑHalf Mob No. BJS
โž–โž–โž–โž–โž–โž–โž–โž–โž–โž–

var num = User.getProperty("wallet")
var msg = "847774556230๐ŸคณPaid Address: "+num.slice(0,4)+"***"+num.slice(8,10)+""

Api.sendMessage({
message: msg,
parse_mode: "html",
disable_web_page_preview: true
})
๐Ÿ‘1
Transfer Balance โžฟ BJS
โž–โž–โž–โž–โž–โž–โž–โž–

โ™ป๏ธ Command = Transfer

โ™ป๏ธ Answer = Enter Your Friend Telegram Id For Transfer Your Balance.

โ™ป๏ธ Wait For Answer = On

โ™ป๏ธ BJS = Bot.run({
command: "/Transfer",
options: { tgid : message }
})


๐Ÿ›‘ Now, Make A New Another Command.

โ™ป๏ธ Command = /Transfer

โ™ป๏ธ Answer = ๐Ÿ›‘ Enter An Amount For Sending To Your Friend's Account.

โš ๏ธ Note = It Will Deducated From Your Account Balance.


โ™ป๏ธ Wait For Answer = On

โ™ป๏ธ BJS =
var balance = Libs.ResourcesLib.userRes("balance")
var tgid = options.tgid
if(message > balance.value()) {
Bot.sendMessage("โš ๏ธ Insufficient Balance For This Transaction.

๐Ÿ“› You Have Only "+balance.value()+" Rs.")
}else{
var friend = Libs.ResourcesLib.anotherUserRes("balance",tgid)
friend.add(+message)
balance.add(-message)
Bot.sendMessage("โœ… Amount "+message+" Rs Has Been Transfer To "+tgid+".

๐Ÿ’ต Your Current Balance : "+balance.value()+" Rs.")
}
๐Ÿฅด3๐Ÿ‘1
Tranfer Balance Bjs..
๐Ÿ˜3๐Ÿ‘1
โ™ป๏ธCommand : Your Command
๐Ÿ”˜Answer: Send The Value ๐Ÿ“จ
๐Ÿ”ฅWait Fro Answer On

Bjs: let balance = Libs.ResourcesLib.userRes("balance")
if (balance.value() < data.message){
Bot.sendMessage("NOT ENOUGH BALANCE")
}else{
if (data.message < 1){
Bot.sendMessage("*MINIMUM GIFT CARD AMOUNT IS 1๐Ÿ’Ž*")
}else{
var value = message
function isNumeric(n) {
return !isNaN(parseFloat(n)) && isFinite(n)
}
if (!isNumeric(value)) {
Bot.sendMessage("*๐Ÿ“› Invaild value. Enter only numeric value. Try again*")
}else{
let gift =
User.getProperty("gfit")
User.setProperty("gift" , data.message ,"string")
balance.add(-data.message)
Bot.runCommand("GIFT2")
}
}
}
๐Ÿ‘2๐Ÿ‘1
โ™ป๏ธCommand: GIFT2

๐Ÿ‘‰BJS: var characters = "1234567890ABCDEFGHIJKLUVWXYZ12345678901234567890123456789012345678901234567890"

function generateString(length) {
let result = '';
const charactersLength = characters.length;
for ( let i = 0; i < length; i++ ) {
result += characters.charAt(Math.floor(Math.random() * charactersLength));
}

return result;
}

Bot.setProperty("b",generateString(15), "string")
let b = Bot.getProperty("b")
var options = { myData: b }
Bot.run({ command: "GIFT3", options })
โ™ป๏ธCommand: GIFT3

Bjs: let gift =
User.getProperty("gift")
var tt = options.myData
var button = [{ title : "Share" , url : "https://t.me/share/url?text=๐Ÿ“ฑCode- "+ tt +" @"+bot.name+"" }]
Bot.sendInlineKeyboard(button,"*YOUR CODE IS READY
๐Ÿ“ฑCode - * " + tt + "")
Bot.setProperty(tt, gift,"integer")
Radeem Code Creat Command Done Now Radeem Command Coming.
๐Ÿ“š NEW COMMAND- REEDEM CODE

๐Ÿ“ƒANSWER - ๐Ÿ“ฅ INPUT THE CODE

โ–ซ๏ธWAIT FOR ANSWER ON โœ…

๐ŸŽฒBJ'S
var ti = Bot.getProperty(message)
if(message.length < 10){
Bot.sendMessage("*WRONG CODE*")
return
}else
if (!ti) {
Bot.sendMessage("*Invalid code*")
return
} else if (ti == "null") {
Bot.sendMessage("*โš ๏ธThe code is already redeemed*")
return
} else var balance = Libs.ResourcesLib.userRes("balance")
Bot.setProperty(message, "null")

balance.add(ti)
// Change your user id here
Api.sendMessage({
chat_id: "@your channe Link",
text: "๐ŸŽ‰ REEDEMED CODE

๐Ÿ‘จโ€๐Ÿ’ปUSER: "+user.first_name+"
๐Ÿ’กUSER I'D: "+user.telegramid+"
๐Ÿ”‹USER: @"+user.username+"
๐Ÿ’ผAMOUNT: "+ti+"๐Ÿ’Ž
๐ŸŽญCode: "+data.message+""})
Bot.sendMessage(
"*๐ŸŽŠCongratulations, code successfully redeemed, added to balance: *" +
ti +
"๐Ÿ’Ž"
)
return
๐Ÿ‘3โค1
๐Ÿ“จRadeem Code In Bot Codes

๐Ÿ‘‰Start: Click Here
๐Ÿ‘‰Ending: Click Here

๐Ÿค–Join For More @botcodes123
๐Ÿ‘2
๐Ÿช„Command: ๐Ÿ’Œ Lifafa

๐Ÿ“ƒAnswer: *๐Ÿ”Enter The Access Code Of Lifafa*

๐Ÿ“‡Wait For Answer: ON โœ…

๐ŸงฎBjs: if ((message == "5566")) {
Bot.sendMessage("๐Ÿ”Access Granted")
function canRun(){
var last_run_at = User.getProperty("last_run_at");
if(!last_run_at){ return true }

var minutes = (Date.now() - last_run_at) /1000/60;

var minutes_in_day = 12 * 60
var next = minutes_in_day - minutes
var wait_hours = Math.floor(next / 60)
next -= wait_hours * 60
var wait_minutes = Math.floor(next)
var seconds = Math.floor((next - wait_minutes) * 60)
if (minutes < minutes_in_day) {
Bot.sendMessage("*๐Ÿ“› You have already Claimed Lifafa*");
return
}
return true;
}

if(!canRun()){ return }
User.setProperty("last_run_at", Date.now(), "integer");

let balance = Libs.ResourcesLib.userRes("balance")
balance.add(10)
Bot.sendMessage(
"*๐ŸŽ Congrats , You Received 10๐Ÿ’Ž\nCheck Your Wallet*"
)
} else {
Bot.sendMessage("*๐ŸšซAcces Code Is Wrong*")
}
๐Ÿ‘2
ADVANCE BOT CODERS
๐Ÿช„Command: ๐Ÿ’Œ Lifafa ๐Ÿ“ƒAnswer: *๐Ÿ”Enter The Access Code Of Lifafa* ๐Ÿ“‡Wait For Answer: ON โœ… ๐ŸงฎBjs: if ((message == "5566")) { Bot.sendMessage("๐Ÿ”Access Granted") function canRun(){ var last_run_at = User.getProperty("last_run_at"); if(!last_run_at){ returnโ€ฆ
๐Ÿ‘† This Type Bjs. ๐Ÿ‘†
โค3๐Ÿ‘1
Text To Qr Generator Codes
__
๐Ÿš€ COMMAND - QRCode


๐Ÿ’กANSWER - *Welcome!*
_You can use me to generate QR codes for your texts!
Just what to do? Send me a text, I'll convert it to QR then!_

โ–ซ๏ธWAIT FOR ANS
WER ON โœ…
๐Ÿ’ BJ'S

var qrChartUrl =
"http://chart.apis.google.com/chart?cht=qr&chs=300x300&" +
"chl=" +
message +
"&chld=H|0"

Api.sendPhoto({
photo: qrChartUrl,
caption: "Your QR code ",
parse_mode: "markdown"
})
๐Ÿ‘1
Command = ๐Ÿ’ณ Withdraw

var balance = Libs.ResourcesLib.userRes("balance")
var paytmno = User.getProperty("paytmno")
if (paytmno == undefined ) {
Bot.sendMessage("*โš  Please Set Your Withdraw Address Using :* ๐Ÿ—‚ Wallet")
}else{
if (balance.value() < 15) {
Bot.sendMessage("*๐Ÿ”ฅ You Don't Have Enough Balance To Make Withdrawal !*")
}else{
function canRun(){
var last_run_at = User.getProperty("last_withdraw");
if(!last_run_at){ return true }
var minutes = (Date.now() - last_run_at) /1000/60;
var minutes_in_day = 12 * 60
var next = minutes_in_day - minutes
var wait_hours = Math.floor(next / 60)
next -= wait_hours * 60
var wait_minutes = Math.floor(next)
var seconds = Math.floor((next - wait_minutes) * 60)
if(minutes < minutes_in_day) {
Bot.sendMessage("You Cannot Withdraw More Then 1 In 24 Hours, Please Try Again Later After 24 Hours Of Last Redeem")
return
}
return true;
}
if(!canRun()){ return }
Bot.runCommand("Your Withdrawl Command ")
}
}
๐Ÿ˜2๐Ÿคก1
ADVANCE BOT CODERS
Command = ๐Ÿ’ณ Withdraw var balance = Libs.ResourcesLib.userRes("balance") var paytmno = User.getProperty("paytmno") if (paytmno == undefined ) { Bot.sendMessage("*โš  Please Set Your Withdraw Address Using :* ๐Ÿ—‚ Wallet") }else{ if (balance.value() < 15) { Botโ€ฆ
1 Withdraw In 24 Hr.
๐Ÿ‘3
Which Bjs Need Tell Comment
๐Ÿ‘2