@vnbot/custom-bot
v1.0.2
Published
Plugin for ezbot
Downloads
11
Maintainers
Readme
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();