Display staff level under character's name
This is a fast mod to let your players know who is officially member of the staff.
All you need to do is to open PlayerMobile.cs and look for the line:
Then, below this line you add the following:
That's it. Restart and you'll see all staff members accordingly identified by their levels.
This is a fast mod to let your players know who is officially member of the staff.
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)
list.Add(1060847, "{0}\t{1}", "Shard", Enum.GetName(typeof(AccessLevel), AccessLevel));
That's it. Restart and you'll see all staff members accordingly identified by their levels.