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/start.go

26 lines
1.4 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"
)
// StartCommand responds to /start message
func StartCommand(update *telegram.Update) {
message := "*Hello, hello, hello*\n\n"
message += "Смотритель Зоопарка приветствует тебя!\n"
message += "Каждую ночь с 22:00 по 8:00 по Москве на поверхность вылезают опасные твари. "
message += "Огры, буйволы, кабаны — сотни их. Я присматриваю за ними, по мере возможности.\n\n"
message += "Если ты нашёл агрессивную толпу животных и тебе нужны союзники — нажми на "
message += "кнопку «Позвать друзей» и выбирай в качестве получателя этого бота. "
message += "Если же ты сам ищешь приключений — подпишись на канал "
message += "https://t.me/nightcreatures. Смотритель отправляет туда призывы на помощь "
message += "автоматически.\n\n"
message += "*Доброй охоты!*"
itelegram.RespondWithMarkdown(update.Message.Chat.ID, message)
}