Skip to content

Latest commit

 

History

History
59 lines (40 loc) · 2.06 KB

README.md

File metadata and controls

59 lines (40 loc) · 2.06 KB

Discord Group Call Manager Bot

This bot helps manage group voice calls on Discord. It allows users to join and leave calls, and provides helpful commands for easy interaction.

NOTE: User automation is not allowed on Discord, you almost definitely will not get banned but I would personally make an alt account for this anyways. If you do somehow get banned, you have been warned. Do not come crying to me.

Requirements

  • Python version 3.8 or higher
  • discord.py-self - A library to interact with Discord's API.
  • PyNaCl - A required dependency for voice functionality.

You can install the required packages using pip:

pip install discord.py-self pynacl

Setup

  1. Clone the repository:

    git clone https://github.com/1337faye/Discord-Group-Call-AFKer.git
    cd Discord-Group-Call-AFKer
  2. Modify the Bot Token and Group Chat ID: Open bot.py and locate the following lines:

    TOKEN = 'insert your very cool token here'  # Replace with your actual Discord bot token
    GROUP_DM_ID = 000000000000000000  # Replace with your Group DM's ID

    Replace 'insert your very cool token here' with your actual Discord user token (this is designed for user bots because bots can't join group chats) and 000000000000000000 with your Group DM's ID.

  3. Run the Bot: After making the necessary modifications, run the bot with the following command:

    python bot.py

Commands

  • !join : Join the group call.
  • !leave : Leave the group call.
  • !help : Show this help message.
  • !github : Get a link to the bot's GitHub repository.
  • !uptime : Tells you how long this bot has been running.

License

This project is licensed under the MIT License - see the LICENSE file for details.

Acknowledgments

Thanks to the developers of discord.py-self and PyNaCl for providing the necessary libraries to make this bot functional.