f0ckv1/src/trigger/test.js

12 lines
215 B
JavaScript
Raw Normal View History

2016-09-09 11:18:03 +00:00
module.exports = (bot, lib) => {
lib.trigger.add({
2016-09-08 15:42:38 +00:00
name: 'test',
call: /^\!test/,
level: 0,
active: 1,
func: (e) => {
2016-09-10 13:35:04 +00:00
e.reply('test the best');
2016-09-08 15:42:38 +00:00
},
desc: 'test'
});
};