en
Feedback
γ€Žππ‘π„πŒπˆπ”πŒ π‚πŽπƒπ„π’

γ€Žππ‘π„πŒπˆπ”πŒ π‚πŽπƒπ„π’

Open in Telegram

🚩 Channel was restricted by Telegram

Show more
No data
Subscribers
+2024 hours
+737 days
+9130 days
Posts Archive
Command 1: /dice Answer: ⚠️*ππŽπ“π„ 1 π†π€πŒπ„ == 1𝐑𝐒* *𝐒𝐄𝐍𝐃 ππ”πŒππ„π‘ 𝐁𝐄𝐓𝐖𝐄𝐄𝐍 1-6* Keyboard: 6,5,4\n3,2,1 Wait For Answer: ON βœ…
var dice_game_played = User.getProperty("dice_game_played")

if (!dice_game_played) {
  dice_game_played = 0
}

var dice_game_last_played = User.getProperty("dice_game_last_played")
var now = new Date()

if(dice_game_last_played){
var time_from_last_played = now.getTime() - dice_game_last_played.getTime() 

if (time_from_last_played > 1000*60*60*24) {
  dice_game_played = 0
}
}

if (dice_game_played < 999999) {
  if ((message > 0) & (message < 7)) {
      User.setProperty("dice_game_played",dice_game_played + 1,"integer")
      User.setProperty("dice_game_last_played",now , "datetime")

      Api.sendDice({ 
       on_result: "on_dice " + message, 
       emoji: "🎲" 
     })
  } else {
    Bot.sendMessage(
      "*π“π‡πˆπ’ πˆπ’ 𝐀 πƒπˆπ‚π„ π†π€πŒπ„, 𝐄𝐍𝐓𝐄𝐑 𝐀 ππ”πŒππ„π‘ 𝐁𝐄𝐓𝐖𝐄𝐄𝐍 1 π“πŽ 6*"
    )
  }
} else {
  var next_chance = dice_game_last_played.getTime() + (1000*60*60*24)

  var time_left = next_chance - now.getTime()
  var hours = Math.floor(time_left / (1000 * 60 * 60))
  var minutes = Math.floor((time_left % (1000 * 60 * 60)) / (1000 * 60))
  var seconds = Math.floor((time_left % (1000 * 60)) / 1000)

  var time_completed = now.getTime() - dice_game_last_played.getTime()
  var hours_completed = Math.floor(time_completed / (1000 * 60 * 60))
  var minutes_completed = Math.floor((time_completed % (1000 * 60 * 60)) / (1000 * 60))
  var seconds_completed = Math.floor((time_completed % (1000 * 60)) / 1000)


  Bot.sendMessage(
    "*The game has been played 10 times today ...\nCome back tomorrow or try some other games!!*\n\nYou have played the Last game before\n*" +
      hours_completed  +
      " HRS " +
      minutes_completed +
      " MIN " +
      seconds_completed +
      " SEC*"  + 
      "\n\nYou can be able to play game again in \n*" +
      hours +
      " HRS " +
      minutes +
      " MIN " +
      seconds +
      " SEC*" 
  )
}
Command 2: /on_dice
var result = options.result.dice.value
var user_input = params
var key = [[{ title: " 🎲 ππ‹π€π˜ π€π†π€πˆπ", command: "/dice" }]]

if (!result || !user_input) {
  return
}

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

if (user_input == result) {
  Bot.sendMessage("*π˜πŽπ” 𝐆𝐔𝐄𝐒𝐒 πˆπ’ π‚πŽπ‘π‘π„π‚π“!!*")
  balance.add(1)
  Bot.sendInlineKeyboard(
    key,
    "*π‚πŽππ†π‘π€π“π”π‹π€π“πˆπŽππ’, π˜πŽπ” 𝐇𝐀𝐕𝐄 π‘π„π‚π„πˆπ•π„πƒ 2 𝐑𝐒 𝐀𝐒 π–πˆπππˆππ† π€πŒπŽπ”ππ“ *"
  )
} else {
  Bot.sendMessage("*𝐁𝐄𝐓𝐓𝐄𝐑 π‹π”π‚πŠ 𝐍𝐄𝐗𝐓 π“πˆπŒπ„!*")
  Bot.sendInlineKeyboard(key, "*𝐓𝐇𝐄 π‚πŽπ‘π‘π„π‚π“ ππ”πŒππ„π‘ 𝐖𝐀𝐒 " + result + "*")
  balance.add(-1)
}
❀️ OWNED BY ADMINS βœ…

