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

Node | Node Documentation

NPM

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:

  1. Download the Repository
    Begin by downloading our BB-DBotsLibrary

    npm install bb-dbotbits
  2. 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
  1. Enjoy making bots super fast

Modify the settings.js file which is found in /node_modules/bb-dbotbits/Settings

  1. 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!"