Skip to content

poonwu/Tree-of-Savior-Experience-Viewer-Lua-Mod

 
 

Repository files navigation

Tree-of-Savior-Experience-Viewer-Lua-Mod

A Tree of Savior native lua experience viewer.

Tree of Savior Experience Viewer

Download

Get the latest release here

Installation

  1. Extract the zip to your TOS_ROOT directory. expviewer.lua should be in TOS_ROOT and SumAni.ipf should be in TOS_ROOT\data.

  2. Start game and login to character.

  3. Press Start on the UI window.

  4. Move window to the desired position and press "R" to save the position.

  5. Play!

Uninstall

Delete TOS_ROOT\expviewer.lua and TOS_ROOT\data\SumAni.ipf. The patcher will redownload SumAni.ipf.

Usage

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";
};

Disclaimer

IMC has said that addons are allowed. https://forum.treeofsavior.com/t/stance-on-addons/141262/24

Addons 1

Addons 2

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.

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Lua 100.0%