Time Development Points: Difference between revisions

From Elanthipedia
Jump to navigation Jump to search
No edit summary
Line 43: Line 43:
*I wrote a simple genie script to figure out how many TDPs I'd get from ranking one skill to X. It will echo to the game window however many TDPs you'd gain, rounded down (not sure how the game actually does the rounding so assuming down).
*I wrote a simple genie script to figure out how many TDPs I'd get from ranking one skill to X. It will echo to the game window however many TDPs you'd gain, rounded down (not sure how the game actually does the rounding so assuming down).
**If you don't want it to round down, delete/comment the line: evalmath tdps floor(%tdps).
**If you don't want it to round down, delete/comment the line: evalmath tdps floor(%tdps).
#--Written by Ozban, March 3, 2016.--
#--Written by Ozban, March 21, 2016.--
#--Formula taken from user Dandin. (ranks(ranks+1)/400)
#--Formula taken from user Dandin. (ranks(ranks+1)/400)
#-This is a command line script, just put: .tdp XXX to see how many total tdp's you'd get from ranking one skill to XXX.
#-This is a command line script, just put: .tdp XXX to see how many total tdp's you'd get from ranking one skill to XXX.

Revision as of 03:18, 21 March 2016

Time Development Points (TDPs) are used to increase attributes.

In order to use TDPs to raise a stat, one must go to a designated room for training that particular stat and type TRAIN or STUDY twice to confirm. Training rooms for each stat are available within or near every major city.

A new character is given 600 TDPs right out of the Character Manager. After that, the only way to gain more TDPs is by circling or obtaining new ranks in skills.

TDPs from Circling

Each time you circle upto circle 150, you will gain a base number of TDPs plus a bonus based on your circle. Below circle 10 you get a base of 50 TDPs. Circle 10 onward, you will gain 100 TDPs as a base. The bonus TDPs are always equal to the circle you just attained. For example: if you attain circle 27, you will get 127 TDPs.

After circle 150, TDPs cannot be gained from circling.

TDPs from Leveling Skills

Each time you gain a new rank in any skill, the integer value of that rank is added into a hidden pool (the TDP pool). If at any time the total in the pool reaches or exceeds 200, you gain one TDP and 200 is subtracted from the pool. This also applies for multiples of 200: if the TDP pool reaches 400, you gain two TDPs and 400 points are subtracted; for 600 you get three TDPs and 600 is deducted from the pool, etc.

For example, let's assume that your TDP pool is currently zero. You increase your Perception skill to attain rank 150. 150 points are added to the TDP pool. You then increase your Leather Armor skill to rank 66. 66 points are added to the TDP pool, making a total of 216. You gain one TDP, and 200 points are subtracted from the TDP pool leaving 16 points. Next, you increase your Arcana skill to 197. Your pool increases to 213, you gain yet another TDP, and the pool is reduced to 13.

Since the experience change where all tertiary skills less than 100 ranks are learned at the rate of secondary skills, it is considerably easier than it was to level tertiary skills for the sake of TDPs alone. Leveling a single skill to 100 ranks will result in a gain of 25 TDPs when all is said and done. Leveling a skill to only 50 will result in a gain of 6 TDPs.

Death and Losing TDPs

When you lose ranks from memory decay as a result of death without rejuvenation, your TDP pool will be reduced by the ranks you lost. If this sends the TDP pool below zero you will lose a TDP, and 200 will be added to the pool. This process makes it possible to have a negative number of TDPs.

TDP Formulas

In mathematical terms, the total number of TDPs gained from a single skill is the sum of integers from 0 to the maximum earned rank divided by 200. This can be expressed as follows:

TDPs from single skill formula.png

In particular, TDPs are quadratic with respect to rank, meaning that it becomes more and more efficient at higher levels to train higher ranked skills. For example, a single skill produces the equivalent of one TDP at ranks 20, 28, 34, 39, 43, and so on, with the gap narrowly closing until (of course) a TDP is produced every rank past 200.

Since the "hidden TDP pool" is shared between skills, the floor function operates on the sum of skills, instead of each skill individually. The formula to calculate the total TDPs gained from all skills is as follows:

TDPs from all skill formula.png

TDPs granted from all levels gained can be expressed with the following formula:

TDPs from all levels formula.png

Genie Script

  • I wrote a simple genie script to figure out how many TDPs I'd get from ranking one skill to X. It will echo to the game window however many TDPs you'd gain, rounded down (not sure how the game actually does the rounding so assuming down).
    • If you don't want it to round down, delete/comment the line: evalmath tdps floor(%tdps).
#--Written by Ozban, March 21, 2016.--
#--Formula taken from user Dandin. (ranks(ranks+1)/400)
#-This is a command line script, just put: .tdp XXX to see how many total tdp's you'd get from ranking one skill to XXX.
#  -XXX is the numerical value of however many ranks you want to convert to TDPs.
#
var ranks1 %1
evalmath ranks2 (%ranks1+1)
evalmath ranks3 (%ranks1*%ranks2)
evalmath tdps (%ranks3/400)
evalmath tdps floor(%tdps)
echo
echo
echo *** %tdps TDPS GAINED FROM GAINING %ranks1 ***
echo                         (rounded down)
echo
exit

Other Resources

Related Forum Posts

Click here to search for related posts.