How do I change the experience number to % because i can't find it

Where do I find the experience number so i can change it to % on the ui under options ? Because I can’t find it at all :frowning: only the health of my character.

There isn’t a CVar for XP as a percentage.

You could copy/paste the following to the website addon.bool.no to create/download a small addon to do it for you:

hooksecurefunc(MainStatusTrackingBarContainer.bars[4], "SetBarText", function(self, text)
	local level, max = self:GetLevelData()
	self.OverlayFrame.Text:SetText(format("%.01f%%", level/max * 100))
end)
1 Like

thanks that helped a lot