View Single Post
02/06/21, 08:59 AM   #1
Kaozak
Join Date: Feb 2021
Posts: 3
Question Stat normalization mod

Hi there,

I want to write a mod, that normalizes stats for display, as I hate the big numbers of ESO.

Basically, I want to modify any label displaying a stamina/health/magicka value to show something like:
var displayValue = Math.floor(actualValue / normalizationBase);
I'm having a bit of trouble understanding where the numbers are coming from though.

Are there any methods like GetCurrent/Max([attributeType]) or GetCost([attributeType]), or would I need to modify every tooltip manually?
  Reply With Quote