[FF8] SeeD salary values

  • Thread starter Thread starter Callisto
  • Start date Start date
Status
Not open for further replies.
I've already searched through the exe with a debugger, and found some data related to the SeeD rank, but oddly nothing that looked like an array that has the salary values. So I thought it could be stored somewhere else. But then again, I might have overlooked something when checking the exe (haven't used a debugger until recently), so I guess I'll give it another go, thanks.
 
Found it after all. The array starts at offset 78E474 in the exe's data section (English Steam). Each SeeD Rank salary is determined by two bytes, and each value gets multiplied by 10 before being shown in-game.

Code: [Select]
Code:
S-Rank Offset    Value01  78E476    32 0002  78E478     64 0003  78E47A     96 0004  78E47C     C8 0005  78E47E     2C 0106  78E480     90 0107  78E482     F4 0108  78E484     58 0209  78E486     BC 0210   78E488     20 0311   78E48A     84 0312   78E48C     E8 0313  78E48E     4C 0414   78E490     B0 0415   78E492     E2 0416   78E494     14 0517   78E496     46 0518  78E498     78 0519  78E49A     AA 0520  78E49C     DC 0521  78E49E     0E 0622  78E4A0     40 0623  78E4A2     72 0624  78E4A4     A4 0625  78E4A6     D6 0626  78E4A8     08 0727  78E4AA     3A 0728  78E4AC     6C 0729  78E4AE     9E 0730  78E4B0     D0 0731  78E4B2     B8 0B
 
Status
Not open for further replies.
Back
Top