CampFirePlay/commands/casino/slotsMenu.js
Degradin 4108f231e7 v.0.4.2
Casino fixes
2025-01-07 22:07:04 +03:00

30 lines
867 B
JavaScript

const {
Markup
} = require('telegraf')
const {
UserModel
} = global.config
module.exports = async (ctx) => {
let user = await UserModel.findByPk(ctx.from.id)
ctx.args = ctx.update.message.text.split(' ')
await ctx.reply('Комбинации слотов:\n🔥🔥🔥- x25\n⚡⚡⚡ - x10\n⭐⭐⭐ - x5\n💀💀💀 - x2', Markup
.inlineKeyboard([
[{
text: `1000`,
callback_data: `slots1000`
}, {
text: `5000`,
callback_data: `slots5000`
}, {
text: `25000`,
callback_data: `slots25000`
}, {
text: `50000`,
callback_data: `slots50000`
}, {
text: `100000`,
callback_data: `slots100000`
}]
]))
}