Moderator: MacroQuest Developers


The numbers will change depending on what your doing and usually take a tick (3 seconds?) to refresh.it sometimes or most time it seems shows some very off numbers.

Code: Select all
<Label item="ManaRegen">
<ScreenID>MQ_EXP</ScreenID>
<EQType>9999</EQType>
<Font>2</Font>
<TooltipReference>$char(mana,regen)</TooltipReference>
<RelativePosition>true</RelativePosition>
<Location>
<X>67</X>
<Y>152</Y>
</Location>
<Size>
<CX>29</CX>
<CY>15</CY>
</Size>
<Text></Text>
<TextColor>
<R>255</R>
<G>255</G>
<B>255</B>
</TextColor>
<NoWrap>true</NoWrap>
<AlignCenter>false</AlignCenter>
<AlignRight>true</AlignRight>
<AlignLeft>false</AlignLeft>
</Label>
<Label item="HPRegen">
<ScreenID>MQ_EXP</ScreenID>
<EQType>9999</EQType>
<Font>2</Font>
<TooltipReference>$char(hp,regen)</TooltipReference>
<RelativePosition>true</RelativePosition>
<Location>
<X>67</X>
<Y>163</Y>
</Location>
<Size>
<CX>29</CX>
<CY>15</CY>
</Size>
<Text></Text>
<TextColor>
<R>255</R>
<G>255</G>
<B>255</B>
</TextColor>
<NoWrap>true</NoWrap>
<AlignCenter>false</AlignCenter>
<AlignRight>true</AlignRight>
<AlignLeft>false</AlignLeft>
</Label>Code: Select all
$char(hp,regen)Code: Select all
$char(mana,regen)Code: Select all
${If[${Me.PctHPs}<100,${He.HPRegen},]}
${If[${Me.PctMana}<100,${He.ManaRegen},]}