mirror of
https://github.com/lyx0/nourybot.git
synced 2024-11-13 19:49:55 +01:00
comment out spammy commands
This commit is contained in:
parent
4e563797b0
commit
bc931a185a
|
@ -1,52 +1,52 @@
|
|||
package commands
|
||||
|
||||
import (
|
||||
"fmt"
|
||||
"strconv"
|
||||
"strings"
|
||||
// import (
|
||||
// "fmt"
|
||||
// "strconv"
|
||||
// "strings"
|
||||
|
||||
"github.com/lyx0/nourybot/cmd/bot"
|
||||
)
|
||||
// "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
|
||||
}
|
||||
// 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
|
||||
}
|
||||
// if emote[0] == '.' || emote[0] == '/' {
|
||||
// nb.Send(channel, ":tf:")
|
||||
// return
|
||||
// }
|
||||
|
||||
pyramidSize, err := strconv.Atoi(size)
|
||||
pyramidEmote := fmt.Sprint(emote + " ")
|
||||
// pyramidSize, err := strconv.Atoi(size)
|
||||
// pyramidEmote := fmt.Sprint(emote + " ")
|
||||
|
||||
if err != nil {
|
||||
nb.Send(channel, "Something went wrong")
|
||||
}
|
||||
// if err != nil {
|
||||
// nb.Send(channel, "Something went wrong")
|
||||
// }
|
||||
|
||||
if pyramidSize == 1 {
|
||||
nb.Send(channel, fmt.Sprint(pyramidEmote+"..."))
|
||||
return
|
||||
}
|
||||
// if pyramidSize == 1 {
|
||||
// nb.Send(channel, fmt.Sprint(pyramidEmote+"..."))
|
||||
// return
|
||||
// }
|
||||
|
||||
if pyramidSize > 3 {
|
||||
nb.Send(channel, "Max pyramid size is 3")
|
||||
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)
|
||||
// for i := 0; i <= pyramidSize; i++ {
|
||||
// pyramidMessageAsc := strings.Repeat(pyramidEmote, i)
|
||||
// // fmt.Println(pyramidMessageAsc)
|
||||
|
||||
nb.Send(channel, pyramidMessageAsc)
|
||||
}
|
||||
// nb.Send(channel, pyramidMessageAsc)
|
||||
// }
|
||||
|
||||
for j := pyramidSize - 1; j >= 0; j-- {
|
||||
pyramidMessageDesc := strings.Repeat(pyramidEmote, j)
|
||||
// fmt.Println(pyramidMessageDesc)
|
||||
// for j := pyramidSize - 1; j >= 0; j-- {
|
||||
// pyramidMessageDesc := strings.Repeat(pyramidEmote, j)
|
||||
// // fmt.Println(pyramidMessageDesc)
|
||||
|
||||
nb.Send(channel, pyramidMessageDesc)
|
||||
}
|
||||
}
|
||||
// nb.Send(channel, pyramidMessageDesc)
|
||||
// }
|
||||
// }
|
||||
|
|
Loading…
Reference in a new issue