Thread: Boss Hp Sprite!

Results 1 to 3 of 3
  1. #1 Boss Hp Sprite! 
    Registered Member
    Join Date
    Dec 2014
    Age
    27
    Posts
    52
    Thanks given
    1
    Thanks received
    0
    Rep Power
    11
    This Interface. How do i add it?

    http://prntscr.com/9bv9ys
    Reply With Quote  
     

  2. #2  
    Banned

    Join Date
    Feb 2014
    Posts
    1,204
    Thanks given
    138
    Thanks received
    450
    Rep Power
    0
    It's in the downloads section, a server has been released with it already.
    Rip it from there
    Reply With Quote  
     

  3. #3  
    Donator

    Arithium's Avatar
    Join Date
    May 2010
    Age
    31
    Posts
    4,721
    Thanks given
    199
    Thanks received
    1,256
    Rep Power
    1114
    Code:
    if (interactingWith != null && o == interactingWith) {
    									/*
    									 * Draw the background
    									 */
    									DrawingArea.drawAlphaPixels(0, 17, 125, 45, 0x000000, 100);
    									String name = "null";
    									if (o instanceof Player) {
    										name = ((Player) o).name;
    									} else if (o instanceof NPC) {
    										MobDefinition entityDef_1 = ((NPC) obj).definitionOverride;
    										if (entityDef_1 != null)
    											name = entityDef_1.name;
    									}
    									newRegularFont.drawCenteredString(name, 62, 29, 0xFFFFFF, 0);
    									int i1 = ((Entity) obj).currentHealth * 30 / ((Entity) obj).maxHealth;
    									if (i1 > 30) {
    										i1 = 30;
    									}
    									if (percentage > 123) {
    										percentage = 123;
    									}
    									DrawingArea.drawAlphaPixels(1, 34, 123, 15, 0xC0303E, 130);
    									DrawingArea.drawAlphaPixels(1, 34, (int) percentage, 15, 0x00A000, 170);
    									newRegularFont.drawCenteredString((int) currentHitpoints + "/" + (int) maxHitpoints, 62, 47, 0xFFFFFF, 0);
    								}
    Reply With Quote  
     


Thread Information
Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)


User Tag List

Similar Threads

  1. Replies: 4
    Last Post: 06-14-2012, 07:21 PM
  2. New hp bar sprites / New hitsplat
    By Heaven in forum Requests
    Replies: 1
    Last Post: 01-30-2010, 06:14 PM
  3. [Req] New Hp Bar Sprites
    By Lenin in forum Requests
    Replies: 0
    Last Post: 01-24-2010, 11:16 PM
  4. New runescape Hp bar 70% no Sprites
    By bashermoe in forum Tutorials
    Replies: 18
    Last Post: 09-02-2009, 12:02 PM
  5. need the hp / prayer orb sprites
    By Clienthax in forum RS2 Client
    Replies: 5
    Last Post: 05-08-2008, 01:03 AM
Posting Permissions
  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •