UI

Forum for posting custom UIs, portions of UIs, and HUD stuff using MQ's enhancements.

Moderator: MacroQuest Developers

eclipsed
orc pawn
orc pawn
Posts: 27
Joined: Mon May 09, 2005 5:28 pm

Post by eclipsed » Thu Jun 09, 2005 5:59 pm

aye gimps UI/mac is fuggin sweet :)

mclee
a lesser mummy
a lesser mummy
Posts: 42
Joined: Sun Apr 10, 2005 11:09 pm

Post by mclee » Fri Jun 10, 2005 12:08 am

to show text of name in different colors, you can do like this:
first make a mq2 tooltip with the "normal" text color for uninvis:
${If[${Group[1].Member.Visible},${Group[1].Member.Name},]}

then make one with the invis color:
${If[!${Group[1].Member.Visible},${Group[1].Member.Name},]}

Thank You very much Gimp

However .Visible didn't work, but .Invis does :D

So to make the tooltip for uninvis it is
${If[!${Group.Member[1].Invis},${Group.Member[1].Name},]}

and for an Invised toon it is
${If[${Group.Member[1].Invis},${Group.Member[1].Name},]}

Thanks again for your help.