@@ -8,9 +8,9 @@ You say: best girl, best girl? best grill, best grill? | |||
I say: Big Band... | |||
You say: hi | |||
I say: hello there, you can see my commands here: | |||
I say: hello there, you can see my commands here: https://github.com/calexil/BansheeBot/blob/master/Commands | |||
You say: ping | |||
I say: pong | |||
You say: commands | |||
I say: you can see my commands here: https://github.com/calexil/BansheeBot/blob/master/Commands | |||
@@ -41,5 +41,18 @@ client.on('message', message => { | |||
} | |||
}); | |||
client.on('message', message => { | |||
if (message.content === 'hi') { | |||
message.reply('hello there, you can see my commands here: https://github.com/calexil/BansheeBot/blob/master/Commands'); | |||
} | |||
}); | |||
client.on('message', message => { | |||
if (message.content === 'commands') { | |||
message.reply('you can see my commands here: https://github.com/calexil/BansheeBot/blob/master/Commands'); | |||
} | |||
}); | |||
// THIS MUST BE THIS WAY | |||
client.login(process.env.BOT_TOKEN); |
@@ -19,25 +19,25 @@ client.on('message', message => { | |||
client.on('message', message => { | |||
if (message.content === 'best girl?') { | |||
message.reply('Big Band :clappa: '); | |||
message.reply('Big Band...'); | |||
} | |||
}); | |||
client.on('message', message => { | |||
if (message.content === 'best girl') { | |||
message.reply('Big Band :clappa: '); | |||
message.reply('Big Band...'); | |||
} | |||
}); | |||
client.on('message', message => { | |||
if (message.content === 'best grill?') { | |||
message.reply('Big Band :clappa: '); | |||
message.reply('Big Band...'); | |||
} | |||
}); | |||
client.on('message', message => { | |||
if (message.content === 'best grill') { | |||
message.reply('Big Band :clappa: '); | |||
message.reply('Big Band...'); | |||
} | |||
}); | |||