A simple application bot for discord that allows admins to create application forms for the user to complete.
- Create a file in this directory called "auth.json" and put in it "{"token": "YOUR-AUTH-TOKEN"}"
- Run with
npm run bot
- Add the role
Adminand add this role to the admins. - Message
$setsubmissionsin your server to tell the bot to submit to you (or alternatively use the$setsubmissionschannelcommand). - Message
$setupto configure the application form. - Message
$endsetupto finish.
End users need to run $apply to start an application.
To add or change the symbol (or string) that goes before the command edit activation-strings.js and add or remove strings from the array.
To change what the bot says change the appropriate text in strings.js
To change the default application questions that are set when the bot starts up edit the application-questions.js file.
To add a command to this bot add a function to the module.exports object in actions.js.
The function needs to be named the command you want it to listen for and it will call that with the message passed as a parameter.