const tasks = require('tasks.json'); // массив
const fs = require('fs'); // модуль fs
setInterval(async() => {
fs.writeFileSync("tasks.json", JSON.stringify(tasks, null, "\t"));
}, 1500); // "автосохранение" tasks.json
cmd.hear(/^создать ставку ([0-9]+) ([0-9]+)/i, async (msg, bot) => {
const user = await getUserData(msg.senderId)
let args1 = Number(msg.$match[1])
let args2 = Number(msg.$match[2])
if (args1 && args2 <= 0) return msg.send(`Введено некорректное значение!`)
if (args2 > user.money) return msg.send(`На балансе недостаточно средств!`)
if (rooms.rooms[args1].igra === true) return msg.send(`В данный момент стол занят!`)
// if (rooms.rooms[i] > 10) return msg.send(`Такого стола нет!`)
// if (rooms.rooms[i] < 1) return msg.send(`Такого стола нет!`)
// if (rooms.rooms[i].play == true) return msg.send(`Стол занят!`)
rooms.rooms[args1].stavka += args2
rooms.rooms[args1].user1 += msg.senderId
return msg.send(`Вы создали стол ${args1} со ставкой ${args2}`)
});