Exp Tables-Tsukihime
This script allows you to set up actor and class exp tables in an external file.
I am using csv files because spreadsheet programs can open them and allow you to edit it directly without having to worry about delimiters. But you can use any text editor.
DownloadScript:
http://db.tt/bR9XcpJNDemo:
http://db.tt/GZKlm2OZUsageThis script currently supports two types of exp tables.
class_exp.csv - class exp tables
actor_exp.csv - actor exp tables
You should store your data in the appropriate file and then place this in your
Data folder. You can change where the folder is located in the configuration.
The default delimiter I use is ; (semi-colon) but you can change it as well.
CSV specsThe first line of the csv format is an empty cell, followed by each object name.
For example, suppose we are working with the class exp tables.
Assuming you only have two classes that will use exp tables, your first line should look like
CODE
;Soldier;Monk
For each row afterwards, you start with the level, followed by exp required
for each class
CODE
1;0;0
2;100;100
3;200;250
You should complete the table up to max level + 1 otherwise it will crash.
If your game crashes while comparing exp, it's because your exp tables
are not setup properly.