29 lines
536 B
Go
Raw Normal View History

2018-07-10 16:04:58 +00:00
package commands
import (
"fmt"
"github.com/bwmarrin/discordgo"
)
// Guild ID
const guildID = "134910939140063232"
2018-07-10 16:06:34 +00:00
// Admin ID
const adminID = "122970452632141826"
// Roles prints out all roles for the server admin.
2018-07-10 16:04:58 +00:00
func Roles(s *discordgo.Session, msg *discordgo.MessageCreate) bool {
2018-07-10 16:06:34 +00:00
if msg.Content != "!roles" || msg.Author.ID != adminID {
2018-07-10 16:04:58 +00:00
return false
}
roles, _ := s.GuildRoles(guildID)
for _, role := range roles {
s.ChannelMessageSend(msg.ChannelID, fmt.Sprintf("%s: %s", role.ID, role.Name))
}
return true
}