mirror-nourybot/pkg/commands/pyramid.go

53 lines
1.1 KiB
Go
Raw Normal View History

2021-10-19 23:53:41 +02:00
package commands
2021-10-25 18:01:17 +02:00
// import (
// "fmt"
// "strconv"
// "strings"
// "github.com/lyx0/nourybot/cmd/bot"
// )
// func Pyramid(channel, size, emote string, nb *bot.Bot) {
// if size[0] == '.' || size[0] == '/' {
// nb.Send(channel, ":tf:")
// return
// }
// if emote[0] == '.' || emote[0] == '/' {
// nb.Send(channel, ":tf:")
// return
// }
// pyramidSize, err := strconv.Atoi(size)
// pyramidEmote := fmt.Sprint(emote + " ")
// if err != nil {
// nb.Send(channel, "Something went wrong")
// }
// if pyramidSize == 1 {
// nb.Send(channel, fmt.Sprint(pyramidEmote+"..."))
// return
// }
// if pyramidSize > 3 {
// nb.Send(channel, "Max pyramid size is 3")
// return
// }
// for i := 0; i <= pyramidSize; i++ {
// pyramidMessageAsc := strings.Repeat(pyramidEmote, i)
// // fmt.Println(pyramidMessageAsc)
// nb.Send(channel, pyramidMessageAsc)
// }
// for j := pyramidSize - 1; j >= 0; j-- {
// pyramidMessageDesc := strings.Repeat(pyramidEmote, j)
// // fmt.Println(pyramidMessageDesc)
// nb.Send(channel, pyramidMessageDesc)
// }
// }