Getting Started!
GitHub Version
Our GitHub repository offers a simple and effective way to create bots using straightforward function calls. Designed for ease of use, this library helps you build bots quickly without getting bogged down in complex code. Whether you’re a beginner or an experienced developer, you’ll find everything you need to get your bot up and running in no time.
Needed specs
Create a Discord Developer Account and create your first bot
I will be making some Youtube video’s soon to help with the previous steps.
Getting Started with our Library:
To get started, just follow these easy steps:
Download the Repository
Begin by downloading our JavaScript bot repository. You can find it on our GitHub page. Click here to access the repo, where you can clone or download the files.Install Dependencies
After downloading, navigate to the folder in your terminal and run:npm install
Enjoy making bots super fast
Make a token.env file in the root directory of your project and put the below line in it:
token=YOURTOKENGOESHERE
- Enjoy making bots super fast
Modify the settings.js file which is found in BB-DBotBits/Settings
- Enjoy making bots super fast
To help you get started lets make a simple responder.
const { discordReply } = require('./BB-DBotBits/discordReplies.js'); // Import Replies
discordReply('helloworld', 'Hello!'); //Replies to "helloworld" with "Hello!"