0.0.6 • Published 2 years ago

distivities v0.0.6

Weekly downloads
-
License
MIT
Repository
github
Last release
2 years ago

Distivities

⚠ In development.

Installing the package

# npm
npm i distivities
# yarn
yarn add distivities

Usage

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')

Valid options

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

Developer options

To create an invite code for developer applications, we can use getDevInviteCode(voiceChannelId, appName, requestOptions) function

Valid developer applications

pn
youtube
doodleCrew

⚠ Developer applications may not work sometimes

Using IDs to create activity code

To create an invite code using custom ID, we can use getCodeById(voiceChannelId, appID, requestOptions) function.

Thanks

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

0.0.6

2 years ago

0.0.5

2 years ago

0.0.4

2 years ago

0.0.3

2 years ago

0.0.2-beta

2 years ago

0.0.1-beta

2 years ago