f0ckv1/src/trigger/test.js

12 lines
185 B
JavaScript
Raw Normal View History

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