コード例 #1
0
        public async Task Help()
        {
            var modules = _commandService.Modules.OrderBy(x => x.Name);
            var pager   = HelpViews.FormatHelp(modules);

            await PagedReplyAsync(pager, new ReactionList());
        }
コード例 #2
0
        public async Task Help([Remainder] CommandInfo command)
        {
            var embed = HelpViews.FormatCommandHelp(command);

            await ReplyAsync(embed : embed);
        }
コード例 #3
0
        public async Task Help(ModuleInfo module)
        {
            var pager = HelpViews.FormatModuleHelp(module);

            await PagedReplyAsync(pager, new ReactionList());
        }