I don't know if its intended or not, but taunt DRs aren't shown at the Lich King Encounter. Do you have to specially enable it for every encounter? Because taunt DR's are active regardless which mob ...
Tested it with another mob, a level 76 crocolisk did not have any taunt DR... but LK had! ;D
An addon which displays Health frame(s) for every boss that has more than one mob would be cool! e.g. Yogg / Council / Kologarn / Mimiron P4 / ... ? like BigWigs_BossHealthFrame or something like that (just for information how much health he has, nothing fancy like click-casting..)
I've converted all my dogtag-Code to LuaText-Code, but I noticed that I needed the SeparateDigits() function from DogTag, so I copied the code from DogTag to LuaText and it works just fine, can you add it to the default ScriptEnv.lua?
local function SeparateDigits(number, thousands, decimal)
local int = math.floor(number)
local rest = number % 1
if int == 0 then
t[#t+1] = 0
else
local digits = math.log10(int)
local segments = math.floor(digits / 3)
t[#t+1] = math.floor(int / 1000^segments)
for i = segments-1, 0, -1 do
t[#t+1] = thousands
t[#t+1] = ("%03d"):format(math.floor(int / 1000^i) % 1000)
end
end
if rest ~= 0 then
t[#t+1] = decimal
rest = math.floor(rest * 10^6)
while rest % 10 == 0 do
rest = rest / 10
end
t[#t+1] = rest
end
local s = table.concat(t)
for i = 1, #t do
t[i] = nil
end
return s
end
ScriptEnv.SeparateDigits = SeparateDigits
after updating I get several missing-library errors, so I made a dir-comparison and it looks like a few lib's are missing.
e.g.: grid\libs\Waterfall-1.0\ has only 2 files after updating, but before there were directories like "AceLibrary" and "AceOO-2.0", so these are missing and causing this error. Same with BigWigs, oRA2, Prat-3.0, Xloot. I use embedded libraries. This errors seems only to occur if the mapping from wowace is used, maybe the problem lies there? using curse, it seems that every thing goes well, except that dl'ing only release (not beta or alpha-tagged files ^^).
But, I really like this updater, It's the most WAU-like updater I could think and I loved WAU ^^
I noticed that it doesn't update on Loot properly, so I looked it up, and I think you forgot to RegisterEvent("BAG_UPDATE") ;) Tried it today and works ;)
EDIT: Tried with RegisterAllEvents, but no events seems to be fired, so AllEvents will be used, sooo... in combat the addon will suspend in order to minimize CPU impact.
This Version isn't good and shiny but it's better than nothing :D
I've got a little bit of coding experience myself, but mostly in java / delphi... maybe I'm trying it myself... thanks funkydude, I'll think I'll start an own project on this, since I found the wiki from tekkub :D will need help on this, maybe krevlorn you can send me what you got and I'll try to understand it?
pre Patch 3.0 I used Fubar_ItemListFu for tracking how many badges of Justice I have, but after the patch, i converted my UI to LDB-based. In ItemlistFu you could say which item to track, and the count was shown on the fubar. Is there an addon out there which can track and show how many of a given Currency I currently have? Would be nice :D
0
I don't know if its intended or not, but taunt DRs aren't shown at the Lich King Encounter. Do you have to specially enable it for every encounter? Because taunt DR's are active regardless which mob ...
Tested it with another mob, a level 76 crocolisk did not have any taunt DR... but LK had! ;D
Bye, Ravengus.
0
An addon which displays Health frame(s) for every boss that has more than one mob would be cool! e.g. Yogg / Council / Kologarn / Mimiron P4 / ... ? like BigWigs_BossHealthFrame or something like that (just for information how much health he has, nothing fancy like click-casting..)
Bye, Ravengus.
0
I've converted all my dogtag-Code to LuaText-Code, but I noticed that I needed the SeparateDigits() function from DogTag, so I copied the code from DogTag to LuaText and it works just fine, can you add it to the default ScriptEnv.lua?
All code directly taken from LibDogTag =)
Bye, Ravengus.
0
after updating I get several missing-library errors, so I made a dir-comparison and it looks like a few lib's are missing.
e.g.: grid\libs\Waterfall-1.0\ has only 2 files after updating, but before there were directories like "AceLibrary" and "AceOO-2.0", so these are missing and causing this error. Same with BigWigs, oRA2, Prat-3.0, Xloot. I use embedded libraries. This errors seems only to occur if the mapping from wowace is used, maybe the problem lies there? using curse, it seems that every thing goes well, except that dl'ing only release (not beta or alpha-tagged files ^^).
But, I really like this updater, It's the most WAU-like updater I could think and I loved WAU ^^
Thanks for your time ;)
EDIT: missing mappings:
<Addon Name="PitBull4">
<Mappings>
<Mapping Site="wowace" Tag="pitbull4" />
</Mappings>
</Addon>
<Addon Name="Pawn">
<Mappings>
<Mapping Site="curse" Tag="pawn" />
</Mappings>
</Addon>
EDIT2: Atlas_Transportation is a SubAddon of Atlas
Bye, Ravengus.
0
I noticed that it doesn't update on Loot properly, so I looked it up, and I think you forgot to RegisterEvent("BAG_UPDATE") ;) Tried it today and works ;)
Bye, Ravengus.
0
EDIT: Tried with RegisterAllEvents, but no events seems to be fired, so AllEvents will be used, sooo... in combat the addon will suspend in order to minimize CPU impact.
This Version isn't good and shiny but it's better than nothing :D
Bye, Ravengus.
0
I've got a little bit of coding experience myself, but mostly in java / delphi... maybe I'm trying it myself... thanks funkydude, I'll think I'll start an own project on this, since I found the wiki from tekkub :D will need help on this, maybe krevlorn you can send me what you got and I'll try to understand it?
Thanks.
0
pre Patch 3.0 I used Fubar_ItemListFu for tracking how many badges of Justice I have, but after the patch, i converted my UI to LDB-based. In ItemlistFu you could say which item to track, and the count was shown on the fubar. Is there an addon out there which can track and show how many of a given Currency I currently have? Would be nice :D
Thanks in Advance! ^^