Skip to content

Instantly share code, notes, and snippets.

@StinkyTwitch
Created February 15, 2015 22:35
Show Gist options
  • Save StinkyTwitch/8badc8e807bf8ac9dfcd to your computer and use it in GitHub Desktop.
Save StinkyTwitch/8badc8e807bf8ac9dfcd to your computer and use it in GitHub Desktop.
Hack AddOn Example Code
function PrintDuration(spell)
local start, duration, enabled = GetSpellCooldown(spell)
if not start then return false end
if start ~= 0 then
return (start + duration - GetTime())
end
return 0
end
C_Timer.NewTicker(0.1, (function() print(PrintDuration("Fists of Fury")) end), nil)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment