From 363cd30802b7e936ede71caab277315f84e98835 Mon Sep 17 00:00:00 2001 From: Purplebored Date: Tue, 26 Sep 2023 15:08:24 +0200 Subject: [PATCH] Added a few new commands Added ?l, ?cl, ?video, ?ihnk, --- Program.cs | 43 ++++++++++++++++++++++++++++++++++++++++++- 1 file changed, 42 insertions(+), 1 deletion(-) diff --git a/Program.cs b/Program.cs index 22c1e40..b9cc654 100644 --- a/Program.cs +++ b/Program.cs @@ -109,6 +109,7 @@ public class Commands : ModuleBase var helpMessage = "#### List of available commands:\n\n" + "#### Practical Commands: \n" + + "`?video` - Sends a list of all aviable videos\n" + "`?help` - Displays this command.\n" + "`?credits` - Displays bot's credit.\n" + "`?test` - Simple test command you say test bot will response.\n" + @@ -135,11 +136,22 @@ public class Commands : ModuleBase "`?quote` - Gives a random quote using yet another API. \n " + "`?gif {term}` - Allows the user to search for gifs using giphy (Beta) \n" + "`?pun` - Gives user a simple pun. \n" + - "`?avatar` - Sends the user Avatar (Beta) \n "; + "`?avatar` - Sends the user Avatar (Beta) \n " + + "#### This bot is far from ready so please don't be too harash on it :01H4RPMABMK4GPXH4QBKAKVJF9:"; await ReplyAsync(helpMessage); } // End of the Help command. + // Begning of Video command + [Command("video")] + public async Task Video() + { + var video = "Here is a list of all aviable videos! \n" + + "`?ihnk` - Send a I have no knwoledge about any of this video. \n"; + await ReplyAsync(video); + } + // End of Video command + // Mod Help command [Command("mod-help")] public async Task ModHelp() @@ -204,6 +216,8 @@ public class Commands : ModuleBase try { + // Sends a messege in the server + await ReplyAsync("You should recive DMs now."); // Send initial message await DM.SendMessageAsync("DMs work if you received this message."); await DM.SendMessageAsync("-----"); @@ -293,6 +307,14 @@ public class Commands : ModuleBase // Fun commands: + // L Command + [Command("l")] + public async Task LCommand() + { + await ReplyAsync("L"); + } + // End of L command + // Gif command [Command("gif")] public async Task GifCommand([Remainder] string keyword) @@ -1081,6 +1103,14 @@ public class Commands : ModuleBase } } + // cL Command + [Command("cl")] + public async Task LTemog() + { + await ReplyAsync("Common <@01H5K1PW0B2NGGWFRGHZVBCZ0S> L"); + } + // End of cL command + // Hentai command. [Command("hentai")] public async Task Hentai() @@ -1118,5 +1148,16 @@ public class Commands : ModuleBase } } // End of NSFW commands + + // Begning of Videos and gif commands! + + // I have no knowlege + [Command("ihnk")] + public async Task IHave() + { + await ReplyAsync("https://cdn.purplebored.pl/uploads/y2mate.com%20-%20I%20have%20no%20knowledge%20of%20any%20of%20this%20ThIs%20iS%20sO%20bIzZaRe_480p.mp4"); + } + // end of ihnk + // End of the Bot } \ No newline at end of file