[Galkon's Refactored] New loading bar Fix up
well basically everyone forgot about the drawing thats done in rsapplet whitch draws the old bar on startup
[Only registered and activated users can see links. Click Here To Register...]
first open rsapplet.java and find:
Code:
void drawLoadingText(int i, String s)
then go to the bottom of that void and delete:
Code:
Color color = new Color(140, 17, 17);
int j = myHeight / 2 - 18;
graphics.setColor(color);
graphics.drawRect(myWidth / 2 - 152, j, 304, 34);
graphics.fillRect(myWidth / 2 - 150, j + 2, i * 3, 30);
graphics.setColor(Color.black);
graphics.fillRect((myWidth / 2 - 150) + i * 3, j + 2, 300 - i * 3, 30);
graphics.setFont(font);
graphics.setColor(Color.white);
graphics.drawString(s, (myWidth - fontmetrics.stringWidth(s)) / 2, j + 22);