1.3.5 • Published 5 years ago

simplebotsjs v1.3.5

Weekly downloads
-
License
ISC
Repository
-
Last release
5 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

5 years ago

1.3.4

5 years ago

1.3.3

5 years ago

1.3.2

5 years ago

1.3.1

5 years ago

1.3.0

5 years ago

1.2.9

5 years ago

1.2.8

5 years ago

1.2.7

5 years ago

1.2.6

5 years ago

1.2.5

5 years ago

1.2.4

5 years ago

1.2.3

5 years ago

1.2.2

5 years ago

1.2.1

5 years ago

1.2.0

5 years ago

1.1.7

5 years ago

1.1.6

5 years ago

1.1.5

5 years ago

1.1.4

5 years ago

1.1.3

5 years ago

1.1.2

5 years ago

1.1.1

5 years ago

1.1.0

5 years ago

1.0.3

5 years ago

1.0.2

5 years ago

1.0.1

5 years ago

1.0.0

5 years ago