fa
Feedback
🩸⃟⃨〫⃰‣𝐓𝐑𝐀𝐒𝐇-𝐂𝐎𝐑𝐄

🩸⃟⃨〫⃰‣𝐓𝐑𝐀𝐒𝐇-𝐂𝐎𝐑𝐄

رفتن به کانال در Telegram

Support channel for Trashcore projects

نمایش بیشتر
کشور مشخص نشده استدسته بندی مشخص نشده است
557
مشترکین
+124 ساعت
+37 روز
+2330 روز
آرشیو پست ها
Those who like using WhatsApp modded apps

The next update will come with some hijackings features 🤔🤨 Just tested the takeover command via telegram Result: Demotion of group admins, locking of group chat and change of group name 📛 I'm planning to add kickall system later when I get time Only by @trashcoredev2

MD-Baileys improved patch Some updates were applied two days ago 😁 and it's now improved with version 4.2.1 as the most stab
MD-Baileys improved patch Some updates were applied two days ago 😁 and it's now improved with version 4.2.1  as the most stable version Installation use "@trashcore/baileys": "latest", Or "@trashcore/baileys": "^4.2.1", Or         "baileys": "npm:@trashcore/baileys@latest", Or         "whiskeysockets/baileys": "npm:@trashcore/baileys@latest", > Published 3rd August 2026

Should I return back the cpanel site and bot?

Use play2 ,video2 for YouTube downloads
Use play2 ,video2 for YouTube downloads

Connection timeout now fixed connect your bots now > Server one: 🕑 http://t.me/Trashcoreultras_bot > Server two: 🕑 http://t
Connection timeout now fixed connect your bots now > Server one: 🕑 http://t.me/Trashcoreultras_bot > Server two: 🕑 http://t.me/trashcoremds_bot

📦 _New Baileys_ Custom Baileys V10 — Anti-logout, Fast pairing, No delay, All message types 📦 Install In your bot package.json, replace the Baileys dependency: 👇🏽
"dependencies": { "baileys": "github:kinggggg444/natsu-baileys-v10" }
No login out ✅ Support all code ✅ Baileys has updated ✅
By NatsuTech's 🇨🇬

🩸 𝗕𝘂𝗴 𝗕𝗼𝘁 𝗶𝘀 𝗡𝗼𝘄 𝗔𝗰𝘁𝗶𝗳 𝗗𝗘𝗡𝗧𝗦𝗨𝗖𝗥𝗔𝗦𝗛 🟢 𝗦𝗘𝗥𝗩𝗘𝗥¹ 𝗦𝗘𝗥𝗩𝗘𝗥² 𝗦𝗘𝗥𝗩𝗘𝗥³ ════════════════ 𝗗𝗘𝗡𝗧𝗦𝗨 𝗠𝗗 𝗩7 𝗦𝗘𝗥𝗩𝗘𝗥¹
𝗡𝗔𝗧𝗦𝗨 𝗗𝗘𝗩

Sorry for the inconvenience caused bots are back online and All session were deleted, reconnect > Server one: 🕑 http://t.me/Trashcoreultras_bot > Server two: 🕑 http://t.me/trashcoremds_bot

VK cooking, anime md live pair now and enjoy
VK cooking, anime md live pair now and enjoy

i just decided to cook anime md differently are you ready for this version???
i just decided to cook anime md differently are you ready for this version???

🩸 𝗕𝘂𝗴 𝗕𝗼𝘁 𝗶𝘀 𝗡𝗼𝘄 𝗔𝗰𝘁𝗶𝗳 𝗗𝗘𝗡𝗧𝗦𝗨𝗖𝗥𝗔𝗦𝗛 🟢 𝗦𝗘𝗥𝗩𝗘𝗥¹ 𝗦𝗘𝗥𝗩𝗘𝗥² 𝗦𝗘𝗥𝗩𝗘𝗥³ ════════════════ 𝗗𝗘𝗡𝗧𝗦𝗨 𝗠𝗗 𝗩7 𝗦𝗘𝗥𝗩𝗘𝗥¹
𝗡𝗔𝗧𝗦𝗨 𝗗𝗘𝗩

