rearrenged the autoresponse section and added user tag without relying on autoresponse
This commit is contained in:
parent
e02887babf
commit
a96bd9eb13
1 changed files with 24 additions and 33 deletions
57
index.js
57
index.js
|
@ -75,45 +75,36 @@ client.registry
|
||||||
});
|
});
|
||||||
|
|
||||||
client.on("message", async (message) => {
|
client.on("message", async (message) => {
|
||||||
var customresponse = new SelfReloadJSON(`DiscordBot/tag/${message.guild.id}.json`);
|
var customresponse = new SelfReloadJSON(`./tag/${message.guild.id}.json`);
|
||||||
|
var autoresponse = new SelfReloadJSON('./json/autoresponse.json');
|
||||||
|
|
||||||
let message_content = message.content.toLowerCase();
|
let message_content = message.content.toLowerCase();
|
||||||
// React to the message and send an auto response with it
|
|
||||||
if (message.author.bot) return; {
|
if (message.author.bot) return; {
|
||||||
// Reply with images as attachement
|
// If autoresponse is enable send the response
|
||||||
if(imgResponseObject[message_content]) {
|
|
||||||
var autoresponse = new SelfReloadJSON('DiscordBot/json/autoresponse.json');
|
|
||||||
if(autoresponse[message.channel.id] == 'enable')
|
|
||||||
message.channel.send({files: [imgResponseObject[message_content]]});
|
|
||||||
}
|
|
||||||
// React only to the messages
|
|
||||||
else if(reactObject[message_content]) {
|
|
||||||
var autoresponse = new SelfReloadJSON('DiscordBot/json/autoresponse.json');
|
|
||||||
if(autoresponse[message.channel.id] == 'enable')
|
|
||||||
message.react(reactObject[message_content]);
|
|
||||||
}
|
|
||||||
// auto respond to messages
|
|
||||||
else if(responseObject[message_content]) {
|
|
||||||
var autoresponse = new SelfReloadJSON('DiscordBot/json/autoresponse.json');
|
|
||||||
if(autoresponse[message.channel.id] == 'enable')
|
|
||||||
message.channel.send(responseObject[message_content]);
|
|
||||||
// User autoresponse
|
|
||||||
} else if(customresponse[message_content]) {
|
|
||||||
var autoresponse = new SelfReloadJSON('DiscordBot/json/autoresponse.json');
|
|
||||||
if(autoresponse[message.channel.id] == 'enable') {
|
if(autoresponse[message.channel.id] == 'enable') {
|
||||||
message.channel.send(customresponse[message_content])
|
// Reply with images as attachement
|
||||||
}
|
if(imgResponseObject[message_content]) {
|
||||||
|
message.channel.send({files: [imgResponseObject[message_content]]});
|
||||||
|
}
|
||||||
|
// React only to the messages
|
||||||
|
else if(reactObject[message_content]) {
|
||||||
|
message.react(reactObject[message_content]);
|
||||||
|
}
|
||||||
|
// auto respond to messages
|
||||||
|
else if(responseObject[message_content]) {
|
||||||
|
message.channel.send(responseObject[message_content]);
|
||||||
// If it contain "like if" react with 👍
|
// If it contain "like if" react with 👍
|
||||||
} else if (message_content.includes("like if")) {
|
} else if (message_content.includes("like if")) {
|
||||||
var autoresponse = new SelfReloadJSON('DiscordBot/json/autoresponse.json');
|
message.react("\u{1F44D}")
|
||||||
if(autoresponse[message.channel.id] == 'enable')
|
|
||||||
message.react("\u{1F44D}")
|
|
||||||
// If it contain "jeff" react with a jeff emote
|
// If it contain "jeff" react with a jeff emote
|
||||||
} else if (message_content.includes("jeff")) {
|
} else if (message_content.includes("jeff")) {
|
||||||
var autoresponse = new SelfReloadJSON('DiscordBot/json/autoresponse.json');
|
message.react("496028845967802378")
|
||||||
if(autoresponse[message.channel.id] == 'enable')
|
}
|
||||||
message.react("496028845967802378")
|
}
|
||||||
}
|
|
||||||
|
// User autoresponse
|
||||||
|
if(customresponse[message_content])
|
||||||
|
message.channel.send(customresponse[message_content])
|
||||||
}});
|
}});
|
||||||
|
|
||||||
// Very basic starboard
|
// Very basic starboard
|
||||||
|
|
Loading…
Reference in a new issue