astralix Userbot
МенюMenu
02 / QUICK START

Освой базу.
Дальше — больше.
Learn the basics.
Then go further.

Всё, что нужно для первых минут с astralix.Everything you need for your first few minutes with astralix.

Точка входаStart with a dot

По умолчанию команды начинаются с точки. Отправляй их со своего аккаунта в Telegram. В примерах используется стандартный префикс; если ты его менял, подставь свой.Commands start with a dot by default. Send them from your own Telegram account. These examples use the default prefix; substitute your own if you changed it.

telegram
.help
.ping

Базовые командыEssential commands

КомандаCommandЧто делаетWhat it does
.helpСписок доступных модулей и команд.List available modules and commands.
.help <module>Помощь по конкретному модулю.Get help for a specific module.
.pingПроверить отклик и время работы.Check response time and uptime.
.infoИнформация об аккаунте и окружении.Account and environment information.
.astralixВерсия astralix и сборка.astralix version and build.
.configОткрыть конфигурацию модулей.Open module configuration.
.setprefix !Сменить префикс команд на !.Change the command prefix to !.
.restartПерезапустить текущий экземпляр.Restart the current instance.
.updateПроверить и установить обновление.Check for and install an update.

Управление модулямиManage modules

telegram
.dlmod https://example.com/module.py
.loadmod
.unloadmod Example

.dlmod загружает модуль по прямой ссылке. .loadmod используй ответом на Python-файл. Для удаления укажи имя модуля в .unloadmod..dlmod loads a module from a direct URL. Use .loadmod in reply to a Python file. Pass the module name to .unloadmod to remove it.

Модуль — это исполняемый Python-код с доступом к аккаунту и системе. Проверяй исходники перед загрузкой.A module is executable Python code with access to your account and system. Review its source before loading it.

Баннеры и rich modeBanners and rich mode

Открой .config и выбери модуль. banner_url задаёт картинку, rich_mode переключает оформление. Пустой URL отключает баннер там, где настройка поддерживает пустое значение.Open .config and choose a module. banner_url sets the image and rich_mode switches the presentation. An empty URL disables the banner where the setting accepts an empty value.

Без Telegram Premium rich-сообщения отправляются через инлайн-бота. С Premium они могут отправляться от аккаунта; сообщения с кнопками используют инлайн-бота.Without Telegram Premium, rich messages are sent through the inline bot. With Premium they can be sent from the account; messages with buttons use the inline bot.

Обновление и перезапускUpdates and restarts

Используй .update для Git-установки и .restart для перезапуска. Обновление может потребовать установки зависимостей. Для архивной установки сначала получи свежие исходники, затем явно установи зависимости.Use .update for a Git installation and .restart to restart. Updating may require installing dependencies. For an archive installation, obtain the new source first and install dependencies explicitly.

shell
uv sync --locked --inexact