2016-09-14 22:05:18 +00:00
|
|
|
module.exports = (lib) => {
|
2016-09-09 11:18:03 +00:00
|
|
|
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
|
|
|
});
|
|
|
|
};
|