1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
require('./subModule.js').extend(DevCmds);
function DevCmds() {
const self = this;
this.myName = 'DevCmds';
this.initialize = function() {
self.command.on(new self.command.SingleCommand(['run'], commandRun));
self.client.on('messageCreate', onMessage);
};
this.shutdown = function() {
self.command.deleteEvent('run');
self.client.removeListener('messageCreate', onMessage);
};
function commandRun(msg) {
if (msg.author.id !== self.common.spikeyId) return;
let res = '';
try {
res = eval(msg.text);
res = JSON.stringify(res);
} catch (err) {
res = err;
}
self.common.reply(msg, res || typeof res);
}
function onMessage(msg) {
if (msg.channel.id != '554105419417518103') return;
msg.react('👍');
}
}
module.exports = new DevCmds();