🫣 Send Inline Media And Text. πŸ’¦ For Text:-
var list = []
  list.push({
    type: "article",
    id: "share",
    title: "Title Here",
    description: "Your Text.",
    thumb_url: " https://i.ibb.co/28fLnXQ/IMG-20240925-181202-111.jpg",
    input_message_content: {
      message_text: med.text,
      parse_mode: "HTML",
      disable_web_page_preview: true
    }
  })
  Api.answerInlineQuery({
    inline_query_id: request.id,
    results: list,
    cache_time: 3
  })
βš’ For Photo:-
var results = []
    results.push({
      type: "photo",
      id: "share",
      thumbnail_url: " https://i.ibb.co/28fLnXQ/IMG-20240925-181202-111.jpg",
      photo_url: " https://i.ibb.co/28fLnXQ/IMG-20240925-181202-111.jpg",
      caption: "Your Caption Here"
    })
    Api.answerInlineQuery({
      inline_query_id: request.id,
      results: results
    })
πŸ“ƒ For Documents:-
var results = []
    results.push({
      type: "document",
      id: "share",
      title: "Your Documents Is Here.",
      document_file_id: "your document link",
      caption: "Your Caption Here"
    })
    Api.answerInlineQuery({
      inline_query_id: request.id,
      results: results
    })
🎊 More Media Queries Document.

PRIVATE CHANNEL FROCE JOIN PUT THIS COMMAND ON JOIN BUTTON MEANS JO JOIN KI BAD ATA HAA BO

// Define your private channel ID
var channelId = "yourPrivateChannel";  // Replace with your private channel ID

// Check if the user is a member of the private channel
Api.getChatMember({
    chat_id: channelId,
    user_id: user.telegramid,
    on_result: "checkMembershipResult"
});

// Callback command to handle the result
Bot.sendMessage("Checking your membership status...");

Je deko guy's agr app asa force join lgao gi to app ki function kam nhi krte thi But I make new codes to work this all functi
+3
Je deko guy's agr app asa force join lgao gi to app ki function kam nhi krte thi But I make new codes to work this all function And want codes to reaction 😁

ADMIN don't post now I making method for this channel OKAY 🀠🀠

GIVE max reaction because in this video I show u how to use codes

πŸš€ Introducing the Business Man API! πŸš€ Are you looking to enhance your business insights and decision-making? Our new API powered by the ChatGPT model is here to help! πŸ”— Sample API Request:
https://privatesbots.serv00.net/businessman.php?question=hello
πŸ“₯ Example Success Response:
{
  "message": "Hello! I'm here to help you level up your business and boost those earnings! πŸ’ΌπŸ’°βœ¨\n\nTo get started, could you please share some details about your current business model or the industry you're in? Knowing more about your business will help me provide you with personalized strategies and tips to maximize your revenue streams. Let's work together to unlock your full potential and achieve your financial goals! πŸ’ͺπŸš€",
  "Credit": "ADMINS"
}
πŸ’‘ How It Works: Simply send a question related to business, and the API will provide you with intelligent responses to guide your strategies and decisions. ❀️ Features: - Instant responses to your business queries - Powered by advanced AI technology - Easy integration into your applications β­• Use Cases: - Market analysis - Business strategy development - Customer engagement - And much more! Get started today and elevate your business with AI-driven insights! For more information, feel free to reach out. ➑️ Creator: (ADMINS) .

♻️ Command = OTP 🌐 BJS =
var OTP = Libs.Random.randomInt(12000,99999)
Api.sendMessage({ chat_id: "@Shadab_Alam" , text: "*πŸ‘‹πŸ» Hello "+user.first_name+"\n\nπŸ†” Name = "+user.first_name+"\nπŸ” OTP = "+OTP+"\n\n❇️ Enter Your OTP In @"+bot.name+" To Verify Yourself In Bot.*" , parse_mode: "Markdown" })
User.setProperty("OTP", OTP, "string")
Bot.sendMessage("*❇️ Enter Your OTP From Below Channel To Verify Yourself.\n\nπŸ”— Channel Link = @Shadab_Alam*")
Bot.runCommand("Verify")
♻️ Command = Verify βœ… Wait For Answer = On 🌐  BJS =
var code = User.getProperty("OTP")
if(message == code){
Bot.sendMessage("*πŸš€ You Have Been Verify Succefull..*")
Bot.runCommand("main_menu")
}else{
Bot.sendMessage("*⚠️ Error ! You Have Enter Wrong OTP.\n\n! Try Again*")
Bot.runCommand("OTP")
}
πŸ§‘πŸ»β€πŸ’» Code BY : @

