Ejemplo n.º 1
0
        public async Task SearchStart_Unity_Kor(CommandContext pContext, string strSearchWord)
        {
            if (CBot.CheckIsRespond(pContext.Channel) == false)
            {
                return;
            }

            await Event_SearchStart(pContext, strSearchWord, Search_UnityAPI, string.Format(strURL_UnityScriptAPI, pContext.RawArgumentString.Replace(" ", "+")), "UnityAPI", true);
        }
Ejemplo n.º 2
0
        public async Task SearchStart_NaverDic_Korean_Kor(CommandContext pContext, string strSearchWord)
        {
            if (CBot.CheckIsRespond(pContext.Channel) == false)
            {
                return;
            }

            await Event_SearchStart(pContext, strSearchWord, Search_NaverDic_Ko, string.Format(strURL_NaverDic_Korea, pContext.RawArgumentString.Replace(" ", "+")), "Naver 국어사전", true);
        }
Ejemplo n.º 3
0
        public async Task SearchStart_Google_Kor(CommandContext pContext, string strSearchWord)
        {
            if (CBot.CheckIsRespond(pContext.Channel) == false)
            {
                return;
            }

            await Event_SearchStart(pContext, pContext.RawArgumentString.Replace(" ", "+"), Search_Google, strURL_Google, "Google");
        }