Skip to content

Cd-corgi/discord-vc-status

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 

Repository files navigation

discord-vc-status

  • A little library that makes your selected Voice Channel get a custom status!

How to install it:

npm i discord-vc-status

How to use it:

// in your index.js or whatever you declared client
const { DiscordVCStatus } = require("discord-vc-status")
const { Client } = require("discord.js")

// Define your client..
const client = new Client({ Intents: [INTENTS_HERE] })

// Declare the library as a client's attribute
client.vcStatus = new DiscordVCStatus(client);

// in your command if you want
// Put any status message.
let status = "I love the mices 🐁"

// Invoke it.
await client.vcStatus.setVoiceStatus("<voice-channel-id-here>", status)