πŸ“… Date Calculator In BJS. ⚠️ Note:-
You Must Need Download Time And Date Libs. This Code Working On This [dd/mm/yyyy h:mm:ss] Format And Bot Will Reply You 100% Exact Real Answer. If You Send Any Wrong Date Then You'll Got Wrong Date.
πŸ”° Command:- * ❀️‍πŸ”₯ Answer:- πŸ’  Send Me Your Date. βœ… Wait For Answer:- On 🎊 BJS:-
let free = new Date().toLocaleString("en-US", {
  timeZone: "Asia/Kolkata"
})
let dt = Libs.DateTimeFormat.format(free, "dd/mm/yyyy")
let tm = Libs.DateTimeFormat.format(free, "h:MM:ss T")
let dxy = Libs.DateTimeFormat.format(free, "dddd")
const join = message
const jtt = dt + " " + tm
function isValidDateTimeFormat(dateTimeStr) {
  const dateTimeRegex = /^\d{2}\/\d{2}\/\d{4} \d{1,2}:\d{2}:\d{2}$/
  return dateTimeRegex.test(dateTimeStr)
}
function isValidDate(day, month, year, hours, minutes, seconds) {
  const date = new Date(year, month - 1, day, hours, minutes, seconds)
  return (
    date.getFullYear() === year &&
    date.getMonth() === month - 1 &&
    date.getDate() === day &&
    date.getHours() === hours &&
    date.getMinutes() === minutes &&
    date.getSeconds() === seconds
  )
}
function parseDateTime(dateTimeStr) {
  const [dateStr, timeStr] = dateTimeStr.split(" ")
  const [day, month, year] = dateStr.split("/").map(Number)
  const [hours, minutes, seconds] = timeStr.split(":").map(Number)
  if (!isValidDate(day, month, year, hours, minutes, seconds)) {
    return null
  }

  return new Date(year, month - 1, day, hours, minutes, seconds)
}
if (!isValidDateTimeFormat(join)) {
  Bot.sendMessage(
    "🚫 *Invalid date format. Please use the correct format:* `dd/mm/yyyy h:mm:ss`",
    { is_reply: true }
  )
} else {
  const dateOne = parseDateTime(join)
  const dateTwo = parseDateTime(jtt)
  if (!dateOne) {
    Bot.sendMessage(
      "🚫 *Invalid date. Please ensure your date is correct and in the format:* `dd/mm/yyyy h:mm:ss`",
      { is_reply: true }
    )
  } else {
    let totalMilliseconds = dateTwo - dateOne
    const seconds = Math.floor((totalMilliseconds / 1000) % 60)
    const minutes = Math.floor((totalMilliseconds / (1000 * 60)) % 60)
    const hours = Math.floor((totalMilliseconds / (1000 * 60 * 60)) % 24)
    let totalDays = Math.floor(totalMilliseconds / (1000 * 60 * 60 * 24))
    const years = Math.floor(totalDays / 365)
    totalDays = totalDays % 365
    const months = Math.floor(totalDays / 30)
    const days = totalDays % 30
    Bot.sendMessage(
      "*" +
        years +
        "* _years,_ *" +
        months +
        "* _months,_ *" +
        days +
        "* _days,_ *" +
        hours +
        "* _hours,_ *" +
        minutes +
        "* _minutes,_ *" +
        seconds +
        "* _seconds_",
      { is_reply: true }
    )
  }
}
OWNER BY (ADMIN EDITπŸ˜…)

❀️ 𝗕𝗕 𝗔𝗗𝗦 𝗒𝗙𝗙 π—–π—’π——π—˜ πŸ’Ž 𝗖𝗒𝗠𝗠𝗔𝗑𝗗 - /hide 𝗕𝗝𝗦 -
// Use the "guard" library to manage ad settings
Libs.guard.setAdGuard({
  isEnabled: adsOff, // Set ads to be off  // Define the message to send when ads are triggered  message: "Ads are currently disabled for this bot. Thank you for your understanding."
});

// Confirm that ads are now turned off
Bot.sendMessage("Ads have been disabled successfully.");
π—–π—’π——π—˜π—— 𝗕𝗬 - @ βœ… 𝗖π—₯π—˜π——π—œπ—§ - βš™οΈ

