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); }
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); }
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"); }