View Single Post
08-08-19, 11:14 AM   #4
LanceDH
A Cyclonian
 
LanceDH's Avatar
AddOn Author - Click to view addons
Join Date: Aug 2012
Posts: 41
This seems to scan just fine
Lua Code:
  1. local i = 1;
  2. local line = _G["GameTooltipTextLeft"..i];
  3. while line do
  4.     print(line:GetText());
  5.     i = i + 1;  
  6.     line = _G["GameTooltipTextLeft"..i];
  7. end
  Reply With Quote