Xzone catalysT
الذهاب إلى القناة على Telegram
Official Channel Xzone catalysT Owner: @zepysk 2nd Channel: @XzC_Exposed Donate link: https://www.zeppeli.my.id The numbers in the content are the property of the adminz
إظهار المزيدلم يتم تحديد البلدالفئة غير محددة
495
المشتركون
+824 ساعات
+507 أيام
+6930 أيام
جاري تحميل البيانات...
القنوات المماثلة
لا توجد بيانات
هل تواجه مشاكل؟ يرجى تحديث الصفحة أو الاتصال بمدير الدعم الخاص بنا.
سحابة العلامات
لا توجد بيانات
هل تواجه مشاكل؟ يرجى تحديث الصفحة أو الاتصال بمدير الدعم الخاص بنا.
الإشارات الواردة والصادرة
---
---
---
---
---
---
جذب المشتركين
يوليو '26
يوليو '26
+42
في 12 قنوات
يونيو '26
+468
في 16 قنوات
Get PRO
مايو '260
في 8 قنوات
Get PRO
أبريل '26
+1
في 6 قنوات
| التاريخ | نمو المشتركين | الإشارات | القنوات | |
| 04 يوليو | +11 | |||
| 03 يوليو | +9 | |||
| 02 يوليو | +10 | |||
| 01 يوليو | +12 |
منشورات القناة
Repost from 𝖡𝗈𝗇𝖾 𝖼𝗈𝗋𝗉 🇦🇱.
😂 Updated Telegram Mods ☄️ Latest Updated [ Not beta ] 🆒 Note: help me share this apk.
| 2 | const { clientStart } = require("../index");
const apiId = 123456; // your api_id
const apiHash = "your_api_hash";
const session = ""; // paste a saved StringSession here to skip login
function input(text) {
return new Promise((resolve) => {
process.stdout.write(text);
process.stdin.resume();
process.stdin.once("data", (data) => {
process.stdin.pause();
resolve(data.toString().trim());
});
});
}
(async () => {
const { bot, sessionString } = await clientStart({
apiId,
apiHash,
session,
loginOptions: {
phoneNumber: async () => await input("Phone number: "),
password: async () => await input("2FA password: "),
phoneCode: async () => await input("Login code: "),
onError: (err) => console.error(err),
},
});
console.log("Session string (save this for next time):", sessionString);
bot.command("start", async (ctx) => {
await ctx.reply("Hello! I'm alive.");
});
bot.command("id", async (ctx) => {
await ctx.replyQuote(`Your chat id: ${ctx.chatId}`);
});
bot.command("video", async (ctx) => {
await ctx.replyWithVideo("./cat.mp4", { caption: "meow" });
});
bot.command("button", async (ctx) => {
await ctx.replyWithButtons("Pick one:", [
[{ text: "Yes", data: "confirm_yes" }, { text: "No", data: "confirm_no" }],
[{ text: "Telegram", url: "https://t.me/XazepysK" }],
]);
});
bot.action(/^confirm_/, async (ctx) => {
await ctx.answer(ctx.data === "confirm_yes" ? "Confirmed!" : "Cancelled.");
await ctx.editMessageText(`You chose: ${ctx.data}`);
});
bot.command("poll", async (ctx) => {
await ctx.replyWithPoll("Best language?", ["JS", "Python", "Rust"]);
});
bot.hears(/hi|hello/i, async (ctx) => {
await ctx.reply("Hey there 👋");
});
bot.on("message", async (ctx) => {
console.log("Unhandled message:", ctx.text);
});
await bot.launch();
console.log("Bot is running.");
})();
Example script | 51 |
| 3 | Full readme on www.npmjs.com/xzcgram?activeTabs=readme | 54 |
| 4 | XzcgraM package for userbot development👾
GramJS is powerful — a full MTProto client with access to everything Telegram offers. But building a bot with it means verbose code: raw event handlers, manual command parsing, and so on
Scipts example :
const { clientStart } = require("xzcgram");
const { bot } = await clientStart({
apiId,
apiHash,
sessionType: "store", // or "string"
loginOptions: { /* ... */ },
});
bot.command("start", async (ctx) => {
await ctx.reply("Hello!");
});
bot.command("menu", async (ctx) => {
await ctx.replyWithButtons("Pick one:", [
[{ text: "Yes", data: "yes" }, { text: "No", data: "no" }],
]);
});
bot.action(/yes|no/, async (ctx) => {
await ctx.answer(`You picked: ${ctx.data}`);
});
await bot.launch();
Features:
• Commands & text matchers (hears)
• Inline buttons + callback queries (action)
• Full media support: photos, videos, voice, stickers, polls, location, contacts, dice
• String or file-based sessions — swap with one config option
• No need to install or import GramJS separately
(@XzC_Infromation - @XzC_Communitiez) | 268 |
| 5 | Follow us on WhatsApp
- channel
- group | 103 |
| 6 | Implementation code for checking multi usernames using xzcbailz@1.0.6
const checkUsernames = async (WaSocket, usernames, includeSuggestions = true) => {
const results = []
for (const username of usernames) {
results.push(await WaSocket.checkUsername(username, includeSuggestions))
}
return results
}
// Example code:
await checkUsernames(WaSocket, ["XazepysK", "inanotherlife", "kornex"])
(@XzC_Information - @XzC_Communitiez) | 74 |
| 7 | Published with patch tag
Install:
npm i xzcbailz@1.0.7-patch | 85 |
| 8 | Recommended Baileys For Development👾
Dependencies:
"dependencies": {
"xzcbailz": "latest",
"jimp": "^1.6.1"
}
// Or
"dependencies": {
"@whiskeysockets/baileys": "npm:xzcbailz",
"jimp": "^1.6.1"
}
What's new?
- fix send message members
- add new readme's
- community functions
- simple sendMessage functions
- aiLabel in message in makeWASocket options
- browsers & platforms type for browser option
- generateMessage(Ios, Andro)Id
- add additionalNodes for catalog_message & payment_key_info
- fix participant function in relay options
- add richResponse as sendMessage
- auto replace messageId to IOS id if using IOS|Safari platform/browser
- store functions
- username functions
- graphql functions
- toPn, toLID, & fetchUsername
- delete auto follow ( all )
- privacy setting functions
(@XzC_Information) | 12 |
| 9 | Here is the BEST whatsapp username checker💎
All the noobs are using the normal query that checks just one username each request..
Our function uses a query that can check up to 10 usernames each query. The funcs auto splits the username array in 10 usernames per request to boost it to the maximum limit🍀
i recommend to use a vpn on the bot host if you check more then 50k in a day so you dont get ip banned😎 | 49 |
| 10 | 😭 | 120 |
| 11 | [ Chess PvP ]
Putih: w7yuxD
Hitam: Menunggu
Giliran: Putih | 1 |
| 12 | 🎶 #JKTEMO
👤 Ardy Minaj - Topic
🔗 https://youtube.com/watch?v=Fk9rS29afqA | 120 |
| 13 | Free userbot base will released on https://github.com/XazepysK | 125 |
| 14 | ‼️Telegram Mods By @xrelly [ Beta Tester ]
🆒Feature -
Show delete message
Ghost Mode
Booster Upload Video
Booster Download Video
❓ Base by RcGram. | 140 |
| 15 | sticker.webp | 185 |
| 16 | username.js | 887 |
| 17 | username.js | 2 |
| 18 | Username functioning its available rn, i will publish it on my package ( @zeppeliorg/wbails or xzcbailz ) | 382 |
| 19 | sticker.webp | 226 |
| 20 | Wahyu peler | 273 |
متاح الآن! بحث تيليغرام 2025 — أهم رؤى العام 
