Skip to content

rncoll7/Tree-of-Savior-Lua-Mods

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 

Repository files navigation

Tree of Savior Lua Mods

Features

  • Experience viewer
  • Map fog viewer
  • Enhanced monster frames
  • Monster kill tracker for journal
  • Guildmates - Displays character level and character name in a tooltip. Adds party request and friend request to the context menu.

Tree of Savior Experience Viewer

Download

Get the latest release here

Installation

Extract the zip to your Tree of Savior directory (C:\Program Files (x86)\Steam\steamapps\common\TreeOfSavior for me). Say yes to overwrite any files. An addons folder should be in the root directory and SumAni.ipf should be in the data folder. Your directories should look something like this:

File Structure

Start game and login to character.

Press the "Load Addons" button. It should disappear.

Load Addons

Play!

Play!

Be sure to press the "R" button at the topright of the experience viewer window in order to save its position after moving it. It will move back if you don't.

Uninstall

Delete the addons folder and data\SumAni.ipf. The patcher will redownload SumAni.ipf.

Usage

To configure which columns are visible on the expviewer, open addons/expviewer/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;
};

Set the values to either true or false depending on what you want.

Here's an example that only displays current/required experience, kills til next level, and experience/hour with map viewer enabled:

settings = {
	showCurrentRequiredExperience = true;
	showCurrentPercent = false;
	showLastGainedExperience = false;
	showKillsTilNextLevel = true;
	showExperiencePerHour = true;
	showTimeTilLevel = false;
};

To remove an addon, delete or comment out the dofile line in addons/addonloader.lua.

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%