View Single Post
  #2  
Old 10-22-2021, 02:08 AM
Shawk Shawk is offline
Fire Giant


Join Date: Apr 2010
Posts: 768
Default

Quote:
Originally Posted by IzHaN80 [You must be logged in to view images. Log in or Register.]
Is there any way to enable this % indicator? I noticed somebody did create an UI that works on Green to replicate how the old UI would look back then and he managed to add a % indicator to the XP bar. Is there any way to add this %? Or somebody does know how to actually code that into p99 Green UI? Thanks in advance.
the language is SIDL, as XML, check out AboutSIDL.doc in your EQ directory to learn about it.

Too add this % bar you add a Label element into EQUI_Inventory.XML, You gotta position it with <location> and the rest, EQtype is 26 for XP percent.

For example,

<Label item="IW_XPPerc">
<ScreenID>XPPercNumber</ScreenID>
<EQType>26</EQType>
<Font>5</Font>
<RelativePosition>true</RelativePosition>
<Location>
<X>610</X>
<Y>240</Y>
</Location>
<Size>
<CX>60</CX>
<CY>28</CY>
</Size>
<Text>0</Text>
<TextColor>
<R>255</R>
<G>255</G>
<B>255</B>
</TextColor>
<NoWrap>true</NoWrap>
<AlignCenter>false</AlignCenter>
<AlignRight>true</AlignRight>
</Label>

At bottom add it to the screen window

Under:
<Screen item="InventoryWindow">


Add:
<Pieces>IW_XPPercNumber</Pieces>
Reply With Quote