View Single Post
08-08-17, 01:07 PM   #7
yoshimo
An Aku'mai Servant
Join Date: May 2006
Posts: 30
Code:
print("--")
local a=C_ArtifactUI.GetPowers()
--print(a[18])

local data = C_ArtifactUI.GetPowerInfo(a[18]);

print(data.isFinal)

for i, j in pairs( C_ArtifactUI.GetPowerInfo(a[18]) ) do
   --   print(i,j)
end
if C_ArtifactUI.GetPowerInfo(a[18]).maxRank > 1 then
   print('Not unlocked')
end
Was quite intresting in ArtifactPowerHelper.
Now (as asked there), i am looking for the trigger that tells items apart that can be used with the empowered Weapon and those items that are "too old and weak" and will trigger the "your weapon is too powerful" barrier.
Is it encoded in the itemlink like the AK multiplier maybe?
  Reply With Quote