Answer the question
In order to leave comments, you need to log in
Why do Telegram bot messages on Node.js come in random order?
There is a code
bot.sendMessage(id, msgs.breathingMSg) //1
bot.sendMessage(id, msgs.focusMsg) //2
bot.sendMessage(id, msgs.coldMsg) //3
bot.sendMessage(id, msgs.breathingMSg).then(() => {
bot.sendMessage(id, msgs.focusMsg) //2})
Answer the question
In order to leave comments, you need to log in
async function cepprice() {
await bot.sendMessage(id, msgs.breathingMSg) //1
await bot.sendMessage(id, msgs.focusMsg) //2
await bot.sendMessage(id, msgs.coldMsg) //3
}
cepprice()
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question