discord.js-selfbot-v13/examples/ActivityMessage.js

16 lines
373 B
JavaScript
Raw Normal View History

2024-01-14 10:53:18 +00:00
const { Client } = require('../src/index');
const client = new Client();
client.on('ready', async () => {
console.log(`${client.user.username} is ready!`);
const channel = client.channels.cache.get('id');
channel.send({
activity: {
type: 3, // MessageActivityType.Listen
partyId: `spotify:${client.user.id}`,
},
});
});
client.login('token');