[Refactored] Custom loading bar
Took around 1 minute to make.
Just a small gradient (No sprites used)
Noob friendly:
Open client.java and find
Code:
drawLoadingText(int i, String s)
In that method find something like:
Code:
DrawingArea.drawPixels(30, j + 2, c / 2 - 150, 0x8c1111, i * 3);
Replace that line with:
Code:
int color = 0x8c1111;
int color2 = 0;
while(color2 <= 30)
{
DrawingArea.drawPixels(30-color2, j + 2, c / 2 - 150, color, i * 3);
color += 65536*3;
color2 += 1;
}
[Only registered and activated users can see links. Click Here To Register...]
If you want another color on the loading bar just change
Code:
int color = 0x8c1111;
To something else.
Some colors:
int color = 0x26116d;
[Only registered and activated users can see links. Click Here To Register...]
int color = 0x006d00;
[Only registered and activated users can see links. Click Here To Register...]
int color = 0x006d9f;
[Only registered and activated users can see links. Click Here To Register...]
Change color of border:
In the drawLoadingText method find
Code:
DrawingArea.fillPixels(c / 2 - 152, 304, 34, 0x8c1111, j);
Replace
With desired color.
Color editor:
[Only registered and activated users can see links. Click Here To Register...]