⚠ In development.
Installing the package
# npm
npm i distivities
# yarn
yarn add distivities
const { Client, GatewayIntentBits: Intents, Partials } = require('discord.js')
const client = new Client({
intents: [Intents.Guilds, Intents.GuildMessages, Intents.GuildInvites, Intents.MessageContent], // Guild invite intent is needed
partials: [Partials.Channel, Partials.GuildMember, Partials.Message]
})
const Activities = require('distivities')
const inviteGenerator = new Activities(client)
client.on('ready', () => {
console.log(`${client.user.tag} is ready!`)
})
client.on('messageCreate', async (message) => {
if(message.content.toLowerCase() === "!youtube") {
if(!message.member.voice.channelId) return message.reply('Please join a vc first')
const inviteCode = await inviteGenerator.getInviteCode(String(message.member.voice.channelId), "ytNew")
// if code could not be generated, inviteCode will return "no code" as a string
/**
* if(inviteCode === "no code") return message.reply("I do not have the permission to perform this action")
**/
message.reply(inviteCode)
}
})
client.login('your bot token')
ytOld (YouTube old version might not work)
ytNew
pokerNight
betrayal
fishington
chess
sketchyArtist
awkword
doodleCrew
sketchHeads
letterLeague
wordSnacks
spellCast
checkers
blazing8s
puttParty
landIo
bobbleLeague
askAway
knowWhatIMeme
To create an invite code for developer applications, we can use getDevInviteCode(voiceChannelId, appName, requestOptions)
function
pn
youtube
doodleCrew
⚠ Developer applications may not work sometimes
To create an invite code using custom ID, we can use getCodeById(voiceChannelId, appID, requestOptions)
function.
Thanks to RemyK888 for the inspiration. For more information check out his package and his github
If you encounter any problems using this package, you can join our discord server