rearrenged the autoresponse section and added user tag without relying on autoresponse

Commando
Loic Bersier 6 years ago
parent e02887babf
commit a96bd9eb13

@ -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; {
// If autoresponse is enable send the response
if(autoresponse[message.channel.id] == 'enable') {
// Reply with images as attachement // Reply with images as attachement
if(imgResponseObject[message_content]) { if(imgResponseObject[message_content]) {
var autoresponse = new SelfReloadJSON('DiscordBot/json/autoresponse.json'); message.channel.send({files: [imgResponseObject[message_content]]});
if(autoresponse[message.channel.id] == 'enable') }
message.channel.send({files: [imgResponseObject[message_content]]});
}
// React only to the messages // React only to the messages
else if(reactObject[message_content]) { else if(reactObject[message_content]) {
var autoresponse = new SelfReloadJSON('DiscordBot/json/autoresponse.json'); message.react(reactObject[message_content]);
if(autoresponse[message.channel.id] == 'enable') }
message.react(reactObject[message_content]);
}
// auto respond to messages // auto respond to messages
else if(responseObject[message_content]) { else if(responseObject[message_content]) {
var autoresponse = new SelfReloadJSON('DiscordBot/json/autoresponse.json'); message.channel.send(responseObject[message_content]);
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') {
message.channel.send(customresponse[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…
Cancel
Save