Hi,
since the update I noticed that my addon
Experience Notify is reporting that I'm gaining experience in other races skill lines and in vampire skill line (my character is a Dunmer, werewolf). I though that may be a bug in my addon so I wrote this simple test addon:
EVENT_MANAGER:RegisterForEvent("hello", EVENT_SKILL_XP_UPDATE, function(eventCode, skillType, skillIndex, reason, rank, previousXP, currentXP)
if previousXP == currentXP or currentXP == 0 then
return
end
local name = GetSkillLineInfo(skillType, skillIndex)
d("EVENT_SKILL_XP_UPDATE: "..name.." - "..previousXP.." - "..currentXP)
end)
Here's the result (after killing a mob):

and then after killing another mob:

So as you can see I'm gaining experience in these skill lines

My character is level 50 CP 379, name Heseoden.
Edited by theharven on February 13, 2018 12:11AM