getCommandHelpPaginator
Given an event, prefix and argument list, attempt to find the command represented by the arguments and return a BasePaginator, ready to be sent.
The BasePaginator will contain an error message if the command can't be found, or the command's checks fail.
Return
Paginator containing the command's help, or an error message.
Parameters
MessageCreateEvent that triggered this help invocation.
Command prefix to use for formatting.
List of arguments to use to find the command.
Given a command context and argument list, attempt to find the command represented by the arguments and return a BasePaginator, ready to be sent.
The BasePaginator will contain an error message if the command can't be found, or the command's checks fail.
Return
Paginator containing the command's help, or an error message.
Parameters
MessageCommandContext object that triggered this help invocation.
List of arguments to use to find the command.
Given an event, prefix and argument list, attempt to find the command represented by the arguments and return a BasePaginator, ready to be sent.
The BasePaginator will contain an error message if the command passed was null, or the command's checks fail.
Please be mindful of using this with subcommands, as the extension's design intends for users to be unable to retrieve help for subcommands when any parent command's checks fail, and this function does not run those checks.
Return
Paginator containing the command's help, or an error message.
Parameters
MessageCreateEvent that triggered this help invocation.
Command prefix to use for formatting.
Command object to format the help for.