Archived
1
This repository has been archived on 2022-11-04. You can view files and clone it, but cannot push or open issues or pull requests.
fwzookeeper/domains/commands/v1/help.go

25 lines
1.3 KiB
Go
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

// Fantasy World Zookeeper Bot
// Copyright (c) 2018 Vladimir "fat0troll" Hodakov
package commandsv1
import (
"gitlab.com/toby3d/telegram"
itelegram "lab.wtfteam.pro/fat0troll/fw_zookeeper/internal/telegram"
)
// HelpCommand responds to /help message
func HelpCommand(update *telegram.Update) {
message := "Если ты нашёл агрессивную толпу животных и тебе нужны союзники — нажми на "
message += "кнопку «Позвать друзей» и выбирай в качестве получателя этого бота. "
message += "Дожидаться прогрузки инлайна от @FWorldBot не нужно — просто нажми Enter."
message += "У тебя должно получиться отправленное сообщение вида:\n\n"
message += "```\n@FWorldBot fight_9MvTxeleKMtP\nили\n@FWorldBot join_fight_9MvTxeleKMtP```\n\n"
message += "Если же ты сам ищешь приключений — подпишись на канал "
message += "https://t.me/nightcreatures. Смотритель отправляет туда призывы на помощь "
message += "автоматически.\n\n"
message += "*Доброй охоты!*"
itelegram.RespondWithMarkdown(update.Message.Chat.ID, message)
}