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

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

الذهاب إلى القناة على Telegram

Support channel for Trashcore projects

إظهار المزيد
لم يتم تحديد البلدالفئة غير محددة
487
المشتركون
+524 ساعات
+127 أيام
+6930 أيام
أرشيف المشاركات
The weak shall change their usernames to hide shame😂😂

@shenxidev2 See he's busy changing his username

After he noticed 😂😂 people are aware of his scams he changed his name from James to shenxi to hide his shame

He tells people that he bills heroku yet he never used heroku 😅😂

He scammed a Ugandan 15 dollars 😂😂 lieng to him that he'll make for him a school website I'm unfortunate that guy didn't know James before making that transaction but atleast he felt the weakness of Kenyan scammers

After lacking a server 😂😂he told his people this
After lacking a server 😂😂he told his people this

Reasons why James he's always jealous at me 😂😂 First 😂😂he used to like my former bot's name "Vampire killer" after I stopped with it he started using that name and even made it weaker 😂😂i made api website he wanted the source code for him to clone but I ignored him 😂😂my WhatsApp group has been gaining more members than his group even after he cloned my baileys,,this made him more jealous that he couldn't even stay with my admins in the group 😂😂I demoted him from my panel because he used to steal people files and add auto follow channels to people's project without their permission 😂😂 after then i denied him a chance to get a server to test his weak functions yesterday 😂😂he thought he could be nice pretending i didn't knew his plans yet he got snitches allover

A developer begging for panel?

I used to ignore him coz 😂😂 never trust noobs
+1
I used to ignore him coz 😂😂 never trust noobs

James knows well that I can't have one vps😂🤔 and he's busy thinking he can be nice

I'm bringing all his scams here 😂😂 was just waiting for this day

😂😂his work
😂😂his work

Trust him at your own risk 😂😂 with your panels
Trust him at your own risk 😂😂 with your panels

Someone calling himself a developer and he can't even install a panel,, just busy begging for admin panels so that he can steal other Devs' files and projects

James thinking he could be nice 😂😂 fools these days

A true partner who can work work alongside me dm

Someone here trying to be nice

https://api.drexapp.space Fixed all ai endpoints Fixed all yt download endpoints

const axios = require('axios');

const play3 = {
  command: ['play3'],
  desc: 'Search and download YouTube audio',
  category: 'Downloader',
  usage: '.play3 <song name>',

  run: async ({ trashcore, m, args, xreply, chat }) => {
    try {
      const query = args.join(' ');
      if (!query) {
        return xreply('🎵 Please provide a song name\nExample: .play3 Faded Alan Walker');
      }

      await xreply('🎵 Searching and downloading audio...\nPowered by Trashcore');

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

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

      const res = data.result;

      const caption = `╭━━━〔 🎵 PLAY 3 〕━━━⬣
┃ 🎶 *Title:* ${res.title}
┃ 🎵 *Format:* ${res.format || 'MP3'}
┃ 🔗 *Source:* YouTube
╰━━━━━━━━━━━━━━━━⬣`;

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

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

    } catch (err) {
      console.error('play3 error:', err);
      xreply(`❌ Error: ${err.message}`);
    }
  }
};
Command play YouTube downloader Powered by Trashcore api