-
Version 3, we support discord.js version 13, support typescript
-
Version 2, we support discord.js version 12
-
Version 1, we support discord.js version less than 12
npm i discord.js-temporary-channel
yarn add discord.js-temporary-channel
import { Client, Intents } from "discord.js";
const client = new Client({
intents: [
Intents.FLAGS.GUILDS,
Intents.FLAGS.GUILD_MESSAGES,
Intents.FLAGS.GUILD_VOICE_STATES,
],
});
import TVC from "discord.js-temporary-channel";
const VC = new TVC(client, {
userLimit: 23,
reason: "powered by ds112",
nameStartWith: "3AT ",
nameStartWithTemporary: "* ",
});
// todo: create voice public
VC.autoCreateTemporaryVoiceChannel();
// todo: create voice private, thanks to @nodgear
// Private channel method (Only creator has access)
VC.autoCreateTemporaryVoiceChannelPrivate();
// You need to come up with your own implementation on how to invite another users to this channel.
client.on("ready", () => {
console.log(`Logged in as ${client?.user?.tag}!`);
});
client.login("TOKEN");