getAlterParam('PORADNYK_TOKEN')); $bot->setDebug($ubillingConfig->getAlterParam('PORADNYK_DEBUG')); $bot->hookAutosetup($ubillingConfig->getAlterParam('PORADNYK_AUTOSETUP')); // Commands/actions for private chats $commands = array( $bot::ROUTE_INIT => 'actionKeyboard', $bot::ROUTE_ADVICE_UA => 'actionAdvice', $bot::ROUTE_ADVICE_RU => 'actionNahuy' ); // Group-chat commands is text-only and starts with "!" symbol. // Using custom keyboards in group chats isn`t best practice. $groupCommands = array( $bot::GROUTE_ADVICE_UA => 'actionAdvice', $bot::GROUTE_ADVICE_RU => 'actionNahuy', ); $bot->setActions($commands); $bot->setGroupActions($groupCommands); $bot->listen();