View Single Post
07-31-16, 11:25 PM   #2
Fizzlemizz
I did that?
 
Fizzlemizz's Avatar
Premium Member
AddOn Author - Click to view addons
Join Date: Dec 2011
Posts: 1,877
For the total active runes you should be able to:

Lua Code:
  1. local runeCount = 0
  2. for i=1, 6 do
  3.     local _, _, runeReady = GetRuneCooldown(i)
  4.     if runeReady then
  5.         runeCount = runeCount+1
  6.     end
  7. end
  8. return runeCount
__________________
Fizzlemizz
Maintainer of Discord Unit Frames and Discord Art.
Author of FauxMazzle, FauxMazzleHUD and Move Pad Plus.

Last edited by Fizzlemizz : 08-01-16 at 12:10 AM.
  Reply With Quote