bloaterbot/text.go
2023-03-05 04:20:17 +01:00

27 lines
811 B
Go

package main
import (
tgbotapi "github.com/go-telegram-bot-api/telegram-bot-api/v5"
"watn3y/bloaterbotv3/botIO"
"watn3y/bloaterbotv3/config"
)
func balonlyl(update tgbotapi.Update, bot *tgbotapi.BotAPI) {
/*balonlylLines := [4]string{
balonlylAT + " they're talking about you",
"Bitch " + balonlylAT + " they're shittalking you again",
"Bruh wtf " + balonlylAT + ", again",
balonlylAT + " look at these idiots",
}*/
message := tgbotapi.MessageConfig{
BaseChat: tgbotapi.BaseChat{ChatID: update.Message.Chat.ID, ReplyToMessageID: update.Message.MessageID},
ParseMode: "html",
DisableWebPagePreview: true,
//Text: balonlylLines[rand.Intn(len(balonlylLines))],
Text: config.BotConfig.Balonlyl.BalonlylAT,
}
botIO.SendMessage(message, bot)
}