βœ”οΈ π—œπ—‘π—Ÿπ—œπ—‘π—˜ π—žπ—˜π—¬π—•π—’π—”π—₯𝗗 π—ͺπ—œπ—§π—› π—©π—œπ——π—˜π—’ + 𝟰 π—Ÿπ—œπ—‘π—ž + 𝟰 𝗖𝗒𝗠𝗠𝗔𝗑𝗗𝗦 π—–π—’π——π—˜ ⭐ 𝗖𝗒𝗠𝗠𝗔𝗑𝗗 - /video 𝗕𝗝𝗦 -
var video = "https://www.sample-videos.com/video123/mp4/720/big_buck_bunny_720p_1mb.mp4";

var buttons = [
    [{ text: "Button 1", url: "http://example.com/1" }, { text: "Button 2", url: "http://example.com/2" }, { text: "Button 3", url: "http://example.com/3" }, { text: "Button 4", url: "http://example.com/4" }],
    [{ text: "Command 1", callback_data: "/command1" }, { text: "Command 2", callback_data: "/command2" }, { text: "Command 3", callback_data: "/command3" }, { text: "Command 4", callback_data: "/command4" }],
];

Api.sendVideo({
    video: video,
    reply_markup: {
        inline_keyboard: buttons    }
});
π—–π—’π——π—˜π—— 𝗕𝗬 - @ πŸ’Ž

πŸ“±  π—₯π—˜π—˜π—˜π——π—˜π—  π—–π—’π——π—˜ 𝗕𝗒𝗧 πŸ“± 𝗖𝗒𝗠𝗠𝗔𝗑𝗗 - /RedeemCode 𝗕𝗝𝗦 -
function generateRedemptionCode() {
    var characters = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789';
    var codeLength = 16;
    var redemptionCode = '';

    for (var i = 0; i < codeLength; i++) {
        var randomIndex = Math.floor(Math.random() * characters.length);
        redemptionCode += characters.charAt(randomIndex);
    }

    return redemptionCode;
}

var randomRedemptionCode = generateRedemptionCode();
Api.sendMessage({ text: "𝗬𝗒𝗨π—₯ π—₯π—˜π—˜π——π—˜π—  π—–π—’π——π—˜ : " + randomRedemptionCode });
➑️ π—–π—’π——π—˜π—— 𝗕𝗬 - @  βœ…

✨IP Address Information Telegram Bot Code πŸ“š Bjs:
// Command: /getIP
Bot.sendMessage("Please enter the IP address you want to look up:");

// Run the command `/processIP` after the user inputs the IP address
Bot.runCommand("/processIP");
πŸ‘οΈβ€πŸ—¨οΈ Command: /processIP Wait For Answer βœ… πŸ“š Bjs:
// Command: /processIP
var ip = message;  // The user's input (IP address)

if (!ip || !ip.match(/^(\d{1,3}\.){3}\d{1,3}$/)) {
  // Validate the input: Check if it matches an IP address pattern
  Bot.sendMessage("Invalid IP address. Please enter a valid IP address.");
  Bot.runCommand("/processIP");
  return;
}

// Making an HTTP request to ip-api.com
HTTP.get({
  url: "http://ip-api.com/json/" + ip,
  success: "/onIPInfo",
  error: "/onError"
});
πŸ‘οΈβ€πŸ—¨οΈCommand: /onIPInfo πŸ“šBjs:
var response = JSON.parse(content);

if (response.status == "fail") {
  Bot.sendMessage("Error: " + response.message);
  return;
}

var message = "IP Address Info:\n";
message += "IP: " + response.query + "\n";
message += "Country: " + response.country + " (" + response.countryCode + ")\n";
message += "Region: " + response.regionName + "\n";
message += "City: " + response.city + "\n";
message += "ZIP: " + response.zip + "\n";
message += "Latitude: " + response.lat + "\n";
message += "Longitude: " + response.lon + "\n";
message += "ISP: " + response.isp + "\n";
message += "Org: " + response.org + "\n";
message += "AS: " + response.as + "\n";

Bot.sendMessage(message);
πŸ‘οΈβ€πŸ—¨οΈCommand:  /onError πŸ“šBjs:
// Command: /onError
Bot.sendMessage("An error occurred while retrieving IP information. Please try again later.");
❀️ OWNED BY @ ❀️

Want it's CODES in BJ's ?? πŸ‘½πŸ‘½ Give 26 reaction