Coming soon.
- Go to nodejs.org and download Node.js. Make sure to get v18.6.0 or above.
- Create a
config.jsonfile inside ofsrc. And create two entries within a JSON dictionary-{ /**** DELETE ALL COMMENTS IN THIS FILE BEFORE RUNNING ****/ "CLIENT_TOKEN": "T0ta11Y.RaNd0MNUM83Rs", // Your bot's token "CLIENT_ID": "012345679999", // Your bot's client ID "AUTHORIZED_USERS": [ // Which users are allowed to manually update and refresh the data of the bot. "111111111111111" // Your user ID ], "GITHUB_PRIVATE_KEY": "T0ta11Y.RaNd0MNUM83Rs19184839", "REFRESH_DATA": true, // Whether or not the bot refreshes data on startup "ALLOW_UPDATING": true // Whether or not the bot will update on /update } - Ensure that
config.jsonis added to .gitignore to prevent security issues. (By default it should always be inside of .gitignore) - Go to Discord Applications and create a Bot for yourself.
- Open your command prompt or terminal and
cdto the location of the bot's folder. (Wherever you have placed it) - Run
node .and the bot will start up.
- DO NOT EDIT
parseConfig.jsonunless you know what you're doing.