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

26 lines
1.4 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"
)
// 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)
}