Thread: RealUI
View Single Post
03-05-13, 06:31 PM   #515
Nibelheim
local roygbi-
 
Nibelheim's Avatar
AddOn Author - Click to view addons
Join Date: Jan 2010
Posts: 1,600
Originally Posted by Evabi View Post
Hopefully this image isn't too big. Reinstalled grid from the r12 B download, thanks.

Same problem with Savage Roar... It is enabled in the icehud settings.
Enter this script into your chat window and let me know the number that gets printed out when you activate Savage Roar.

Code:
/script local f = CreateFrame("FRAME"); f:RegisterEvent("UNIT_AURA"); f:SetScript("OnEvent", function(self, event, ...)	if ... == "player" then local spellid = select(11, UnitAura("player", "Savage Roar")); print(spellid); end end)