1.0.2 • Published 3 years ago

@vnbot/custom-bot v1.0.2

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

CUSTOM_BOT


  • Cấu hình cho bot của bạn

How to use ?

  • Install ?
npm i --save @vnbot/custom-bot
  • How to use
const { Bot } = require('@vnbot/ezbot');
const bot = new Bot({
  email: 'email',
  password: 'password',
});

const Plugin = require('@vnbot/custom-bot');
bot.on('info', (msg) => msg && msg.log && msg.log());
bot.once('error', (err) => {
  bot.stop();
});
bot.register(new Plugin({ prefix: '!', name: 'Bot', admins: ['123'] })).register(otherPlugin);

bot.start();