Graal Forums

Graal Forums (https://forums.graalonline.com/forums/index.php)
-   NPC Scripting (https://forums.graalonline.com/forums/forumdisplay.php?f=8)
-   -   GUI Progress Bar Image (https://forums.graalonline.com/forums/showthread.php?t=86115)

Struggler 06-01-2009 02:13 AM

GUI Progress Bar Image
 
What is the image for the GUI PRogress Bar? I cant find it out...

fowlplay4 06-02-2009 12:46 AM

I don't think it uses an image but you may want to rethink your approach if you need a loading bar.

cbk1994 06-02-2009 12:58 AM

It's using profiles (e.g. profile.fillColor); I suggest using a GuiShowImgCtrl instead.

PHP Code:

new GuiShowImgCtrl("Interface_HealthEmpty") {
  
image "hpempty.png";
  
  
width 100;
  
height 20;
  new 
GuiShowImgCtrl("Interface_Health") {
    
image "hpfull.png";
    
    
width = (100 clientr.hp_max) * clientr.hp_cur;
    
height 20;
  }




All times are GMT +2. The time now is 11:18 PM.

Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2025, vBulletin Solutions Inc.
Copyright (C) 1998-2019 Toonslab All Rights Reserved.