Hey guys, if you are using the "RuneDream" source by "Swag" you will notice that when you right click a player it will have the option "use null > Playername"
This can be quite frustrating if you wish to run the server/put it online.
Firstly, go to your source files and open up client.java
Next search for:
Code:
getPA().showOption(3, 0, "Null", 1);
You will see something like this:
Code:
} else if (!CastleWars.isInCwWait(this) && !getPA().inPitsWait() && !inPits && !inDuelArena() && !inPcBoat() && !inPcGame() && !inWild() && !isInPyramidePlunder && !inSaradominWaitingRoom() && !inZamorakWaitingRoom() && !inGodwars()) {
getPA().sendFrame99(0);
getPA().walkableInterface(-1);
getPA().showOption(3, 0, "Null", 1);
Simply remove the line:
Code:
getPA().showOption(3, 0, "Null", 1);
So it now looks like this:
Code:
} else if (!CastleWars.isInCwWait(this) && !getPA().inPitsWait() && !inPits && !inDuelArena() && !inPcBoat() && !inPcGame() && !inWild() && !isInPyramidePlunder && !inSaradominWaitingRoom() && !inZamorakWaitingRoom() && !inGodwars()) {
getPA().sendFrame99(0);
getPA().walkableInterface(-1);
Enjoy.