Quote:
Originally Posted by wizatek
Jobchange is not hard to do.
The hardest part is the new calculations since every job has its own.
I mean with stats, and the hp increase per level and those things
|
Not really, the game has a "levelup_stat" Table and for every job a
levelup_hp_0, levelup_hp_1, levelup_hp_2 Table.
levelup_stat contains the stats for every levelup, example Titan: 3, 1, 1, 3,
3 = STR, 1 = DEX, 1 = INT, 3 = CON
levelup_hp_0 contains the HP increase for no-job, example: Titan: 4, 0, 0, 8,
4 = STR, 0 = DEX, 0 = INT, 8 = CON
to get the HP for each levelup: (example Level = 1)
(3 * 4 + 1 * 0 + 1 * 0 + 3 * 8) * Level = +36 HP