diff --git a/NadekoBot/Commands/HelpCommand.cs b/NadekoBot/Commands/HelpCommand.cs index 16e2b603..194e33fc 100644 --- a/NadekoBot/Commands/HelpCommand.cs +++ b/NadekoBot/Commands/HelpCommand.cs @@ -10,6 +10,7 @@ namespace NadekoBot { public override Func DoFunc() => async e => { + /* string helpstr = "**COMMANDS DO NOT WORK IN PERSONAL MESSAGES**\nOfficial repo: **github.com/Kwoth/NadekoBot/**"; string lastCategory = ""; @@ -31,7 +32,8 @@ namespace NadekoBot helpstr = curstr.Substring(curstr.LastIndexOf("\n") + 1) + helpstr.Substring(2000); await Task.Delay(200); } - await e.User.Send(helpstr); + */ + await e.User.Send("**LIST OF COMMANDS CAN BE FOUND ON THIS LINK**\n\n "); }; public Action DoGitFunc() => e => { @@ -66,7 +68,13 @@ namespace NadekoBot .Alias("-guide") .Description("Sends a readme and a guide links to the channel.") .Do(async e => - await e.Send("**FULL README**: \n\n**GUIDE ONLY**: ")); + await e.Send( +@"**FULL README**: + +**GUIDE ONLY**: + +**LIST OF COMMANDS**: ")); + cgb.CreateCommand("-donate") .Alias("~donate") .Description("Instructions for helping the project!") diff --git a/NadekoBot/NadekoBot.cs b/NadekoBot/NadekoBot.cs index 9c5cda83..fba1d855 100644 --- a/NadekoBot/NadekoBot.cs +++ b/NadekoBot/NadekoBot.cs @@ -173,7 +173,7 @@ namespace NadekoBot { if (!repliedRecently) { repliedRecently = true; - await e.Send("**COMMANDS DO NOT WORK IN PERSONAL MESSAGES**\nYou can type `-h` or `-help` or `@MyName help` in any of the channels I am in and I will send you a message with my commands.\n Or you can find out what i do here: https://github.com/Kwoth/NadekoBot\nYou can also just send me an invite link to a server and I will join it.\nIf you don't want me on your server, you can simply ban me ;(\nBot Creator's server: https://discord.gg/0ehQwTK2RBhxEi0X"); + await e.Send("**FULL LIST OF COMMANDS**:\n❤ ❤\n\n⚠**COMMANDS DO NOT WORK IN PERSONAL MESSAGES**\n\n\n**Bot Creator's server:** "); Timer t = new Timer(); t.Interval = 2000; t.Start();