forked from Supositware/Haha-Yes
autoresponse disable by default
This commit is contained in:
parent
0431d5b0bb
commit
0c0edcfaba
1 changed files with 5 additions and 10 deletions
15
index.js
15
index.js
|
@ -81,34 +81,29 @@ client.registry
|
|||
// Reply with images as attachement
|
||||
if(imgResponseObject[message_content]) {
|
||||
var autoresponse = new SelfReloadJSON('./json/autoresponse.json');
|
||||
if(autoresponse[message.channel.id] == 'disable')
|
||||
return console.log('disable')
|
||||
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('./json/autoresponse.json');
|
||||
if(autoresponse[message.channel.id] == 'disable')
|
||||
return console.log('disable')
|
||||
if(autoresponse[message.channel.id] == 'enable')
|
||||
message.react(reactObject[message_content]);
|
||||
}
|
||||
// auto respond to messages
|
||||
else if(responseObject[message_content]) {
|
||||
var autoresponse = new SelfReloadJSON('./json/autoresponse.json');
|
||||
if(autoresponse[message.channel.id] == 'disable')
|
||||
return console.log('disable')
|
||||
if(autoresponse[message.channel.id] == 'enable')
|
||||
message.channel.send(responseObject[message_content]);
|
||||
// If it contain "like if" react with 👍
|
||||
} else if (message_content.includes("like if")) {
|
||||
var autoresponse = new SelfReloadJSON('./json/autoresponse.json');
|
||||
if(autoresponse[message.channel.id] == 'disable')
|
||||
return console.log('disable')
|
||||
if(autoresponse[message.channel.id] == 'enable')
|
||||
message.react("\u{1F44D}")
|
||||
// If it contain "jeff" react with a jeff emote
|
||||
} else if (message_content.includes("jeff")) {
|
||||
var autoresponse = new SelfReloadJSON('./json/autoresponse.json');
|
||||
if(autoresponse[message.channel.id] == 'disable')
|
||||
return console.log('disable')
|
||||
if(autoresponse[message.channel.id] == 'enable')
|
||||
message.react("496028845967802378")
|
||||
}
|
||||
}});
|
||||
|
|
Loading…
Reference in a new issue