tModLoader / tModLoader-Discord-Bot

A Discord bot written in C# using Discord.Net to serve the tModLoader server. Uses .NET Core 2.0+
https://tmodloader.net/
Apache License 2.0
13 stars 9 forks source link

Add .help command (#38) #46

Closed NotLe0n closed 6 months ago

NotLe0n commented 6 months ago

What does this PR add?

This PR add a .help [command/alias] command which lists all commands, a description of the command, and how to use it with an example. You can give the command the name of a particular command to only see its information.

Implementation

The command uses reflection to get all methods and their Command, Alias, Summary and Remarks attributes. This means you don't need to update some lookup table when adding a new command.

JavidPack commented 6 months ago

Works, thanks.