WVAnon is a Discord bot developed by the UTM White Van Discord to enable users to send anonymous messages. We tried JuzoConfession and Voltaire, but neither of them satisfied us in terms of usability, security, and privacy.
As of December 22nd, 2020, 2300 anonymous messages have been sent!
- Voltaire supported banning users, however displaying the user ID all the time led to users being hesitant to use the channel.
- An update to the Discord API resulted in Voltaire being unable to "see" users. Users had to run a bot command (like !volt help) to gain access, however this could reveal their identity to anyone who saw the message and to the admins in the deleted logs.
- The commands for both were long! We wanted the commands to be short and sweet.
- Supports sending messages to two channels (anon-msgs & deep-talks) which can be configured
- Ban users
- Anonymity for users
- Slow mode
- Display rules
Requires: Node.js
- Create a Discord Bot Account
touch auth.json
{
"token": {YOUR TOKEN HERE}
}
-
npm install
-
node bot.js
to run the bot! -
Create three channels in your Discord server: one for logs, one for anon-messages, one for deep-talks. You will need administrator privileges in your discord server to set the channels.
-
To set all channels at once, use
!anon set #[anon-msgs] #[deep-talks] #[log-channel]
. To set channels individually, use the following commands:
!anon set log #[log-channel]
!anon set anon #[anon-msgs]
!anon set deeptalks #[deep-talks]
- Fork the repo
git checkout -b {your branch name here}
- Write your code
- Create a pull request from your fork into main
- Run
npm run prettier
andnpm run lint
, fix all style checks - Squash & merge once approved!