EQ2Interface

EQ2Interface (https://www.eq2interface.com/forums/index.php)
-   UI Developer Discussion (https://www.eq2interface.com/forums/forumdisplay.php?f=3)
-   -   Display both experience at once (https://www.eq2interface.com/forums/showthread.php?t=1812)

Myanta 03-10-2005 05:27 PM

Display both experience at once
 
Is their a way to display both bars at the same time with the correct vitality info?

I tried modding the original just by moving the ts exp bar below the level bar and making it visible, that did not seem to work. Any ideas would be great.

Zonx 03-10-2005 07:24 PM

Yes very possible. Here's the mod I did.

I've since realized the TS vitality overflow marker was broken and have fixed it to work in my next release.

The trick here is that each OverflowMarker auto show/hide is dependant on having AdventureXP and TradeskillXP named parents. Only 1 of these parent objects will be visible based on the right-click setting.

The workaround I came up with was to include both bars in both parent pages. The tradeskill marker inside the AdventureXP page gets named something else. Likewise for the adventure marker inside the TradeskillXP page. The original markers then send visibility commands to their counterpart in the opposing page. Example...

Code:

AdventureXP
  AdvBar
  OverflowMarker
    OnShow=parent.parent.TradeskillXP.AdvOverflowMarker.visible=true
    OnHide=parent.parent.TradeskillXP.AdvOverflowMarker.visible=false
  TSBar
  TSOverflowMarker

TradeskillXP
  TSBar
  OverflowMarker
    OnShow=parent.parent.AdventureXP.TSOverflowMarker.visible=true
    OnHide=parent.parent.AdventureXP.TSOverflowMarker.visible=false
  AdvBar
  AdvOverflowMarker



All times are GMT -5. The time now is 08:07 AM.

vBulletin® - Copyright ©2000 - 2026, Jelsoft Enterprises Ltd.
© MMOUI