Ok after some more searching I came across a post by Zanix that got me thinking...
so I went searching through the PHP (which I know nothing about) and I think I found the fix for this...
In Memberlist.php around line 695 make the following changes:
- Code: Select all
if( $row['level'] == '70' )
{
$tooltip = makeOverlib($wordings[$roster_conf['roster_lang']]['max_exp'],'','',2,'',',WRAP');
}
else
{
$tooltip = makeOverlib($tooltip,$togo,'',2,'',',WRAP');
}
}
if( $roster_conf['index_level_bar'] )
{
$percentage = round(($row['level']/70)*100);
In tradeskills.php at line 118 make this change:
- Code: Select all
$levelpct = $level_array[0] / 375 * 100 ;
In \lib\char.php at line 1448 make the following change:
- Code: Select all
if( $this->data['level'] == '70' )
That should do it for you...Makes the Experience Bar adjust for level 70, show the Experience on the Characters Detail page for those >= level 60
and adjust the Professions page to reflect the Max Skill level of 375 for the new upper limit of skills (not adjusted for racial bonuses)
Thanks