🩸⃟⃨〫⃰‣𝐓𝐑𝐀𝐒𝐇-𝐂𝐎𝐑𝐄
前往频道在 Telegram
Support channel for Trashcore projects
显示更多未指定国家未指定类别
487
订阅者
+524 小时
+127 天
+6930 天
帖子存档
After he noticed 😂😂 people are aware of his scams he changed his name from James to shenxi to hide his shame
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
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
James knows well that I can't have one vps😂🤔 and he's busy thinking he can be nice
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
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