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.
- 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
-
Clone the repository:
git clone https://github.com/1337faye/Discord-Group-Call-AFKer.git cd Discord-Group-Call-AFKer
-
Modify the Bot Token and Group Chat ID: Open the main bot file (usually
bot.py
or similar) 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) and000000000000000000
with your Group DM's ID. -
Run the Bot: After making the necessary modifications, run the bot with the following command:
python bot.py
!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.
This project is licensed under the MIT License - see the LICENSE file for details.
Thanks to the developers of discord.py-self and PyNaCl for providing the necessary libraries to make this bot functional.