Remove command categories
This commit is contained in:
parent
3fa4115502
commit
37ac7f56a8
40 changed files with 1 additions and 87 deletions
|
@ -17,7 +17,6 @@ namespace Geekbot.net.Commands.Utils
|
|||
}
|
||||
|
||||
[Command("avatar", RunMode = RunMode.Async)]
|
||||
[Remarks(CommandCategories.Helpers)]
|
||||
[Summary("Get someones avatar")]
|
||||
public async Task GetAvatar([Remainder] [Summary("user")] IUser user = null)
|
||||
{
|
||||
|
|
|
@ -25,9 +25,7 @@ namespace Geekbot.net.Commands.Utils.Changelog
|
|||
}
|
||||
|
||||
[Command("changelog", RunMode = RunMode.Async)]
|
||||
[Alias("updates")]
|
||||
[Remarks(CommandCategories.Helpers)]
|
||||
[Summary("Show the latest 5 updates")]
|
||||
[Summary("Show the latest 10 updates")]
|
||||
public async Task GetChangelog()
|
||||
{
|
||||
try
|
||||
|
|
|
@ -19,7 +19,6 @@ namespace Geekbot.net.Commands.Utils
|
|||
}
|
||||
|
||||
[Command("choose", RunMode = RunMode.Async)]
|
||||
[Remarks(CommandCategories.Helpers)]
|
||||
[Summary("Let the bot choose for you, seperate options with a semicolon.")]
|
||||
public async Task Command([Remainder] [Summary("option1;option2")]
|
||||
string choices)
|
||||
|
|
|
@ -11,7 +11,6 @@ namespace Geekbot.net.Commands.Utils.Dice
|
|||
public class Dice : ModuleBase
|
||||
{
|
||||
[Command("dice", RunMode = RunMode.Async)]
|
||||
[Remarks(CommandCategories.Randomness)]
|
||||
[Summary("Roll a dice.")]
|
||||
public async Task RollCommand([Remainder] [Summary("diceType")] string diceType = "1d20")
|
||||
{
|
||||
|
|
|
@ -19,7 +19,6 @@ namespace Geekbot.net.Commands.Utils
|
|||
}
|
||||
|
||||
[Command("emojify", RunMode = RunMode.Async)]
|
||||
[Remarks(CommandCategories.Helpers)]
|
||||
[Summary("Emojify text")]
|
||||
public async Task Dflt([Remainder] [Summary("text")] string text)
|
||||
{
|
||||
|
|
|
@ -18,7 +18,6 @@ namespace Geekbot.net.Commands.Utils
|
|||
}
|
||||
|
||||
[Command("help", RunMode = RunMode.Async)]
|
||||
[Remarks(CommandCategories.Helpers)]
|
||||
[Summary("List all Commands")]
|
||||
public async Task GetHelp()
|
||||
{
|
||||
|
|
|
@ -27,7 +27,6 @@ namespace Geekbot.net.Commands.Utils
|
|||
}
|
||||
|
||||
[Command("info", RunMode = RunMode.Async)]
|
||||
[Remarks(CommandCategories.Helpers)]
|
||||
[Summary("Get Information about the bot")]
|
||||
public async Task BotInfo()
|
||||
{
|
||||
|
@ -59,7 +58,6 @@ namespace Geekbot.net.Commands.Utils
|
|||
}
|
||||
|
||||
[Command("uptime", RunMode = RunMode.Async)]
|
||||
[Remarks(CommandCategories.Helpers)]
|
||||
[Summary("Get the Bot Uptime")]
|
||||
public async Task BotUptime()
|
||||
{
|
||||
|
|
|
@ -8,7 +8,6 @@ namespace Geekbot.net.Commands.Utils
|
|||
{
|
||||
[Command("👀", RunMode = RunMode.Async)]
|
||||
[Summary("Look at the bot.")]
|
||||
[Remarks(CommandCategories.Fun)]
|
||||
public async Task Eyes()
|
||||
{
|
||||
await ReplyAsync("S... Stop looking at me... baka!");
|
||||
|
|
|
@ -32,7 +32,6 @@ namespace Geekbot.net.Commands.Utils.Poll
|
|||
}
|
||||
|
||||
[Command(RunMode = RunMode.Async)]
|
||||
[Remarks(CommandCategories.Helpers)]
|
||||
[Summary("Check status of the current poll")]
|
||||
public async Task Dflt()
|
||||
{
|
||||
|
@ -55,7 +54,6 @@ namespace Geekbot.net.Commands.Utils.Poll
|
|||
}
|
||||
|
||||
[Command("create", RunMode = RunMode.Async)]
|
||||
[Remarks(CommandCategories.Helpers)]
|
||||
[Summary("Create a poll")]
|
||||
public async Task Create([Remainder] [Summary("question;option1;option2")]
|
||||
string rawPollString)
|
||||
|
@ -113,7 +111,6 @@ namespace Geekbot.net.Commands.Utils.Poll
|
|||
}
|
||||
|
||||
[Command("end", RunMode = RunMode.Async)]
|
||||
[Remarks(CommandCategories.Helpers)]
|
||||
[Summary("End the current poll")]
|
||||
public async Task End()
|
||||
{
|
||||
|
|
|
@ -26,7 +26,6 @@ namespace Geekbot.net.Commands.Utils.Quote
|
|||
}
|
||||
|
||||
[Command]
|
||||
[Remarks(CommandCategories.Quotes)]
|
||||
[Summary("Return a random quoute from the database")]
|
||||
public async Task GetRandomQuote()
|
||||
{
|
||||
|
@ -53,7 +52,6 @@ namespace Geekbot.net.Commands.Utils.Quote
|
|||
}
|
||||
|
||||
[Command("save")]
|
||||
[Remarks(CommandCategories.Quotes)]
|
||||
[Summary("Save a quote from the last sent message by @user")]
|
||||
public async Task SaveQuote([Summary("@user")] IUser user)
|
||||
{
|
||||
|
@ -89,7 +87,6 @@ namespace Geekbot.net.Commands.Utils.Quote
|
|||
}
|
||||
|
||||
[Command("save")]
|
||||
[Remarks(CommandCategories.Quotes)]
|
||||
[Summary("Save a quote from a message id")]
|
||||
public async Task SaveQuote([Summary("messageId")] ulong messageId)
|
||||
{
|
||||
|
@ -123,7 +120,6 @@ namespace Geekbot.net.Commands.Utils.Quote
|
|||
}
|
||||
|
||||
[Command("make")]
|
||||
[Remarks(CommandCategories.Quotes)]
|
||||
[Summary("Create a quote from the last sent message by @user")]
|
||||
public async Task ReturnSpecifiedQuote([Summary("@user")] IUser user)
|
||||
{
|
||||
|
@ -143,7 +139,6 @@ namespace Geekbot.net.Commands.Utils.Quote
|
|||
}
|
||||
|
||||
[Command("make")]
|
||||
[Remarks(CommandCategories.Quotes)]
|
||||
[Summary("Create a quote from a message id")]
|
||||
public async Task ReturnSpecifiedQuote([Summary("messageId")] ulong messageId)
|
||||
{
|
||||
|
@ -165,7 +160,6 @@ namespace Geekbot.net.Commands.Utils.Quote
|
|||
[RequireUserPermission(GuildPermission.KickMembers)]
|
||||
[RequireUserPermission(GuildPermission.ManageMessages)]
|
||||
[RequireUserPermission(GuildPermission.ManageRoles)]
|
||||
[Remarks(CommandCategories.Quotes)]
|
||||
[Summary("Remove a quote (required mod permissions)")]
|
||||
public async Task RemoveQuote([Summary("quoteId")] int id)
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue