mirror of
https://github.com/abocn/TelegramBot.git
synced 2025-03-10 21:00:03 +00:00
23 lines
560 B
JavaScript
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));
|
|
}
|