2024-06-02 14:55:44 +00:00

23 lines
560 B
JavaScript

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