return "", errors.New(string(body)) } return string(body), nil } // NumberTriviaCommand is a command for getting number trivial. func NumberTriviaCommand(bot *bruxism.Bot, service bruxism.Service, message bruxism.Message, command string, parts []string) { notfound := true num := rand.Intn(1000) if len(parts) == 1 { if i, err := strconv.Atoi(parts[0]); err == nil { num = i notfound = false } } service.Typing(message.Channel()) str, err := numberTrivia(bot, num, notfound) if err != nil { service.SendMessage(message.Channel(), "There was an error requesting trivia, sorry!") return } service.SendMessage(message.Channel(), str) } // NumberTriviaHelp is the help for the number trivia plugin. var NumberTriviaHelp = bruxism.NewCommandHelp("[number]", "Returns trivia for a random number, or a specified number if provided.")
sort.Sort(cardNames) card := MTGCardMap[cardNames[0].Target] rest := "" if card.Text != "" { rest += "\n" } if card.Power != nil { rest += MTGRestReplacer.Replace(fmt.Sprintf("%s/%s", *card.Power, *card.Toughness)) } if card.Loyalty != nil { rest += MTGRestReplacer.Replace(fmt.Sprintf("%d", *card.Loyalty)) } if card.ID != nil { if rest != "" && rest != "\n" { rest += "\n" } rest += fmt.Sprintf("(http://gatherer.wizards.com/Handlers/Image.ashx?multiverseid=%d&type=card)", *card.ID) } if service.Name() == bruxism.DiscordServiceName { service.SendMessage(message.Channel(), fmt.Sprintf("**%s** %s\n*%s*\n%s%s", card.Name, card.ManaCost, card.Type, MTGTextReplacer.Replace(card.Text), rest)) } else { service.SendMessage(message.Channel(), strings.Replace(fmt.Sprintf("%s. %s. %s. %s%s", card.Name, card.Type, card.ManaCost, card.Text, rest), "\n", " ", -1)) } } // MTGHelp is the help for the MTG plugin. var MTGHelp = bruxism.NewCommandHelp("<cardname>", "Returns information about a Magic: The Gathering card.")
} } if service.Name() == bruxism.DiscordServiceName { fmt.Fprintf(w, "\n```") } w.Flush() out := buf.String() end := "" if IsSeptapus { end += "Septapus community: <https://discord.gg/HWN9pwj>\nPatreon: <https://www.patreon.com/iopred>\nBuilt with love by iopred." } if service.SupportsMultiline() { if end != "" { out += "\n" + end } service.SendMessage(message.Channel(), out) } else { service.SendMessage(message.Channel(), strings.Join(strings.Split(out, "\n"), " ")) service.SendMessage(message.Channel(), strings.Join(strings.Split(end, "\n"), " ")) } } var IsSeptapus bool = false // StatsHelp is the help for the stats command. var StatsHelp = bruxism.NewCommandHelp("", "Lists bot statistics.")