gaber-elsayed

Code VoiceOnline LIke Probot || كود فويس اون لاين مثل بروبوت

Sep 17th, 2021
108
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.61 KB | None | 0 0
  1. var options = {
  2. name: `Online : %s`,
  3. channel: "ايدي الروم"
  4. }
  5. client.on("ready", () => {
  6. let channel = client.channels.cache.get(options.channel);
  7. if (channel.guild) {
  8. channel.setName(`${options.name.split("%s").join(channel.guild.members.cache.filter(r => r.voice.channel).size)}`);
  9. }
  10. })
  11. client.on("voiceStateUpdate", (oldState, newState) => {
  12. 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)}`);
  13.  
  14. }) // steve Toxic Codes
Advertisement
Add Comment
Please, Sign In to add comment