Give the exact English names and somebody probably will update it. I haven't done that encounter yet so I don't know which mobs should be ignored and which shouldn't.
Could someone be as kind as to add the last vulnerable mobs please? I d expected them to get added eventually since it was brought up ages ago but still didn't makt it. These mobs all give buffs/debuffs that can give you extra damage. Please please please add them to the vulnerable list. I would do it myself if I knew how but I can't get it to work...
Essence of Desire,
Essence of Anger,
Priestess of Dementia,
Mother Shahraz
Illidan Stormrage
Hi! I, too, would love to see some more mobs on the vulnerability list ^^
for example the 'Underbog Colossus' in SSC ('Tiefensumpfkoloss' in german)..
I tried adding the following in function TopScoreFu:IsVulnerable(target):
if target == "Ironspine Chomper" then
return true
end
to try it out on this mob, but didnt work, also tried putting "Eisenr?ckenmalmer"
in there, which is the german translation, but it still recorded highscores on that mob!
So how do I have to do that? Please help ^^ thanks
Date: 2008-01-26 21:22:44
ID: 31
Error occured in: Global
Count: 1
Message: ..\AddOns\FuBar_TopScoreFu\TopScoreFu.lua line 451:
attempt to index local 'tPvP' (a nil value)
Debug:
LibParser-4.0\LibParser-4.0.lua:4703:
LibParser-4.0\LibParser-4.0.lua:4695
LibParser-4.0\LibParser-4.0.lua:4827:
LibParser-4.0\LibParser-4.0.lua:4732
I'm fairly certain those errors are caused by a problem with your saved data since they shouldn't be happening according to the code. I've never had those errors appear. Should go away if you reset your scores but that requires reseting your scores.
I'm fairly certain those errors are caused by a problem with your saved data since they shouldn't be happening according to the code. I've never had those errors appear. Should go away if you reset your scores but that requires reseting your scores.
already done that 3 times, even deleted the saved vars but after a few days the errors starts popping again.
And if u have to reset a Highscore addon every few days for it to not pop errors its kinda worthless...
[2008/02/07 10:45:32-1037-x1]: FuBar_TopScoreFu-2.0\TopScoreFu.lua:451: attempt to index local 't' (a nil value)
---
every now and then, would be nice with some sort of fix for these.
is that a rock error? i seem to remember a while back a couple of addons throwing that at me. I'm guessing you've updated recently. does it do this when you load it by itself (ugh, i hate testing that part).
nothing wierd going on like vista?
hope one of those sparks something. hate to see you lose a fun addon to the unknown :(
TopScoreFu:RegisterDefaults('char', {
hits = {}
})
function TopScoreFu:ResetScores()
self.db.char.hits = {}
self:Update()
end
function TopScoreFu:RecordHit(spell, amount, target, targetid, isCritical, isHeal, pvp)
if UnitIsCharmed("player") then
return
end
if self.db.char.hits[spell] == false then
return
elseif string_find(spell, string_format(L["PATTERN_HOTS"], S["Rejuvenation"])) or string_find(spell, string_format(L["PATTERN_HOTS"], S["Renew"])) or string_find(spell, string_format(L["PATTERN_HOTS"], S["Regrowth"])) then
return
elseif self.db.char.hits[spell] == nil then
if not self:DoesSpellExist(spell) then
self.db.char.hits[spell] = false
return
end
self.db.char.hits[spell] = {
crit = {},
critPvP = {},
normal = {},
normalPvP = {},
isHeal = isHeal,
}
end
local t
local tPvP
if isCritical then
t = self.db.char.hits[spell].crit
tPvP = self.db.char.hits[spell].critPvP
else
t = self.db.char.hits[spell].normal
tPvP = self.db.char.hits[spell].normalPvP
end
if t.amount == nil or t.amount < amount or (pvp and (tPvP.amount == nil or tPvP.amount < amount)) then
That last line is line 451. It should be impossible for 't' to be nil! WTF!
I'm fairly certain those errors are caused by a problem with your saved data since they shouldn't be happening according to the code. I've never had those errors appear. Should go away if you reset your scores but that requires reseting your scores.
I think it happens if you have a new highscore in PvP - I only get that error in PvP combat.
No this addon is still supported. I'm currently working on LibGUIDRegistry which Threat-2.0 is going to use and I plan on using for updating TopScoreFu.
Rollback Post to RevisionRollBack
To post a comment, please login or register a new account.
---
on some of my records, not all of em.
Reliquary of Souls is one of them.
Try using the purge option to remove the healing potion and anything else that gives this sorta error from your records.
I have been getting a similar error while in WSG, but it is local 'tPvP"
At work so I can not provide exact message.
I have already attempted resets, and deleting saved variables.
Essence of Desire,
Essence of Anger,
Priestess of Dementia,
Mother Shahraz
Illidan Stormrage
for example the 'Underbog Colossus' in SSC ('Tiefensumpfkoloss' in german)..
I tried adding the following in function TopScoreFu:IsVulnerable(target):
if target == "Ironspine Chomper" then
return true
end
to try it out on this mob, but didnt work, also tried putting "Eisenr?ckenmalmer"
in there, which is the german translation, but it still recorded highscores on that mob!
So how do I have to do that? Please help ^^ thanks
every now and then, would be nice with some sort of fix for these.
already done that 3 times, even deleted the saved vars but after a few days the errors starts popping again.
And if u have to reset a Highscore addon every few days for it to not pop errors its kinda worthless...
is that a rock error? i seem to remember a while back a couple of addons throwing that at me. I'm guessing you've updated recently. does it do this when you load it by itself (ugh, i hate testing that part).
nothing wierd going on like vista?
hope one of those sparks something. hate to see you lose a fun addon to the unknown :(
That last line is line 451. It should be impossible for 't' to be nil! WTF!
I think it happens if you have a new highscore in PvP - I only get that error in PvP combat.