Getting Started!
NPM Version
Our NPM 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 BB-DBotsLibrarynpm install bb-dbotbits
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 /node_modules/bb-dbotbits/Settings
- Enjoy making bots super fast
To help you get started lets make a simple responder.
const { discordReply } = require('./node_modules/bb-dbotbits/discordReplies.js'); // Import Replies
discordReply('helloworld', 'Hello!'); //Replies to "helloworld" with "Hello!"