Yong Min Administrator
Gender :  Posts : 144 Points : 409 Reputation : 27 Join date : 2011-11-11
 | Subject: Remove Staff Levels Mon Jan 16, 2012 12:11 pm | |
| If you want to remove the levels of staff members when they are right clicked, you can simply do this by adding a few lines in your mudclient class. Firstly, go into your client source and open the mudclient class. When you have done that, search for: - Code:
-
s = " " + s + "(level-" + playerArray[i2].level + ")";
Replace that line with: - Code:
-
/** * Staff Level Removal * @author Yong Min */ if((playerArray[i2].admin == 1) || (playerArray[i2].admin == 2) || (playerArray[i2].admin == 3)) { s = " " + s; } else { s = " " + s + "(level-" + playerArray[i2].level + ")"; }
This is what it will look like in game:   | |
|