View Single Post
07-30-11, 09:55 PM   #4
Bleckpan
A Fallenroot Satyr
 
Bleckpan's Avatar
AddOn Author - Click to view addons
Join Date: Jun 2010
Posts: 22
After messing around with going through each page, I decided using http://pastebin.com/nBXFi5av may be easier/quicker. But of course not!

After querying the auction house, my client decides to "freeze" up. My cursor still responds when when I move my mouse, but the UI does not respond to anything. After about 15 min, I get the "disconnected from server" popup.

Is this a result of using too much memory? It hits about 78 MB before it freezes up. Is there a more efficient way of putting data into tables than this?
Code:
for Item_Number = 1, wholeCount do
 name, _, _, _, _, _, _, _, buyoutPrice, _, _, _, _ = GetAuctionItemInfo("list", Item_Number) 
  if string.find(name, "Glyph") == 1 then
  Glyph_List[Glyph_Count] = {name, buyoutPrice}
  Glyph_Count = Glyph_Count + 1
  end
 end
  Reply With Quote