예제 #1
0
        public bool UpdateItemAdvancedData()
        {
            try
            {
                MarketAbuse.DownloadFile("http://api.rsbuddy.com/grandExchange?a=guidePrice&i=" + id, "tempItemData.txt");
                StreamReader sr      = new StreamReader("tempItemData.txt");
                string       allinfo = sr.ReadToEnd();
                sr.Close();

                FindItemBuyQuantity(allinfo);
                FindItemSellQuantity(allinfo);
                return(true);
            }
            catch { return(false); }
        }