View Single Post
02-24-15, 04:02 AM   #2
Mazzop
A Cliff Giant
AddOn Author - Click to view addons
Join Date: Dec 2011
Posts: 74
for gmarco

Code:
local specid = GetActiveSpecGroup()
local maxtalenttier = GetMaxTalentTier()
local talenttree = {}
for i=1, maxtalenttier do
for j=1, 3 do
if select(4, GetTalentInfo(i,j,specid)) == true then
talenttree[i] = j
end
end
end

print(table.concat(talenttree))
  Reply With Quote