1.3.5 • Published 3 years ago

simplebotsjs v1.3.5

Weekly downloads
-
License
ISC
Repository
-
Last release
3 years ago

SimpleBotsJs, build your bot fast!

TypeScript / NodeJS / Discord.js Usage:

This is how your index.js should look like:

const { ready, msg, ping } = require("simplebotsjs");
const discord = require("discord.js");
const fs = require("fs");
const ms = require("ms")

const bot = new discord.Client();

bot.on("ready", () => {
  ready();
});

bot.on('message', message => {
  if (message.content === 'ping') {
    message.reply('Pong');
    ping();
  }
});
bot.on('message', message => {
  msg();
});


bot.login('BOT TOKEN HERE');

Warning!

This package HAS copyright by Mike V

1.3.5

3 years ago

1.3.4

3 years ago

1.3.3

3 years ago

1.3.2

3 years ago

1.3.1

3 years ago

1.3.0

3 years ago

1.2.9

3 years ago

1.2.8

3 years ago

1.2.7

3 years ago

1.2.6

3 years ago

1.2.5

3 years ago

1.2.4

3 years ago

1.2.3

3 years ago

1.2.2

3 years ago

1.2.1

3 years ago

1.2.0

3 years ago

1.1.7

3 years ago

1.1.6

3 years ago

1.1.5

3 years ago

1.1.4

3 years ago

1.1.3

3 years ago

1.1.2

3 years ago

1.1.1

3 years ago

1.1.0

3 years ago

1.0.3

3 years ago

1.0.2

3 years ago

1.0.1

3 years ago

1.0.0

3 years ago