92 lines
4.0 KiB
C#
92 lines
4.0 KiB
C#
using System;
|
|
using System.Threading.Tasks;
|
|
using Discord.Commands;
|
|
using NadekoBot.Extensions;
|
|
using System.IO;
|
|
|
|
namespace NadekoBot
|
|
{
|
|
class HelpCommand : DiscordCommand
|
|
{
|
|
public override Func<CommandEventArgs, Task> DoFunc() => async e =>
|
|
{
|
|
string helpstr = "**COMMANDS DO NOT WORK IN PERSONAL MESSAGES**\nOfficial repo: **github.com/Kwoth/NadekoBot/**";
|
|
|
|
string lastCategory = "";
|
|
foreach (var com in client.Services.Get<CommandService>().AllCommands)
|
|
{
|
|
if (com.Category != lastCategory)
|
|
{
|
|
helpstr += "\n`----`**`" + com.Category + "`**`----`\n";
|
|
lastCategory = com.Category;
|
|
}
|
|
helpstr += PrintCommandHelp(com);
|
|
}
|
|
helpstr += "\nBot Creator's server: https://discord.gg/0ehQwTK2RBhxEi0X";
|
|
helpstr = helpstr.Replace(NadekoBot.botMention, "@BotName");
|
|
while (helpstr.Length > 2000)
|
|
{
|
|
var curstr = helpstr.Substring(0, 2000);
|
|
await e.User.Send(curstr.Substring(0, curstr.LastIndexOf("\n") + 1));
|
|
helpstr = curstr.Substring(curstr.LastIndexOf("\n") + 1) + helpstr.Substring(2000);
|
|
}
|
|
await e.User.Send(helpstr);
|
|
};
|
|
|
|
public Action<CommandEventArgs> DoGitFunc() => e => {
|
|
string helpstr = "Official repo: **github.com/Kwoth/NadekoBot/** \n";
|
|
|
|
string lastCategory = "";
|
|
foreach (var com in client.Services.Get<CommandService>().AllCommands) {
|
|
if (com.Category != lastCategory) {
|
|
helpstr += "\n### " + com.Category + " \n";
|
|
helpstr += "Command and aliases | Description | Usage\n";
|
|
helpstr += "----------------|--------------|-------\n";
|
|
lastCategory = com.Category;
|
|
}
|
|
helpstr += PrintCommandHelp(com);
|
|
}
|
|
helpstr = helpstr.Replace(NadekoBot.botMention, "@BotName");
|
|
helpstr = helpstr.Replace("\n**Usage**:", " | ").Replace("**Usage**:", " | ").Replace("**Description:**", " | ").Replace("\n|", " | \n");
|
|
File.WriteAllText("readme.md",helpstr);
|
|
return;
|
|
};
|
|
|
|
public override void Init(CommandGroupBuilder cgb)
|
|
{
|
|
cgb.CreateCommand("-h")
|
|
.Alias(new string[] { "-help", NadekoBot.botMention + " help", NadekoBot.botMention + " h", "~h" })
|
|
.Description("Help command")
|
|
.Do(DoFunc());
|
|
cgb.CreateCommand("-hgit")
|
|
.Description("Help command stylized for github readme")
|
|
.Do(DoGitFunc());
|
|
cgb.CreateCommand("-readme")
|
|
.Alias("-guide")
|
|
.Description("Sends a readme and a guide links to the channel.")
|
|
.Do(async e =>
|
|
await e.Send("**FULL README**: <https://github.com/Kwoth/NadekoBot/blob/master/readme.md>\n\n**GUIDE ONLY**: <https://github.com/Kwoth/NadekoBot/blob/master/ComprehensiveGuide.md>"));
|
|
cgb.CreateCommand("-donate")
|
|
.Description("Instructions for helping the project!")
|
|
.Do(async e => {
|
|
await e.Send(
|
|
@"I've created a **paypal** email for nadeko, so if you wish to support the project, you can send your donations to `nadekodiscordbot@gmail.com`
|
|
Don't forget to leave your discord name or id in the message, so that I can reward people who help out.
|
|
You can join nadekobot server by simply private messaging NadekoBot, and you will get an invite.
|
|
|
|
*If you want to support in some other way or on a different platform, please message me there*"
|
|
);
|
|
});
|
|
}
|
|
|
|
private string PrintCommandHelp(Command com)
|
|
{
|
|
var str = "`" + com.Text + "`";
|
|
foreach (var a in com.Aliases)
|
|
str += ", `" + a + "`";
|
|
str += " **Description:** " + com.Description + "\n";
|
|
return str;
|
|
}
|
|
}
|
|
}
|