As you probably noticed, the colors of the skill points shown on the talent page are exactly the other way around as the ones in the game: max ranked skills are shown in green and not-max ranked skills are shown in yellow.
To fix this little blemish just open the file /lib/char.php in your roster directory and exchange these two lines:
- Code: Select all
$output .= '<span class="talvalue yellow">'.$talent4['rank'].'</span>';
and
- Code: Select all
$output .= '<span class="talvalue green">'.$talent4['rank'].'</span>';
(should be line 1313 and 1317)