Add command handler for bot

This commit is contained in:
Raven Scott
2024-06-04 01:19:56 -04:00
parent 6463f2e526
commit c293e3b5e7
4 changed files with 83 additions and 19 deletions

View File

@ -0,0 +1,9 @@
// 8ball.js
export default {
handler: function(bot, args, message) {
const responses = ['It is certain.', 'It is decidedly so.', 'Without a doubt.', 'Yes - definitely.', 'You may rely on it.', 'As I see it, yes.', 'Most likely.', 'Outlook good.', 'Yes.', 'Signs point to yes.', 'Reply hazy, try again.', 'Ask again later.', 'Better not tell you now.', 'Cannot predict now.', 'Concentrate and ask again.', 'Don\'t count on it.', 'My reply is no.', 'My sources say no.', 'Outlook not so good.', 'Very doubtful.'];
const randomIndex = Math.floor(Math.random() * responses.length);
bot.sendMessage(responses[randomIndex]);
}
};

View File

@ -0,0 +1,8 @@
export default {
name: 'hello',
description: 'Greet the user',
handler: function(bot, args, message) {
const userName = message.name;
bot.sendMessage(`Hello, ${userName}! How can I assist you today?`);
}
};

7
chatBot/commands/ping.js Normal file
View File

@ -0,0 +1,7 @@
// ping.js
export default {
handler: function(bot, args, message) {
bot.sendMessage('Pong!');
}
};