uz
Feedback
πŸ©ΈβƒŸγ€«βƒ°βƒ¨β€£π“π‘π€π’π‡-π‚πŽπ‘π„

πŸ©ΈβƒŸγ€«βƒ°βƒ¨β€£π“π‘π€π’π‡-π‚πŽπ‘π„

Kanalga Telegram’da oβ€˜tish

Support channel for Trashcore projects

Ko'proq ko'rsatish
Mamlakat belgilanmaganToif belgilanmagan
557
Obunachilar
+124 soatlar
+37 kun
+2330 kun
Postlar arxiv
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

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

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