f0ckv1/src/trigger/test.js

12 lines
190 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',
2016-09-12 22:39:21 +00:00
call: /^!test$/i,
2016-09-08 15:42:38 +00:00
level: 0,
2016-09-12 22:39:21 +00:00
active: 0,
2016-09-08 15:42:38 +00:00
func: (e) => {
2016-09-12 22:39:21 +00:00
2016-09-08 15:42:38 +00:00
},
2016-09-12 22:39:21 +00:00
desc: 'muh'
2016-09-08 15:42:38 +00:00
});
};