discord-together
Version:
Play games or watch YouTube videos together on Discord! More than 22 games available!
17 lines (14 loc) • 607 B
JavaScript
const Discord = require('discord.js');
const client = new Discord.Client();
const { DiscordTogether } = require('../index.js');
client.discordTogether = new DiscordTogether(client);
client.on('message', async message => {
if (message.content === 'start') {
if(message.member.voice.channel) {
client.discordTogether.createTogetherCode(message.member.voice.channelId, 'sketchheads').then(async invite => {
return message.channel.send(`${invite.code}`); // Click the blue link !
});
};
};
});
client.login('Discord bot token');