Skip to main content

Russian roulette kick/mute bot

Random do kick/mute to user in specific channel.

  1. Receive channel fromของผู้ใช้มาจาก usermessage who use the commandที่ได้รับ 
    ctx.message.author.voice.voice_channel 
  2. Get all members in voiceดึงค่าของสมาชิกทุกคนใน channel by accessing its property 
    channel.members
  3. Random to getสุ่มผู้โชคร้าย 1 user,ราย then random to doและสุ่ม action that will kick or ban that userที่จะทำต่อผู้ใช้
    import random
    
    # To random 1 element from input
    random_element = random.choice(your_list)
    
    # member function
    member.kick()
    member.ban()