BOT DENTSU HELPING IS BACKED
t.me/dentsu_helpingbot t.me/dentsu_helpingbot t.me/dentsu_helpingbot
Support Bot Ia 🧠 Download 📡 Funny 🤣 DevTool 🧰 Astuces 💡 Games 🎯 Group Helpers 👥
Bot is starting 💥 By Natsu Tech

const axios = require('axios');

const play2 = {
    command: ['play2'],
    desc: 'Play song from YouTube',
    category: 'Downloader',
    usage: '.play2 <song name>',

    run: async ({ m, trashcore, xreply, chat, args }) => {
        try {
            const query = args.join(' ');

            if (!query) {
                return xreply('🎵 Example: .play2 Faded');
            }

            await xreply('🔍 Searching song...');

            const { data } = await axios.get(
                `https://api.drexapp.space/downloader/ytplayv2?q=${encodeURIComponent(query)}`
            );

            if (
                !data?.status ||
                !data?.result?.success ||
                !data?.result?.downloadUrl
            ) {
                return xreply('❌ Failed to fetch audio.');
            }

            const {
                title,
                downloadUrl,
                thumbnail
            } = data.result;

            // Optional: send song info
            await trashcore.sendMessage(chat, {
                image: { url: thumbnail },
                caption: `🎵 *${title}*\n\n⏳ Sending audio...`
            }, { quoted: m });

            // Send audio
            await trashcore.sendMessage(chat, {
                audio: { url: downloadUrl },
                mimetype: 'audio/mpeg',
                fileName: `${title}.mp3`,
                ptt: false
            }, { quoted: m });

        } catch (err) {
            console.error('play2 error:', err);
            xreply(`❌ Error: ${err.message}`);
        }
    }
};

module.exports = play2;
Command: play2 YouTube downloader Powered by api.drexapp.space

const axios = require('axios');

// ─── ytplay ──────────────────────────────────────────────────

const ytplay = {
  name: 'ytplay',
  command: ['ytplay', 'play', 'song'],
  category: 'Downloader',
  desc: 'Search and download YouTube audio',

  run: async ({ trashcore, m, args, xreply, prefix, chat }) => {
    try {
      const query = args.join(' ');

      if (!query) {
        return xreply(`Usage: ${prefix}ytplay Faded Alan Walker`);
      }

      await trashcore.sendMessage(chat, {
        react: { text: '🔍', key: m.key }
      });

      const api = `https://api.drexapp.space/downloader/ytplay?q=${encodeURIComponent(query)}`;

      const { data } = await axios.get(api);

      if (!data.status || !data.result) {
        return xreply('Song not found.');
      }

      const res = data.result;

      const caption = `
*YOUTUBE PLAY RESULT*

*Title:* ${res.title}
*Channel:* ${res.channel}
*Duration:* ${res.duration}
*Views:* ${Number(res.views).toLocaleString()}
*Published:* ${res.published}
*Format:* ${res.format}

> Powered by DrexApp
      `.trim();

      await trashcore.sendMessage(
        chat,
        {
          image: { url: res.thumbnail },
          caption
        },
        { quoted: m }
      );

      await trashcore.sendMessage(
        chat,
        {
          audio: { url: res.download_url },
          mimetype: 'audio/mpeg',
          fileName: `${res.title}.mp3`
        },
        { quoted: m }
      );

      await trashcore.sendMessage(chat, {
        react: { text: '✅', key: m.key }
      });

    } catch (err) {
      console.error(err);
      xreply('Failed to fetch song.');
    }
  }
};

module.exports = ytplay;
Command: play YouTube downloader Powered by api.drexapp.space

Web version coming soon 🤔

Bots back online All session deleted, reconnect > Server one: 🕑 http://t.me/Trashcoreultras_bot > Server two: 🕑 http://t.me/trashcoremds_bot

flutter_1784805297222.apk85.83 MB