A Tree of Savior native lua experience viewer.
-
Extract the zip to your TOS_ROOT directory. expviewer.lua should be in TOS_ROOT and SumAni.ipf should be in TOS_ROOT\data.
-
Start game and login to character.
-
Press Start on the UI window.
-
Move window to the desired position and press "R" to save the position.
-
Play!
Delete TOS_ROOT\expviewer.lua and TOS_ROOT\data\SumAni.ipf. The patcher will redownload SumAni.ipf.
Small "R" (Reset) button resets your session data.
Pressing "R" (Reset) will also save the frame's location for your current session.
To configure which columns are visible, open expviewer.lua with any text editor once you have installed it to the right place. You will see these settings at the top of the file:
settings = {
showCurrentRequiredExperience = "true";
showCurrentPercent = "true";
showLastGainedExperience = "true";
showKillsTilNextLevel = "true";
showExperiencePerHour = "true";
showTimeTilLevel = "true";
};
Replace the values inside the quotation marks with something else. "false" works perfect, but the code only checks if it's "true" in order to display it.
Here's an example that only displays current/required experience, kills til next level, and experience/hour:
settings = {
showCurrentRequiredExperience = "true";
showCurrentPercent = "false";
showLastGainedExperience = "false";
showKillsTilNextLevel = "true";
showExperiencePerHour = "true";
showTimeTilLevel = "false";
};
IMC has said that addons are allowed. https://forum.treeofsavior.com/t/stance-on-addons/141262/24
If they change their mind, please let me know directly (via official forums so that I know it's them) and I'll delete this and stop distributing/working on it.