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
|
// Reply with images as attachement
|
||||||
if(imgResponseObject[message_content]) {
|
if(imgResponseObject[message_content]) {
|
||||||
var autoresponse = new SelfReloadJSON('./json/autoresponse.json');
|
var autoresponse = new SelfReloadJSON('./json/autoresponse.json');
|
||||||
if(autoresponse[message.channel.id] == 'disable')
|
if(autoresponse[message.channel.id] == 'enable')
|
||||||
return console.log('disable')
|
|
||||||
message.channel.send({files: [imgResponseObject[message_content]]});
|
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('./json/autoresponse.json');
|
var autoresponse = new SelfReloadJSON('./json/autoresponse.json');
|
||||||
if(autoresponse[message.channel.id] == 'disable')
|
if(autoresponse[message.channel.id] == 'enable')
|
||||||
return console.log('disable')
|
|
||||||
message.react(reactObject[message_content]);
|
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('./json/autoresponse.json');
|
var autoresponse = new SelfReloadJSON('./json/autoresponse.json');
|
||||||
if(autoresponse[message.channel.id] == 'disable')
|
if(autoresponse[message.channel.id] == 'enable')
|
||||||
return console.log('disable')
|
|
||||||
message.channel.send(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('./json/autoresponse.json');
|
var autoresponse = new SelfReloadJSON('./json/autoresponse.json');
|
||||||
if(autoresponse[message.channel.id] == 'disable')
|
if(autoresponse[message.channel.id] == 'enable')
|
||||||
return console.log('disable')
|
|
||||||
message.react("\u{1F44D}")
|
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('./json/autoresponse.json');
|
var autoresponse = new SelfReloadJSON('./json/autoresponse.json');
|
||||||
if(autoresponse[message.channel.id] == 'disable')
|
if(autoresponse[message.channel.id] == 'enable')
|
||||||
return console.log('disable')
|
|
||||||
message.react("496028845967802378")
|
message.react("496028845967802378")
|
||||||
}
|
}
|
||||||
}});
|
}});
|
||||||
|
|
Loading…
Reference in a new issue