Reformulation of bot structure

This commit is contained in:
Lucas Gabriel 2024-06-02 14:55:44 +00:00
parent 4b9ed6d2c0
commit 2f65126319
15 changed files with 2 additions and 2 deletions

22
commands/furry.js Normal file
View file

@ -0,0 +1,22 @@
module.exports = function(bot, msg) {
const chatId = msg.chat.id;
const userName = msg.from.first_name;
let isFurry = "";
function getRandomInt(max) {
return Math.floor(Math.random() * max);
}
const randomValue = getRandomInt(2);
if (randomValue === 0) {
isFurry = `*You (${userName}) are not a furry.*`;
} else {
isFurry = `*Yes, you (${userName}) are a furry.*`;
}
const message = `${isFurry}`;
bot.sendMessage(chatId, message, { parse_mode: 'Markdown' })
.catch(error => console.error('WARN: Message cannot be sent: ', error));
}