$bot->setState('how_much_is');
$bot->state('how_much_is')
->hear('{default}', function () use ($bot) {
$count = (int) $bot->message;
$bot->say("Ты выполнил {$count} раз?");
}
)
// or
if ($bot->state_name == 'how_much_is' && $bot->message !== 'СТОП СЛОВО ДЛЯ ВЫХОДА ИЗ СТЕЙТА') {
// code...
} else {
$bot->clearState();
}