45 |
}); |
}); |
46 |
|
|
47 |
this.on('messageCreate', async (message) => { |
this.on('messageCreate', async (message) => { |
48 |
if (message.author.bot) { |
if (message.author.bot || !message.guild || message.channel.type == 'dm') { |
49 |
return; |
return; |
50 |
} |
} |
51 |
|
|
52 |
await (this.msg = message); |
await (this.msg = message); |
53 |
|
|
54 |
// await this.spamFilter.start(message); |
//await this.spamFilter.start(message); |
55 |
|
|
56 |
await this.commandManager.setMessage(message); |
await this.commandManager.setMessage(message); |
57 |
|
|
58 |
const valid = await this.commandManager.valid(); |
const valid = await this.commandManager.valid(); |
59 |
const has = await this.commandManager.has(); |
const has = await this.commandManager.has(); |
60 |
const snippet = await this.commandManager.snippet(); |
const snippet = await this.commandManager.snippet(); |
61 |
|
const allowed = await this.commandManager.verify(); |
62 |
|
|
63 |
if (valid && has) { |
if (valid && has && allowed) { |
64 |
await this.exec(); |
await this.exec(); |
65 |
} |
} |
66 |
else if (valid && snippet !== undefined) { |
else if (valid && snippet !== undefined) { |
71 |
else if (valid && !has) { |
else if (valid && !has) { |
72 |
await this.commandManager.notFound(); |
await this.commandManager.notFound(); |
73 |
} |
} |
74 |
|
else if (valid && has && !allowed) { |
75 |
|
await this.commandManager.notAllowed(); |
76 |
|
} |
77 |
}); |
}); |
78 |
|
|
79 |
this.on("messageUpdate", async (oldMessage, newMessage) => { |
this.on("messageUpdate", async (oldMessage, newMessage) => { |