𝙎𝙠𝙞𝙥𝙥𝙮
𝙎𝙠𝙞𝙥𝙥𝙮
Explore posts from servers
DIAdiscord.js - Imagine an app
Created by 𝙎𝙠𝙞𝙥𝙥𝙮 on 12/21/2023 in #djs-questions
Looking for help on a small discord bot project
its not but ok
15 replies
DIAdiscord.js - Imagine an app
Created by 𝙎𝙠𝙞𝙥𝙥𝙮 on 12/21/2023 in #djs-questions
Looking for help on a small discord bot project
I have premium
15 replies
DIAdiscord.js - Imagine an app
Created by 𝙎𝙠𝙞𝙥𝙥𝙮 on 12/21/2023 in #djs-questions
Looking for help on a small discord bot project
no its not if you have premium
15 replies
DIAdiscord.js - Imagine an app
Created by 𝙎𝙠𝙞𝙥𝙥𝙮 on 12/21/2023 in #djs-questions
Looking for help on a small discord bot project
its not for a music bot
15 replies
DIAdiscord.js - Imagine an app
Created by 𝙎𝙠𝙞𝙥𝙥𝙮 on 12/21/2023 in #djs-questions
Looking for help on a small discord bot project
how is this in violation tos
15 replies
DIAdiscord.js - Imagine an app
Created by 𝙎𝙠𝙞𝙥𝙥𝙮 on 12/21/2023 in #djs-questions
Looking for help on a small discord bot project
const Discord = require('discord.js'); const ytdl = require('ytdl-core'); const fs = require('fs'); const { Client, GatewayIntentBits } = require('discord.js'); const client = new Client({ intents: [ GatewayIntentBits.Guilds, GatewayIntentBits.GuildMessages, GatewayIntentBits.MessageContent, GatewayIntentBits.GuildMembers, ], }); client.on('messageCreate', async message => { if (message.content.startsWith('/request')) { const url = message.content.split(' ')[1]; const stream = ytdl(url, { filter: 'audioonly' }); stream.pipe(fs.createWriteStream('output.mp3')); } }); client.login('token');
15 replies