I just thought I'd share this tid-bit with everyone.
In playermobile.cs you can find this. This is what you and others see under your name if you are staff.

You can change the color of each accesslevel by changing the html color value.
Here is a site for a simple HTML color picker. [Link]
I believe you can comment out or remove this entire thing to get rid of having your access level under your name as a staff.
Code:
if (AccessLevel > AccessLevel.Player)
       {
         string color = "";
         switch (AccessLevel)
         {
           case AccessLevel.VIP:
             color = "#1EFF00";
             break;
           case AccessLevel.Counselor:
             color = "#00BFFF";
             break; //Deep Sky Blue
           case AccessLevel.Decorator:
             color = "#FF8000";
             break;
           case AccessLevel.Spawner:
             color = "#E6CC80";
             break;
           case AccessLevel.GameMaster:
             color = "#FF0000";
             break; //Red
           case AccessLevel.Seer:
             color = "#00FF00";
             break; //Green
           case AccessLevel.Administrator:
             color = "#0070FF";
             break;
           case AccessLevel.Developer:
             color = "#A335EE";
             break;
           case AccessLevel.CoOwner:
             color = "#FFD700";
             break;
           case AccessLevel.Owner:
             color = "#FFD700";
             break;
         }
         if (IsStaff())
         {
           list.Add(
             1060658, "{0}\t{1}", "Staff", String.Format("<BASEFONT COLOR={0}>{1}", color, GetAccessLevelName(AccessLevel)));
         }
         else
         {
           list.Add(1060658, "VIP");
         }
       }
 
Last edited:
Back