Felladrin submitted a new resource:

Display skill title under character's name - Easy way to encourage character specializations.

Display skill title under character's name

This is a fast mod to display the skill title under character's name. It's the same skill title displayed on paperdoll.

View attachment 4820

All you need to do is to open PlayerMobile.cs and look for the line:
Code:
base.GetProperties(list);

Then, below this line you add the following:
Code:
if (AccessLevel == AccessLevel.Player)
{
    string skillTitle = Titles.GetSkillTitle(this);...

Read more about this resource...
 
Back