Ejemplo n.º 1
0
        public async Task <RuntimeResult> What([Remainder] string arg = "")
        {
            var filename = "what.gif";
            await Context.Channel.SendFileAsync(Path.Combine(AppContext.BaseDirectory, "Uploads", filename));

            return(WestbotCommandResult.AcceptNoReaction());
        }
Ejemplo n.º 2
0
        public async Task <RuntimeResult> Stare([Remainder] String arg = "")
        {
            var    filename = "staring.gif";
            string path     = Path.Combine(AppContext.BaseDirectory, "Uploads", filename);
            await Context.Channel.SendFileAsync(path);

            return(WestbotCommandResult.AcceptNoReaction());
        }
Ejemplo n.º 3
0
        public async Task <RuntimeResult> ThatsTrue([Remainder] String arg = "")
        {
            var    filename = "mindblown.gif";
            string path     = Path.Combine(AppContext.BaseDirectory, "Uploads", filename);

            await Context.Channel.SendMessageAsync("https://www.youtube.com/watch?v=MCT80HJWQ2A");

            return(WestbotCommandResult.AcceptNoReaction());
        }
Ejemplo n.º 4
0
        public async Task <RuntimeResult> ShowEmote([Remainder] string arg = "")
        {
            if (string.IsNullOrEmpty(arg))
            {
                return(WestbotCommandResult.ErrorReact("empty in show emote"));
            }

            //arg = arg.Replace(":", ""); //remove the :

            await ReplyAsync($"{arg}");

            return(WestbotCommandResult.AcceptReact());
        }
Ejemplo n.º 5
0
        public async Task <RuntimeResult> Nomtmospherelarge([Remainder] String arg = "")
        {
            await ReplyAsync("https://gfycat.com/SlimyDarkKagu");

            return(WestbotCommandResult.AcceptNoReaction());
        }
Ejemplo n.º 6
0
        public async Task <RuntimeResult> LfgGG([Remainder] String arg = "")
        {
            await Lfg_function("LFG-GG");

            return(WestbotCommandResult.AcceptReact("lfgsuccess"));
        }