Hey Rune-Kingdom,
today I will be teaching you how to add this! The loading..please wait sprite and connection lost sprite!

and this

EDIT: Yes I know that my name is Kyle on the game, this is my old name, I have since changed my name legaly! and I know my gameframe is also messed up as I am still working on it!
So lets get started!
**CLIENT SIDED**
Open up Client.java and search for
private void loadingStages()it should look something like this
if(lowMem && loadingStage == 2 && ObjectManager.anInt131 != plane)
{
aRSImageProducer_1165.initDrawingArea();now replace that whole void with this
private void loadingStages()
{
if(lowMem && loadingStage == 2 && ObjectManager.anInt131 != plane)
{
aRSImageProducer_1165.initDrawingArea();
loadingPleaseWait.drawSprite(8,9);;
aRSImageProducer_1165.drawGraphics(4, super.graphics, 4);
loadingStage = 1;
aLong824 = System.currentTimeMillis();
}Now search for
/* Null pointers for custom sprites */under that add
loadingPleaseWait = null;now search for
/* Custom sprite unpacking */under that somewhere in that void add
loadingPleaseWait = new Sprite("loadingPleaseWait");now search for
aLong824 = System.currentTimeMillis();(It should be the last one that you can search for)
It should have something like this
aLong824 = System.currentTimeMillis();
aRSImageProducer_1165.initDrawingArea();under the
aRSImageProducer_1165.initDrawingArea();add
loadingPleaseWait.drawSprite(8,9);;Now search for
/* Declare custom sprites */and under that add
private Sprite loadingPleaseWait;search for
aTextDrawingArea_1271.drawText(0, "Loading - please wait.", 151, 257);and delete it!
Now you will need to add the sprite for it to work! Right click the one below and go save as, then save it as "LoadingPleasWait"

Then locate where you saved it and place it in your "Sprites" folder!
Now you have finished the "Loading - Please wait..." part, compile the server! If you have any errors post below! To test it out load your client and server, then login and it should come up in the left hand corner if there is no errors!
Time for the "Connection lost - attempting to reestablish" part!
Add me on MSN and I will do it for you
Dylanssick@hotmail.comUnless you have some basic knowledge and you will beable to figure it out using some of this I just made up above!