New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

distivities

Package Overview
Dependencies
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

distivities

Play games, Watch Youtube and more. Inspired by Remyk888's Discord Together

  • 0.0.6
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

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

FAQs

Package last updated on 21 Jul 2022

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc