γπππππππ πππππ
Open in Telegram
No data
Subscribers
+2024 hours
+737 days
+9130 days
Posts Archive
GUY'S I AM MAKING NEW COMUNITY IN THIS CHANNEL
MEANS I MAKE A PAID BOT IN FREE
MEANS I MAKE HOW TO MAKE A BOT I WILL.MAKE VIDEOS
JUST GIVE ME A BOT USERNAME I WILL MAKE IT'S CLONE GUY'S
π± PVT TG CHANNAL LEAKED β
π PO*N CHANNEL : πππππ
π GIVEAWAY CHANNAL : πππππ
βοΈ METHOD CHANNEL : πππππ
β€οΈ LEAKED BY @ULTRA_FULX β
β€οΈ WHAT TYPES OF CODES DO YOU WANT β
β€οΈ COMMENT DOWN βοΈ
π₯Ή OLD ACCOUNT DELETED π₯Ή
βοΈ NOW @ULTRA_LEGENDRY BECOME @LEGENDARY_ULTRA β
β€οΈ WHAT TYPES OF CODES DO YOU WANT β
β€οΈ COMMENT DOWN βοΈ
https://t.me/+GvXIEYQVr0VjNjE1
JOIN THIS CHAHNE FOR PAID METHOD ON FREE
ALL TYPES OF METHOD
ALL MEANS ALL ( ALL IN MOBILE METHOD )
π€ If a Particular Bot or User is Added the Current Bot will Leave Chat
Command: *(Master Command)
let id = 123456789; //replace this with your bot or user id which you want to track
if(chat.chat_type == 'supergroup'){
if(request.new_chat_members){
for ( let i=0; i < request.new_chat_members.length; i++){
if(request.new_chat_members[i].id == id){
Api.leaveChat({
chat_id: request.chat?.id
})
}
}
}
}
β Coded by @ULTRA_LEGENDRY β
This BJS code gets the current date and time in the π "Asia/Kolkata" timezone. It extracts: β’ π Day β’ π Month β’ π Year β’ π Weekday β’ β° Hours β’ π Minutes β’ β±οΈ Seconds β’ π°οΈ Milliseconds It formats the info and sends a message in HTML format with details like the full date, time, and timezone! πβ¨π BJS:
let free = new Date().toLocaleString("en-US", {
timeZone: "Asia/Kolkata"
});
let dateObj = new Date(free); // Create a new Date object for the current time
// Extracting details using JavaScript Date methods
var day = dateObj.getDate(); // Day of the month (1-31)
var monthNumber = dateObj.getMonth() + 1; // Month number (1-12)
var year = dateObj.getFullYear(); // Full year (e.g., 2024)
var weekdayNumber = dateObj.getDay(); // Day of the week (0-6, where 0 is Sunday)
var hours = dateObj.getHours(); // Hours (0-23)
var minutes = dateObj.getMinutes(); // Minutes (0-59)
var seconds = dateObj.getSeconds(); // Seconds (0-59)
var milliseconds = dateObj.getMilliseconds(); // Milliseconds (0-999)
// Weekday names array
var weekdayNames = ["Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday"];
var weekdayName = weekdayNames[weekdayNumber];
// Month names array
var monthNames = ["January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December"];
var monthName = monthNames[monthNumber - 1];
// Extracting details using Libs.DateTimeFormat
var formattedDate = Libs.DateTimeFormat.format(free, "dd/mm/yyyy");
var formattedTime = Libs.DateTimeFormat.format(free, "h:MM:ss");
// Extract ISO week number
var weekNumber = Libs.DateTimeFormat.format(free, "W"); // Week number (ISO standard)
// Edit the existing message with the full date and time information
Api.sendMessage({
text: "<b>π
Full Date and Time Information:</b>\n" +
"------------------------------------------\n" +
"<b>π Day:</b> <i>" + day + "</i>\n" +
"<b>π Month (Number):</b> <i>" + monthNumber + "</i>\n" +
"<b>π
Month (Name):</b> <i>" + monthName + "</i>\n" +
"<b>π
Year:</b> <i>" + year + "</i>\n" +
"<b>π Day of the Week:</b> <i>" + weekdayName + "</i>\n" +
"<b>π Week Number:</b> <i>" + weekNumber + "</i>\n\n" +
"<b>β° Time Information:</b>\n" +
"------------------------------------------\n" +
"<b>β² Hours:</b> <i>" + hours + "</i>\n" +
"<b>π Minutes:</b> <i>" + minutes + "</i>\n" +
"<b>β± Seconds:</b> <i>" + seconds + "</i>\n" +
"<b>β² Milliseconds:</b> <i>" + milliseconds + "</i>\n\n" +
"<b>π Formatted Date and Time:</b>\n" +
"------------------------------------------\n" +
"<b>π Formatted Date (dd/mm/yyyy):</b> <i>" + formattedDate + "</i>\n" +
"<b>β² Formatted Time (hh:mm:ss):</b> <i>" + formattedTime + "</i>\n\n" +
"<b>π Timezone:</b> <i>Asia/Kolkata</i>",
parse_mode: "html"
});
π Must Install βDateTimeFormatβ Lib.
βββββββββββββββββ
π Demo Of Code :- Click Hereβ€οΈ OWNED BY THIS MESSAGE SENDER β
π πππ‘ π ππ‘π¨
πππ¦ --->
// Command: /mainMenu
Bot.sendMessage("Welcome to the Main Menu! You have successfully unlocked the content.");
// Add more menu functionalities here
β€οΈ OWNED BY THIS MESSAGE SENDER β
β‘οΈ Command :
/setPassword β
πππ¦ ---->
// Command: /setPassword
let adminId = 123456789; // Replace with your actual Telegram admin ID
let password = params; // Admin sends the password in this format: /setPassword mypassword123
if (user.telegramid == adminId) {
let passwordStore = ResourcesLib.userRes("password"); // Store the password
let passwordTime = ResourcesLib.userRes("passwordTime"); // Store the time of setting the password
passwordStore.set(password); // Set the password
passwordTime.set(Date.now()); // Set the current time when password is set
Bot.sendMessage("Password has been set successfully. It will be valid for 1 hour.");
} else {
Bot.sendMessage("You are not authorized to set the password.");
}
β€οΈ OWNED BY THIS MESSAGE SENDER β
β€οΈ COMMAND :
/enterPassword β
πππ¦ --->
// Command: /enterPassword
let userPassword = params; // User sends the password in this format: /enterPassword userpassword
let passwordStore = ResourcesLib.userRes("password"); // Retrieve the stored password
let passwordTime = ResourcesLib.userRes("passwordTime"); // Retrieve the time password was set
let storedPassword = passwordStore.value(); // Get the current password
let passwordSetTime = passwordTime.value(); // Get the time when password was set
let currentTime = Date.now(); // Get current timestamp
// Check if password is set and not expired (1 hour = 3600000 ms)
if (storedPassword && (currentTime - passwordSetTime <= 3600000)) {
if (userPassword == storedPassword) {
// If password is correct and within the valid time
Bot.sendMessage("Access granted! You have entered the correct password.");
Bot.runCommand("/mainMenu"); // Run the main menu command
} else {
// If password is incorrect
Bot.sendMessage("Wrong password. Please try again.");
}
} else {
// If password has expired or not set
Bot.sendMessage("The password has either expired or hasn't been set. Please contact the admin.");
}
`
β€οΈ OWNED BY THIS MESSAGE SENDER β
π Special Offer Alert! π
Want to unlock exclusive advance time BJS?
β‘οΈ Comment below to receive your unique code! Donβt miss out!
β‘οΈ This BJS CODES COMING SOON β
β‘οΈ How To Make The Upi Payment
β This code helps user to Withdraw Thier Money Automatic .
β Command :
/withdraw
π οΈ BJS Code :
let mid = "fill_mid";
let mkey = "fill_mkey";
let guid = "fill_GUID";
var url = `https://full2sms.in/api/v2/payout?mid=${mid}&mkey=${mkey}&guid=${guid}&type=upi&amount=1&upi=${upi}&info=${info}`;
HTTP.get({
url: url,
background: true,
success: "Auto"
});
β‘οΈ Command 01 : Auto
β€οΈ BJS Code 01 :
var result = JSON.parse(content);
var status = result.status;
var msg = result.message;
var txnid = result.txn_id || "Failed";
var proof = User.getProp("upi");
Bot.sendMessage("*Status:* " +status+ "\n*Message:* " +msg+ "\n*Transaction id:* " +txnid);
β€οΈ OWNED BY THIS MESSAGE SENDER β
π₯ππ‘ππ’π πͺππ‘π‘ππ₯ πππ’π’π¦ππ₯ ππ’ππ πππ¦ ππ’ππβ
ππ’ππ - ππ’π§ ππ¨π¦ππ‘ππ¦π¦ β
β€οΈ π§π¬π£π - π₯ππ‘ππ’π πͺππ‘π‘ππ₯
β‘οΈ ππ’π π ππ‘π -
/prc
πππ¦ -
// List of participants
var participants = ["Participant 1", "Participant 2", "Participant 3", "Participant 4", "Participant 5"];
// Randomly choose a winner
var winner = participants[Math.floor(Math.random() * participants.length)];
// Send the winner announcement
Api.sendMessage({text: "π The winner is: " + winner});
β€οΈ OWNED BY THIS MESSAGE SENDER β
π₯ππ‘ππ’π ππ πππππππ₯ π³
ππ’ππ - ππ’π§ ππ¨π¦ππ‘ππ¦π¦ β
π§π¬π£π ---> π₯ππ‘ππ’π ππ πππππππ₯
ππ’π π ππ‘π -->
/cc / your command
ππ‘π¦πͺππ₯ ---> π¦ππ‘π π¬π’π¨π₯ πππ₯π πππ§ππππ¦ ππππ ----> 1234156167177171|02|2023|203
πͺπππ§ ππ’π₯ ππ‘π¦πͺππ₯ ---> β
πππ¦ ---->
// This is the /start command handler
Bot.sendMessage("HERE IS YOUR CARD DETAILS π");
// Immediately process the user's input after sending the message
var message = params; // Get the user input (in the expected format cardnumber|MM|YYYY|CVV)
if (message) {
var parts = message.split('|'); // Split the input by '|'
if (parts.length === 4) {
var cardNumber = parts[0]; // Extract card number
var expMonth = parts[1]; // Extract expiration month
var expYear = parts[2]; // Extract expiration year (YYYY format)
var cvv = parts[3]; // Extract CVV
// Simple validation for length
if (cardNumber.length === 16 && expMonth.length === 2 && expYear.length === 4 && cvv.length === 3) {
// Validate if cardNumber, expMonth, expYear, and cvv are numeric
if (!isNaN(cardNumber) && !isNaN(expMonth) && !isNaN(expYear) && !isNaN(cvv)) {
// Simulating a BIN check for country (Based on first digit or first six digits)
var bin = cardNumber.substring(0, 6); // First 6 digits of card
var country = "Unknown"; // Default value for country
// Example of a simple BIN range to country check
if (bin.startsWith("4")) {
country = "USA"; // Example for VISA cards starting with 4
} else if (bin.startsWith("5")) {
country = "EU"; // Example for Mastercard starting with 5
} else if (bin.startsWith("6")) {
country = "India"; // Example for Discover cards starting with 6
}
// If card details are valid, send the ALIVE message with details
Bot.sendMessage(
"ALIVE β
\n" +
"Card Number: " + cardNumber + "\n" +
"Expiry Month: " + expMonth + "\n" +
"Expiry Year: " + expYear + "\n" +
"CVV: " + cvv + "\n" +
"Country: " + country
);
} else {
// If details are incorrect, send DECLINE message with same details
Bot.sendMessage(
"DECLINEβ\n" +
"Card Number: " + cardNumber + "\n" +
"Expiry Month: " + expMonth + "\n" +
"Expiry Year: " + expYear + "\n" +
"CVV: " + cvv + "\n" +
"Country: Unknown" // In case of invalid details, country remains unknown
);
}
} else {
// If input is incorrect format, still send DECLINE with details
Bot.sendMessage(
"DECLINEβ\n" +
"Card Number: " + cardNumber + "\n" +
"Expiry Month: " + expMonth + "\n" +
"Expiry Year: " + expYear + "\n" +
"CVV: " + cvv + "\n" +
"Country: Unknown"
);
}
} else {
Bot.sendMessage("Invalid input format. Use: cardnumber|MM|YYYY|CVV");
}
} else {
Bot.sendMessage("Please provide card details.");
}
BY @GOAT_NG
(Admin Say : Who is Sender π
)π BEST AND EASY BOT BUSINESS STATISTICS π BJS
β€οΈ COMMOND :
Statistics
πͺ BJS :
var stat = Libs.ResourcesLib.anotherChatRes("status", "global")
Bot.sendMessage("*π Bα΄α΄ LΙͺα΄ α΄ Sα΄α΄α΄Ιͺsα΄Ιͺα΄\n\nπ Tα΄α΄α΄Κ Usα΄Κs: " +stat.value()+"\n\nΒ©οΈ Pα΄α΄‘α΄Κα΄α΄
BΚ : @ULTRA_LEGENDRY *")
β€οΈ OWNED BY THIS MESSAGE SENDER β
β ππ π π’π₯π ππ’πππ¦ β
1. Send a Video:
Api.sendVideo({ video: "VIDEO_URL", caption: "Check out this video!" });
2. Send a Photo:
Api.sendPhoto({ photo: "PHOTO_URL", caption: "Here is a nice photo for you!" });
3. Send Stickers:
Api.sendSticker({ sticker: "STICKER_URL" });
4. Send a Poll:
Api.sendPoll({
question: "What is your favorite color?",
options: ["Red", "Blue", "Green"]
});
5. Send Emoji:
Api.sendMessage({ text: "π" });
6. Send Documents:
Api.sendDocument({ document: "DOCUMENT_URL", caption: "Check out this document!" });
7. Send a message:
Api.sendMessage({ text: "Hello, welcome to our bot!" });
8. Send a Long Message:
var longMessage = "This is a long message. ".repeat(20); // Repeat to create a long message
Api.sendMessage({ text: longMessage });
9. Generate Random Numbers:
var randomNumber = Math.floor(Math.random() * 100) + 1; // Generates a random number between 1 and 100
Api.sendMessage({ text: "Random Number: " + randomNumber });
10. Inline Keyboard with Photo:
var photoButton = [{ text: "View Photo", callback_data: "/showPhoto" }];
Api.sendPhoto({ photo: "PHOTO_URL", reply_markup: { inline_keyboard: [photoButton] } });
11. Inline Keyboard with Video:
var videoButton = [{ text: "Watch Video", callback_data: "/playVideo" }];
Api.sendVideo({ video: "VIDEO_URL", reply_markup: { inline_keyboard: [videoButton] } });
12. Big Keyboard with Picture:
var buttons = [
[{ text: "Button 1", callback_data: "/button1" }],
[{ text: "Button 2", callback_data: "/button2" }],
[{ text: "Button 3", callback_data: "/button3" }]
];
var photo = "PHOTO_URL";
Api.sendPhoto({ photo: photo, reply_markup: { inline_keyboard: buttons } });
β€οΈ OWNED BY THIS MESSAGE SENDER β
π₯ππ‘ππ’π ππ πππ‘π₯ππ§π’π₯ ππ’ππ β οΈ
ππ’ππ - ππ’π§ ππ¨π¦ππ‘ππ¦π¦ β οΈ
π§π¬π£π ---> π₯ππ‘ππ’π ππ
ππ’π π ππ‘π -->
/cc / your command
πππ¦ ---->
// Function to generate a random integer between min and max
function getRandomInt(min, max) {
return Math.floor(Math.random() * (max - min + 1)) + min;
}
// Generate random card information
let cardNumber = getRandomInt(1000000000000000, 9999999999999999); // Random 16-digit number
// Generate a valid expiration month (01 to 12)
let expMonth = getRandomInt(1, 12);
if (expMonth < 10) {
expMonth = "0" + expMonth; // Ensure two digits for the month
}
// Generate a valid expiration year (e.g., between 2025 and 2035)
let expYear = getRandomInt(2025, 2035);
// Generate random 3-digit CVV
let cvv = getRandomInt(100, 999);
// Generate the card detail message
let cardDetails = "π Card: " + cardNumber + "|" + expMonth + "|" + expYear + "|" + cvv;
// Send the formatted message
Bot.sendMessage(
cardDetails + "\n" +
"[π] Status: Approved β
!\n" +
"[π] Response : Approved (1000)\n" +
"[π] Info β CREDIT"
);
β€οΈ OWNED BY THIS MESSAGE SENDER β
BY @GOAT_NG