⚒️Setup
Requirements
Code Editor (Highly Recommend)
1. Node.js
2. Discord Bot Token
3. Code Editor (Highly Recommend)
Download the Bot
To download the latest release of the bot, please click here.
Installing Dependencies
We need install dependencies some npm package, this is easy.
Open the bot folder in visual studio code.
Open the terminal by Holding
Ctrl + `
To install the packages, type the below command in your terminal.
npm install
Configuring the Bot
To seamlessly integrate and customize your bot, you can easily configure its settings using the config.js
file. The only required parameter is the token
, but additional options are available for further customization.
Configuration Steps:
Open
config.js
file:Specify Bot Token:
In the
config.js
file, ensure that you provide the requiredtoken
. This token is essential for the proper functioning of your bot.module.exports = { bot: { token: 'your-bot-token-here', // Other optional configurations...
Optional Configurations:
Explore additional optional configurations available in the
config.js
file to tailor your bot's behavior according to your needs. Refer to the detailed configurations in next section for more information. Detailed Configurations Here
Running the Bot
Open the bot folder in visual studio code.
Open the terminal by Holding
Ctrl + `
Type the command in your terminal.
npm start
ornode .
.
Last updated
Was this helpful?