So, i'm actually tired to find any asks about that...
I need to get user message only after bot question and nowhere else like:
bot: What is your name?
user: Oleg
bot: Hi, Oleg
I am also using require system with module.exports, so i'm really confused, how to deal with my problem
EXAMPLE CODE
const mw = require('./example_module');
bot.onText(/\/help/, async (data) => {
try {
mw.cout.userlog(data);
await cw.help.main(bot, data);
} catch (e) {
mw.cout.err(e.name)
}
});