π©Έβγ«β°β¨β£πππππ-ππππ
Open in Telegram
Support channel for Trashcore projects
Show moreThe country is not specifiedThe category is not specified
487
Subscribers
+524 hours
+127 days
+6930 days
Posts Archive
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
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
+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
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
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