Maintenance for the week of March 16:
• PC/Mac: No maintenance – March 16
• ESO Store and Account System for maintenance – March 18, 6:00AM EDT (10:00 UTC) - 4:00PM EDT (20:00 UTC)

Earning experience in impossible skill lines (EU Server)

theharven
theharven
✭✭✭
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):
ak5QZ7s.png

and then after killing another mob:
8aoHWFF.png

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
Addons? Get them all ; )
  • theharven
    theharven
    ✭✭✭
    Changed the code a bit to display what rank given skill line is at:
    d("EVENT_SKILL_XP_UPDATE: "..name.." - "..previousXP.." - "..currentXP.." - rank: "..rank)
    

    and as you can see my other races skill lines are already at rank 9, still working towards vampire rank 2 :)

    yI8Aso4.png
    Addons? Get them all ; )
Sign In or Register to comment.