Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- var options = {
- name: `Online : %s`,
- channel: "ايدي الروم"
- }
- client.on("ready", () => {
- let channel = client.channels.cache.get(options.channel);
- if (channel.guild) {
- channel.setName(`${options.name.split("%s").join(channel.guild.members.cache.filter(r => r.voice.channel).size)}`);
- }
- })
- client.on("voiceStateUpdate", (oldState, newState) => {
- if (newState.guild.channels.cache.get(options.channel)) newState.guild.channels.cache.get(options.channel).setName(`${options.name.split("%s").join(newState.guild.members.cache.filter(m => m.voice.channel).size)}`);
- }) // steve Toxic Codes
Advertisement
Add Comment
Please, Sign In to add comment