a Discord bot that auto kicks new members until a member is whitelisted via /whitelist command. See more with /help
Ninja and his friends use a private Discord for party-chats and group-chats. However, Speed accidentally leaked the Discord server link which resulted in nuking the server (too many members to bulk ban + channels were likely not privated). I decided to create this bot so Ninja and other streamers can have good security on their private servers.
Some advice: always permission lock channels in-case of a leak.
There are 3 methods to whitelisting a member.
/whitelist [member-id]
If a member has joined the server before AutoKicker (or during the time autokick was disabled), you can mention the member to /whitelist them:
/whitelist @member-mention
/disable
Remember that you must run /enable to re-enable auto-kicking. You check this using /status.
Join my support server or open an issue here.
This project is licensed under the GPL-3.0 License - see the LICENSE.md file for details
I welcome contributions from the community and appreciate the time and effort put into making this project better. To contribute, please follow the guidelines and steps outlined below:
Start by forking this repository. You can do this by clicking on the "Fork" button located at the top right corner of the GitHub page. This will create a personal copy of the repository under your own GitHub account.
Next, clone the forked repository to your local machine using the following command:
$ git clone https://github.com/yourusername/AutoKicker.gitNavigate to the cloned directory:
$ cd AutoKickerBefore making any changes, it's recommended to create a new branch. This ensures that your changes won't interfere with other contributions and keeps the main branch clean. Use the following command to create and switch to a new branch:
$ git checkout -b branch-nameNow, you can proceed to make your desired changes to the project. Whether it's fixing bugs, adding new features, improving documentation, or optimizing code, your efforts will be instrumental in enhancing the project.
Once you have made the necessary changes, commit your work using the following commands:
$ git add .
$ git commit -m "Your commit message"Push the changes to your forked repository:
$ git push origin branch-nameHead over to the original repository on GitHub and go to the "Pull requests" tab.