var stateSetName = false;
bot.onText(/\(.*)/, function (msg, match) {
if(!stateSetName)return;
var name = match[1];
});
bot.onText(/\/setname/, function (msg, match) {
var fromId = msg.from.id;
bot.sendMessage(fromId, "Введите имя");
stateSetName =true;
setTimeout(function(){ bot.sendMessage(fromId, "Отмена!"); stateSetName =false;},30000);
});