hdkv
/
fwzookeeper
Archived
1
Fork 0
This repository has been archived on 2022-11-04. You can view files and clone it, but cannot push or open issues/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 ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

// Fantasy World Zookeeper Bot
// Copyright (c) 2018 Vladimir "fat0troll" Hodakov
package commandsv1
import (
"gitlab.com/toby3d/telegram"
itelegram "source.hodakov.me/fat0troll/fwzookeeper/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)
}