Start by disabling the default one:
PHP Code:
showstats( 1024 );
then show yours:
PHP Code:
showimg( 200, "image.png", 0, 0 );
changeimgvis( 200, 4 );
Change the 0, 0 at the end to the x and y. GraalControl.width will give you the far right, GraalControl.height will give you the bottom of the screen.
The 200 is the index; all your images need a unique index and must be over 200 (in this case).
The changeimgvis puts the image on the 4th layer, which is the screen.
Then, show your text where you need it:
PHP Code:
showtext( 201, x, y, "Font Face", "options", "Text" );
For example:
PHP Code:
showtext( 201, 100, 30, "Verdana", "b", clientr.hp_cur @ "/" @ clientr.hp_max );
For those bars, you need to use something like this:
PHP Code:
showimg( 202, "bar.png", 30, 40 );
temp.n = ( width / clientr.hp_max ) * clientr.hp_cur; // Replace width with the width of the bar, and change the vars to what you need.
changeimgpart( 202, 0, 0, n, 8 ); // Replace 8 with the height of the bar.
If you need to show the image of the players current weapon, use:
PHP Code:
showimg( 203, player.weapons[ selectedweapon ].image, 30, 100 );
I recommend splitting all the images into separate images instead of one since it is much simpler to deal with.