From a14f901b0b53ddbdd04468a6186d47a9554efb9b Mon Sep 17 00:00:00 2001 From: Kobert-P Date: Thu, 7 Jun 2018 12:03:38 +0200 Subject: Removed Man.cs --- DiscoBot/Commands/Man.cs | 42 ------------------------------------------ 1 file changed, 42 deletions(-) delete mode 100644 DiscoBot/Commands/Man.cs (limited to 'DiscoBot/Commands/Man.cs') diff --git a/DiscoBot/Commands/Man.cs b/DiscoBot/Commands/Man.cs deleted file mode 100644 index 53838de..0000000 --- a/DiscoBot/Commands/Man.cs +++ /dev/null @@ -1,42 +0,0 @@ -namespace DiscoBot.Commands -{ - using Discord.Commands; - - public class Man : ModuleBase - //public class Man : ModuleBase - { - - //Help for !LE command - public string Man_LE() - //public async Task Man_AE() - { - string res = ""; - res += "Use !LE to display, set, or change LE value\n\n"; - res += " !LE Display values\n"; - res += " !LE 30 Set LE to 30\n"; - res += " !LE +5 Increment LE by 5 (up to the maximum)\n"; - res += " !LE ++5 Increment LE by 5 (ignoring the maximum)\n"; - res += " !LE -5 Decrease LE by 5\n"; - res += " \n"; - - return res; - //await this.ReplyAsync("```xl\n" + res + "\n```"); - } - - //Help for !AE command - public string Man_AE() - { - string res = ""; - res += "Use !AE (or !Asp) to display, set, or change AE/Asp value\n\n"; - res += " !AE Display values\n"; - res += " !AE 30 Set Asp to 30\n"; - res += " !AE +5 Increment Asp by 5 (up to the maximum)\n"; - res += " !AE ++5 Increment Asp by 5 (ignoring the maximum)\n"; - res += " !AE -5 Decrease Asp by 5 (down to 0)\n"; - res += " \n"; - - return res; - } - -} -} -- cgit v1.2.3-54-g00ecf