var botCommands = require('./commands.js')
client.on('chat', function(channel, user, message, self){
for(i=0;i<botCommands.length;i++) {
if(message.toLowerCase() === "!"+botCommands.botCommands[i].command){
if(botCommands.botCommands[i].mod) {
if(!(user["user-type"] != "mod" && user.username != channel.replace("#", ""))) {
break;
}
}
if(botCommands.botCommands[i].me) {
if(user['display-name'] != "TheDerpySupport"){
break;
}
}
if(botCommands.botCommands[i].whisper) {
client.whisper(user['display-name'], botCommands.botCommands[i].description);
} else {
client.say(channel, botCommands.botCommands[i].description);
}
}
}}