View Single Post
07-14-22, 04:12 PM   #2
Fizzlemizz
I did that?
 
Fizzlemizz's Avatar
Premium Member
AddOn Author - Click to view addons
Join Date: Dec 2011
Posts: 1,877
If you want to see the whole table (and the local is important so you don't screw up other addons or the game UI).
Lua Code:
  1. local spellInfo = GetSpellPowerCost(133)
  2. for k, v in pairs(spellInfo) do
  3.     print(v.name, v.cost)
  4. end
__________________
Fizzlemizz
Maintainer of Discord Unit Frames and Discord Art.
Author of FauxMazzle, FauxMazzleHUD and Move Pad Plus.
  Reply With Quote