Forum for posting custom UIs, portions of UIs, and HUD stuff using MQ's enhancements.
Moderator: MacroQuest Developers
-
Klodderik
- decaying skeleton

- Posts: 6
- Joined: Mon May 17, 2004 8:00 am
Post
by Klodderik » Fri May 21, 2004 4:09 am
I've looked around on some of the custom UI's but so far haven't been able to take just the target window.
I don't need (want) another UI besides the target window with a range and direction to the target - perhaps level and class too, but not essential.
Is there such a target window somewhere which has missed my search?
-
Programmer
- a hill giant

- Posts: 195
- Joined: Mon Dec 01, 2003 2:41 am
Post
by Programmer » Fri May 21, 2004 7:35 am
There is probably a target window like you describe in almost every UI, and you could take just the window and likely be set.
Another option is to use a HUD definition that has those items.
-
Elric
- Cheese Whore

- Posts: 466
- Joined: Sun Nov 23, 2003 12:31 am
- Location: Tampa, Fl
-
Contact:
Post
by Elric » Sat May 22, 2004 2:35 am
Well damn. I was gonna do the same thing, and that's just right there. Question though... Why not make it so you can see their full name, rather than just a piece?
-
Remblan
- orc pawn

- Posts: 10
- Joined: Thu Apr 22, 2004 2:44 am
Post
by Remblan » Sat May 22, 2004 11:46 am
Try this one. I forgot I made changes since that post.
Code: Select all
<?xml version = "1.0"?>
<XML ID = "EQInterfaceDefinitionLanguage">
<Schema xmlns = "EverQuestData" xmlns:dt = "EverQuestDataTypes"/>
<!-- Player Health Stats -->
<Gauge item = "HP_Player">
<ScreenID>PlayerHP</ScreenID>
<!--<Font>3</Font>-->
<TextColor>
<R>240</R>
<G>240</G>
<B>240</B>
</TextColor>
<RelativePosition>true</RelativePosition>
<Location>
<X>1</X>
<Y>13</Y>
</Location>
<Size>
<CX>108</CX>
<CY>41</CY>
</Size>
<TextOffsetX>0</TextOffsetX>
<TextOffsetY>-100</TextOffsetY>
<GaugeOffsetY>0</GaugeOffsetY>
<GaugeOffsetY>0</GaugeOffsetY>
<Style_VScroll>false</Style_VScroll>
<Style_HScroll>false</Style_HScroll>
<Style_Transparent>false</Style_Transparent>
<!--<TooltipReference/>-->
<FillTint>
<R>255</R>
<G>0</G>
<B>0</B>
</FillTint>
<DrawLinesFill>false</DrawLinesFill>
<EQType>1</EQType>
<GaugeDrawTemplate>
<Background>A_GaugeBackground</Background>
<Fill>A_GaugeFill</Fill>
<Lines>A_GaugeLines</Lines>
<EndCapLeft>A_GaugeEndCapLeft</EndCapLeft>
<EndCapRight>A_GaugeEndCapRight</EndCapRight>
</GaugeDrawTemplate>
</Gauge>
<Gauge item = "HP_Pet">
<ScreenID>PetHP</ScreenID>
<!--<Font>3</Font>-->
<TextColor>
<R>240</R>
<G>240</G>
<B>240</B>
</TextColor>
<RelativePosition>true</RelativePosition>
<Location>
<X>5</X>
<Y>13</Y>
</Location>
<Size>
<CX>100</CX>
<CY>8</CY>
</Size>
<TextOffsetY>-50</TextOffsetY>
<GaugeOffsetY>0</GaugeOffsetY>
<Style_VScroll>false</Style_VScroll>
<Style_HScroll>false</Style_HScroll>
<Style_Transparent>false</Style_Transparent>
<!--<TooltipReference/>-->
<FillTint>
<R>0</R>
<G>240</G>
<B>0</B>
</FillTint>
<DrawLinesFill>true</DrawLinesFill>
<EQType>16</EQType>
<GaugeDrawTemplate>
<Fill>A_GaugeLinesFill</Fill>
</GaugeDrawTemplate>
</Gauge>
<Label item ="HP_Text_Label">
<ScreenID>HP_Text_Label</ScreenID>
<Font>2</Font>
<RelativePosition>true</RelativePosition>
<Location>
<X>1</X>
<Y>0</Y>
</Location>
<Size>
<CX>20</CX>
<CY>15</CY>
</Size>
<Text>HP:</Text>
<TextColor>
<R>255</R>
<G>255</G>
<B>255</B>
</TextColor>
<NoWrap>true</NoWrap>
<AlignCenter>false</AlignCenter>
<AlignRight>false</AlignRight>
</Label>
<Label item ="HP_Number">
<ScreenID>HP_Number</ScreenID>
<Font>2</Font>
<RelativePosition>true</RelativePosition>
<Location>
<X>15</X>
<Y>0</Y>
</Location>
<Size>
<CX>30</CX>
<CY>15</CY>
</Size>
<EQType>17</EQType>
<TextColor>
<R>255</R>
<G>255</G>
<B>255</B>
</TextColor>
<NoWrap>true</NoWrap>
<AlignCenter>false</AlignCenter>
<AlignRight>true</AlignRight>
</Label>
<Label item ="HP_Div_Label">
<ScreenID>HP_Div_Label</ScreenID>
<Font>2</Font>
<RelativePosition>true</RelativePosition>
<Location>
<X>46</X>
<Y>0</Y>
</Location>
<Size>
<CX>8</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>false</AlignRight>
</Label>
<Label item ="HP_Max_Number">
<ScreenID>HP_Max_Number</ScreenID>
<Font>2</Font>
<RelativePosition>true</RelativePosition>
<Location>
<X>49</X>
<Y>0</Y>
</Location>
<Size>
<CX>30</CX>
<CY>15</CY>
</Size>
<EQType>18</EQType>
<TextColor>
<R>255</R>
<G>255</G>
<B>255</B>
</TextColor>
<NoWrap>true</NoWrap>
<AlignCenter>false</AlignCenter>
<AlignRight>false</AlignRight>
</Label>
<Label item = "HP_Percentage">
<ScreenID>HP_Percentage</ScreenID>
<Font>2</Font>
<RelativePosition>true</RelativePosition>
<Location>
<X>80</X>
<Y>0</Y>
</Location>
<Size>
<CX>20</CX>
<CY>15</CY>
</Size>
<EQType>19</EQType>
<TextColor>
<R>255</R>
<G>255</G>
<B>255</B>
</TextColor>
<NoWrap>true</NoWrap>
<AlignCenter>false</AlignCenter>
<AlignRight>true</AlignRight>
</Label>
<Label item = "HP_Percentage_Label">
<ScreenID>HP_Percentage_Label</ScreenID>
<Font>2</Font>
<RelativePosition>true</RelativePosition>
<Location>
<X>100</X>
<Y>0</Y>
</Location>
<Size>
<CX>20</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>false</AlignRight>
</Label>
<!-- Player Mana Stats -->
<Gauge item = "Mana">
<ScreenID>Mana</ScreenID>
<!--<Font>3</Font>-->
<RelativePosition>true</RelativePosition>
<Location>
<X>1</X>
<Y>33</Y>
</Location>
<Size>
<CX>108</CX>
<CY>8</CY>
</Size>
<GaugeOffsetY>0</GaugeOffsetY>
<Style_VScroll>false</Style_VScroll>
<Style_HScroll>false</Style_HScroll>
<Style_Transparent>false</Style_Transparent>
<!--<TooltipReference/>-->
<FillTint>
<R>0</R>
<G>0</G>
<B>255</B>
</FillTint>
<LinesFillTint>
<R>200</R>
<G>200</G>
<B>255</B>
</LinesFillTint>
<DrawLinesFill>true</DrawLinesFill>
<EQType>2</EQType>
<GaugeDrawTemplate>
<Background>A_GaugeBackground</Background>
<Fill>A_GaugeFill</Fill>
<Lines>A_GaugeLines</Lines>
<LinesFill>A_GaugeLinesFill</LinesFill>
<EndCapLeft>A_GaugeEndCapLeft</EndCapLeft>
<EndCapRight>A_GaugeEndCapRight</EndCapRight>
</GaugeDrawTemplate>
</Gauge>
<Label item ="MP_Number">
<ScreenID>MP_Number</ScreenID>
<Font>2</Font>
<RelativePosition>true</RelativePosition>
<Location>
<X>15</X>
<Y>20</Y>
</Location>
<Size>
<CX>30</CX>
<CY>15</CY>
</Size>
<EQType>9999</EQType>
<TooltipReference>${Me.CurrentMana}</TooltipReference>
<TextColor>
<R>150</R>
<G>150</G>
<B>255</B>
</TextColor>
<NoWrap>true</NoWrap>
<AlignCenter>false</AlignCenter>
<AlignRight>true</AlignRight>
</Label>
<Label item ="MP_Div_Label">
<ScreenID>MP_Div_Label</ScreenID>
<Font>2</Font>
<RelativePosition>true</RelativePosition>
<Location>
<X>46</X>
<Y>20</Y>
</Location>
<Size>
<CX>8</CX>
<CY>15</CY>
</Size>
<Text>/</Text>
<TextColor>
<R>150</R>
<G>150</G>
<B>255</B>
</TextColor>
<NoWrap>true</NoWrap>
<AlignCenter>false</AlignCenter>
<AlignRight>false</AlignRight>
</Label>
<Label item ="MP_Max_Number">
<ScreenID>MP_Max_Number</ScreenID>
<Font>2</Font>
<RelativePosition>true</RelativePosition>
<Location>
<X>49</X>
<Y>20</Y>
</Location>
<Size>
<CX>30</CX>
<CY>15</CY>
</Size>
<EQType>9999</EQType>
<TooltipReference>${Me.MaxMana}</TooltipReference>
<TextColor>
<R>150</R>
<G>150</G>
<B>255</B>
</TextColor>
<NoWrap>true</NoWrap>
<AlignCenter>false</AlignCenter>
<AlignRight>false</AlignRight>
</Label>
<Gauge item = "Mana_Blank">
<ScreenID>Mana_Blank</ScreenID>
<RelativePosition>true</RelativePosition>
<Location>
<X>1</X>
<Y>33</Y>
</Location>
<Size>
<CX>116</CX>
<CY>8</CY>
</Size>
<GaugeOffsetY>0</GaugeOffsetY>
<EQType>30</EQType>
<GaugeDrawTemplate>
<Background>A_GaugeBackground</Background>
<EndCapLeft>A_GaugeEndCapLeft</EndCapLeft>
<EndCapRight>A_GaugeEndCapRight</EndCapRight>
</GaugeDrawTemplate>
</Gauge>
<Label item ="Mana_Label">
<ScreenID>Mana_Label</ScreenID>
<Font>2</Font>
<RelativePosition>true</RelativePosition>
<Location>
<X>1</X>
<Y>20</Y>
</Location>
<Size>
<CX>40</CX>
<CY>15</CY>
</Size>
<Text>MP:</Text>
<TextColor>
<R>150</R>
<G>150</G>
<B>255</B>
</TextColor>
<NoWrap>true</NoWrap>
<AlignCenter>false</AlignCenter>
<AlignRight>false</AlignRight>
</Label>
<Label item ="Mana_Percent">
<ScreenID>Mana_Percent</ScreenID>
<Font>2</Font>
<RelativePosition>true</RelativePosition>
<Location>
<X>80</X>
<Y>20</Y>
</Location>
<Size>
<CX>20</CX>
<CY>15</CY>
</Size>
<EQType>20</EQType>
<TextColor>
<R>150</R>
<G>150</G>
<B>255</B>
</TextColor>
<NoWrap>true</NoWrap>
<AlignCenter>false</AlignCenter>
<AlignRight>true</AlignRight>
</Label>
<Label item = "Mana_Percent_Label">
<ScreenID>Mana_Percent_Label</ScreenID>
<Font>2</Font>
<RelativePosition>true</RelativePosition>
<Location>
<X>100</X>
<Y>20</Y>
</Location>
<Size>
<CX>20</CX>
<CY>15</CY>
</Size>
<Text>%</Text>
<TextColor>
<R>150</R>
<G>150</G>
<B>255</B>
</TextColor>
<NoWrap>true</NoWrap>
<AlignCenter>false</AlignCenter>
<AlignRight>false</AlignRight>
</Label>
<!-- Player Fatigue Stats -->
<Gauge item = "Fatigue">
<ScreenID>PlayerFatigue</ScreenID>
<!--<Font>3</Font>-->
<RelativePosition>true</RelativePosition>
<Location>
<X>1</X>
<Y>53</Y>
</Location>
<Size>
<CX>108</CX>
<CY>8</CY>
</Size>
<GaugeOffsetY>0</GaugeOffsetY>
<Style_VScroll>false</Style_VScroll>
<Style_HScroll>false</Style_HScroll>
<Style_Transparent>false</Style_Transparent>
<!--<TooltipReference/>-->
<FillTint>
<R>240</R>
<G>240</G>
<B>0</B>
</FillTint>
<LinesFillTint>
<R>0</R>
<G>220</G>
<B>0</B>
</LinesFillTint>
<DrawLinesFill>false</DrawLinesFill>
<EQType>3</EQType>
<GaugeDrawTemplate>
<Background>A_GaugeBackground</Background>
<Fill>A_GaugeFill</Fill>
<Lines>A_GaugeLines</Lines>
<LinesFill>A_GaugeLinesFill</LinesFill>
<EndCapLeft>A_GaugeEndCapLeft</EndCapLeft>
<EndCapRight>A_GaugeEndCapRight</EndCapRight>
</GaugeDrawTemplate>
</Gauge>
<Label item ="Fatigue_Label">
<ScreenID>Fatigue_Percent_Label</ScreenID>
<Font>2</Font>
<RelativePosition>true</RelativePosition>
<Location>
<X>1</X>
<Y>40</Y>
</Location>
<Size>
<CX>60</CX>
<CY>15</CY>
</Size>
<Text>Fatigue:</Text>
<TextColor>
<R>255</R>
<G>255</G>
<B>150</B>
</TextColor>
<NoWrap>true</NoWrap>
<AlignCenter>false</AlignCenter>
<AlignRight>false</AlignRight>
</Label>
<Label item = "Fatigue_Percent">
<ScreenID>Fatigue_Percent</ScreenID>
<Font>2</Font>
<RelativePosition>true</RelativePosition>
<Location>
<X>80</X>
<Y>40</Y>
</Location>
<Size>
<CX>20</CX>
<CY>15</CY>
</Size>
<EQType>21</EQType>
<TextColor>
<R>255</R>
<G>255</G>
<B>150</B>
</TextColor>
<NoWrap>true</NoWrap>
<AlignCenter>false</AlignCenter>
<AlignRight>true</AlignRight>
</Label>
<Label item ="Fatigue_Percent_Label">
<ScreenID>Fatigue_Percent_Label</ScreenID>
<Font>2</Font>
<RelativePosition>true</RelativePosition>
<Location>
<X>100</X>
<Y>40</Y>
</Location>
<Size>
<CX>40</CX>
<CY>15</CY>
</Size>
<Text>%</Text>
<TextColor>
<R>255</R>
<G>255</G>
<B>150</B>
</TextColor>
<NoWrap>true</NoWrap>
<AlignCenter>false</AlignCenter>
<AlignRight>false</AlignRight>
</Label>
<!-- Player Experience Stats -->
<Label item ="Exp_Label">
<ScreenID>Exp_Label</ScreenID>
<Font>2</Font>
<RelativePosition>true</RelativePosition>
<Location>
<X>1</X>
<Y>60</Y>
</Location>
<Size>
<CX>60</CX>
<CY>15</CY>
</Size>
<Text>XP:</Text>
<TextColor>
<R>255</R>
<G>200</G>
<B>150</B>
</TextColor>
<NoWrap>true</NoWrap>
<AlignCenter>false</AlignCenter>
<AlignRight>false</AlignRight>
</Label>
<Label item ="Exp_Value">
<ScreenID>Exp_Value</ScreenID>
<EQType>9999</EQType>
<TooltipReference>${Me.Exp}</TooltipReference>
<Font>1</Font>
<RelativePosition>true</RelativePosition>
<Location>
<X>5</X>
<Y>71</Y>
</Location>
<Size>
<CX>20</CX>
<CY>15</CY>
</Size>
<Text>XP:</Text>
<TextColor>
<R>255</R>
<G>200</G>
<B>150</B>
</TextColor>
<NoWrap>true</NoWrap>
<AlignCenter>false</AlignCenter>
<AlignRight>true</AlignRight>
</Label>
<Label item ="Exp_Of_330">
<ScreenID>Exp_Of_330</ScreenID>
<Font>1</Font>
<RelativePosition>true</RelativePosition>
<Location>
<X>25</X>
<Y>71</Y>
</Location>
<Size>
<CX>40</CX>
<CY>15</CY>
</Size>
<Text>/330</Text>
<TextColor>
<R>255</R>
<G>200</G>
<B>150</B>
</TextColor>
<NoWrap>true</NoWrap>
<AlignCenter>false</AlignCenter>
<AlignRight>false</AlignRight>
</Label>
<Label item ="Exp_Percent">
<ScreenID>Exp_Percent</ScreenID>
<Font>2</Font>
<RelativePosition>true</RelativePosition>
<Location>
<X>15</X>
<Y>60</Y>
</Location>
<Size>
<CX>20</CX>
<CY>15</CY>
</Size>
<EQType>26</EQType>
<TextColor>
<R>255</R>
<G>200</G>
<B>150</B>
</TextColor>
<NoWrap>true</NoWrap>
<AlignCenter>false</AlignCenter>
<AlignRight>true</AlignRight>
</Label>
<Label item ="Exp_Percent_Label">
<ScreenID>Exp_Percent_Label</ScreenID>
<Font>2</Font>
<RelativePosition>true</RelativePosition>
<Location>
<X>35</X>
<Y>60</Y>
</Location>
<Size>
<CX>40</CX>
<CY>15</CY>
</Size>
<Text>%</Text>
<TextColor>
<R>255</R>
<G>200</G>
<B>150</B>
</TextColor>
<NoWrap>true</NoWrap>
<AlignCenter>false</AlignCenter>
<AlignRight>false</AlignRight>
</Label>
<!-- Player AA Experience Stats -->
<Label item ="Alt_Label">
<ScreenID>Alt_Label</ScreenID>
<Font>2</Font>
<RelativePosition>true</RelativePosition>
<Location>
<X>60</X>
<Y>60</Y>
</Location>
<Size>
<CX>80</CX>
<CY>15</CY>
</Size>
<Text>AA:</Text>
<TextColor>
<R>240</R>
<G>240</G>
<B>200</B>
</TextColor>
<NoWrap>true</NoWrap>
<AlignCenter>false</AlignCenter>
<AlignRight>false</AlignRight>
</Label>
<Label item ="Alt_Value">
<ScreenID>Alt_Value</ScreenID>
<EQType>9999</EQType>
<TooltipReference>${Me.AAExp}</TooltipReference>
<Font>1</Font>
<RelativePosition>true</RelativePosition>
<Location>
<X>70</X>
<Y>71</Y>
</Location>
<Size>
<CX>20</CX>
<CY>15</CY>
</Size>
<Text>XP:</Text>
<TextColor>
<R>240</R>
<G>240</G>
<B>200</B>
</TextColor>
<NoWrap>true</NoWrap>
<AlignCenter>false</AlignCenter>
<AlignRight>true</AlignRight>
</Label>
<Label item ="Alt_Of_330">
<ScreenID>Alt_Of_330</ScreenID>
<Font>1</Font>
<RelativePosition>true</RelativePosition>
<Location>
<X>90</X>
<Y>71</Y>
</Location>
<Size>
<CX>40</CX>
<CY>15</CY>
</Size>
<Text>/330</Text>
<TextColor>
<R>240</R>
<G>240</G>
<B>200</B>
</TextColor>
<NoWrap>true</NoWrap>
<AlignCenter>false</AlignCenter>
<AlignRight>false</AlignRight>
</Label>
<Label item ="Alt_Percent">
<ScreenID>Alt_Percent</ScreenID>
<Font>2</Font>
<RelativePosition>true</RelativePosition>
<Location>
<X>80</X>
<Y>60</Y>
</Location>
<Size>
<CX>20</CX>
<CY>15</CY>
</Size>
<EQType>27</EQType>
<TextColor>
<R>240</R>
<G>240</G>
<B>200</B>
</TextColor>
<NoWrap>true</NoWrap>
<AlignCenter>false</AlignCenter>
<AlignRight>true</AlignRight>
</Label>
<Label item ="Alt_Percent_Label">
<ScreenID>Alt_Percent_Label</ScreenID>
<Font>2</Font>
<RelativePosition>true</RelativePosition>
<Location>
<X>100</X>
<Y>60</Y>
</Location>
<Size>
<CX>40</CX>
<CY>15</CY>
</Size>
<Text>%</Text>
<TextColor>
<R>240</R>
<G>240</G>
<B>200</B>
</TextColor>
<NoWrap>true</NoWrap>
<AlignCenter>false</AlignCenter>
<AlignRight>false</AlignRight>
</Label>
<!-- Player Casting Bar -->
<Gauge item = "Cast">
<ScreenID>Cast</ScreenID>
<!--<Font>3</Font>-->
<RelativePosition>true</RelativePosition>
<Location>
<X>1</X>
<Y>53</Y>
</Location>
<Size>
<CX>116</CX>
<CY>8</CY>
</Size>
<GaugeOffsetY>0</GaugeOffsetY>
<Style_VScroll>false</Style_VScroll>
<Style_HScroll>false</Style_HScroll>
<Style_Transparent>false</Style_Transparent>
<!--<TooltipReference/>-->
<FillTint>
<R>240</R>
<G>0</G>
<B>240</B>
</FillTint>
<DrawLinesFill>false</DrawLinesFill>
<EQType>7</EQType>
<GaugeDrawTemplate>
<Background>A_GaugeBackground</Background>
<Fill>A_GaugeFill</Fill>
<Lines>A_GaugeLines</Lines>
<LinesFill>A_GaugeLinesFill</LinesFill>
<EndCapLeft>A_GaugeEndCapLeft</EndCapLeft>
<EndCapRight>A_GaugeEndCapRight</EndCapRight>
</GaugeDrawTemplate>
</Gauge>
<!-- Real Stat Section-->
<Label item ="PW_STR">
<ScreenID>STRLabel</ScreenID>
<Font>2</Font>
<RelativePosition>true</RelativePosition>
<Location>
<X>1</X>
<Y>80</Y>
</Location>
<Size>
<CX>27</CX>
<CY>14</CY>
</Size>
<Text>STR</Text>
<TextColor>
<R>255</R>
<G>255</G>
<B>255</B>
</TextColor>
<NoWrap>true</NoWrap>
<AlignCenter>false</AlignCenter>
<AlignRight>false</AlignRight>
</Label>
<Label item ="PW_STRNumber">
<ScreenID>STRNumberLabel</ScreenID>
<EQType>5</EQType>
<Font>2</Font>
<RelativePosition>true</RelativePosition>
<Location>
<X>20</X>
<Y>80</Y>
</Location>
<Size>
<CX>27</CX>
<CY>14</CY>
</Size>
<Text>255</Text>
<TextColor>
<R>255</R>
<G>255</G>
<B>255</B>
</TextColor>
<NoWrap>true</NoWrap>
<AlignCenter>false</AlignCenter>
<AlignRight>true</AlignRight>
</Label>
<Label item ="PW_STA">
<ScreenID>STALabel</ScreenID>
<Font>2</Font>
<RelativePosition>true</RelativePosition>
<Location>
<X>1</X>
<Y>90</Y>
</Location>
<Size>
<CX>27</CX>
<CY>14</CY>
</Size>
<Text>STA</Text>
<TextColor>
<R>255</R>
<G>255</G>
<B>255</B>
</TextColor>
<NoWrap>true</NoWrap>
<AlignCenter>false</AlignCenter>
<AlignRight>false</AlignRight>
</Label>
<Label item ="PW_STANumber">
<ScreenID>STANumberLabel</ScreenID>
<EQType>6</EQType>
<Font>2</Font>
<RelativePosition>true</RelativePosition>
<Location>
<X>20</X>
<Y>90</Y>
</Location>
<Size>
<CX>27</CX>
<CY>14</CY>
</Size>
<Text>255</Text>
<TextColor>
<R>255</R>
<G>255</G>
<B>255</B>
</TextColor>
<NoWrap>true</NoWrap>
<AlignCenter>false</AlignCenter>
<AlignRight>true</AlignRight>
</Label>
<Label item ="PW_AGI">
<ScreenID>AGILabel</ScreenID>
<Font>2</Font>
<RelativePosition>true</RelativePosition>
<Location>
<X>1</X>
<Y>100</Y>
</Location>
<Size>
<CX>27</CX>
<CY>14</CY>
</Size>
<Text>AGI</Text>
<TextColor>
<R>255</R>
<G>255</G>
<B>255</B>
</TextColor>
<NoWrap>true</NoWrap>
<AlignCenter>false</AlignCenter>
<AlignRight>false</AlignRight>
</Label>
<Label item ="PW_AGINumber">
<ScreenID>AGINumberLabel</ScreenID>
<EQType>8</EQType>
<Font>2</Font>
<RelativePosition>true</RelativePosition>
<Location>
<X>20</X>
<Y>100</Y>
</Location>
<Size>
<CX>27</CX>
<CY>14</CY>
</Size>
<Text>255</Text>
<TextColor>
<R>255</R>
<G>255</G>
<B>255</B>
</TextColor>
<NoWrap>true</NoWrap>
<AlignCenter>false</AlignCenter>
<AlignRight>true</AlignRight>
</Label>
<Label item ="PW_DEX">
<ScreenID>DEXLabel</ScreenID>
<Font>2</Font>
<RelativePosition>true</RelativePosition>
<Location>
<X>1</X>
<Y>110</Y>
</Location>
<Size>
<CX>27</CX>
<CY>14</CY>
</Size>
<Text>DEX</Text>
<TextColor>
<R>255</R>
<G>255</G>
<B>255</B>
</TextColor>
<NoWrap>true</NoWrap>
<AlignCenter>false</AlignCenter>
<AlignRight>false</AlignRight>
</Label>
<Label item ="PW_DEXNumber">
<ScreenID>DEXNumberLabel</ScreenID>
<EQType>7</EQType>
<Font>2</Font>
<RelativePosition>true</RelativePosition>
<Location>
<X>20</X>
<Y>110</Y>
</Location>
<Size>
<CX>27</CX>
<CY>14</CY>
</Size>
<Text>255</Text>
<TextColor>
<R>255</R>
<G>255</G>
<B>255</B>
</TextColor>
<NoWrap>true</NoWrap>
<AlignCenter>false</AlignCenter>
<AlignRight>true</AlignRight>
</Label>
<Label item ="PW_WIS">
<ScreenID>WISLabel</ScreenID>
<Font>2</Font>
<RelativePosition>true</RelativePosition>
<Location>
<X>1</X>
<Y>120</Y>
</Location>
<Size>
<CX>36</CX>
<CY>14</CY>
</Size>
<Text>WIS</Text>
<TextColor>
<R>255</R>
<G>255</G>
<B>255</B>
</TextColor>
<NoWrap>true</NoWrap>
<AlignCenter>false</AlignCenter>
<AlignRight>false</AlignRight>
</Label>
<Label item ="PW_WISNumber">
<ScreenID>WISNumberLabel</ScreenID>
<EQType>9</EQType>
<Font>2</Font>
<RelativePosition>true</RelativePosition>
<Location>
<X>20</X>
<Y>120</Y>
</Location>
<Size>
<CX>27</CX>
<CY>14</CY>
</Size>
<Text>255</Text>
<TextColor>
<R>255</R>
<G>255</G>
<B>255</B>
</TextColor>
<NoWrap>true</NoWrap>
<AlignCenter>false</AlignCenter>
<AlignRight>true</AlignRight>
</Label>
<Label item ="PW_INT">
<ScreenID>INTLabel</ScreenID>
<Font>2</Font>
<RelativePosition>true</RelativePosition>
<Location>
<X>1</X>
<Y>130</Y>
</Location>
<Size>
<CX>36</CX>
<CY>14</CY>
</Size>
<Text>INT</Text>
<TextColor>
<R>255</R>
<G>255</G>
<B>255</B>
</TextColor>
<NoWrap>true</NoWrap>
<AlignCenter>false</AlignCenter>
<AlignRight>false</AlignRight>
</Label>
<Label item ="PW_INTNumber">
<ScreenID>INTNumberLabel</ScreenID>
<EQType>10</EQType>
<Font>2</Font>
<RelativePosition>true</RelativePosition>
<Location>
<X>20</X>
<Y>130</Y>
</Location>
<Size>
<CX>27</CX>
<CY>14</CY>
</Size>
<Text>255</Text>
<TextColor>
<R>255</R>
<G>255</G>
<B>255</B>
</TextColor>
<NoWrap>true</NoWrap>
<AlignCenter>false</AlignCenter>
<AlignRight>true</AlignRight>
</Label>
<Label item ="PW_CHA">
<ScreenID>CHALabel</ScreenID>
<Font>2</Font>
<RelativePosition>true</RelativePosition>
<Location>
<X>1</X>
<Y>140</Y>
</Location>
<Size>
<CX>36</CX>
<CY>14</CY>
</Size>
<Text>CHA</Text>
<TextColor>
<R>255</R>
<G>255</G>
<B>255</B>
</TextColor>
<NoWrap>true</NoWrap>
<AlignCenter>false</AlignCenter>
<AlignRight>false</AlignRight>
</Label>
<Label item ="PW_CHANumber">
<ScreenID>CHANumberLabel</ScreenID>
<EQType>11</EQType>
<Font>2</Font>
<RelativePosition>true</RelativePosition>
<Location>
<X>20</X>
<Y>140</Y>
</Location>
<Size>
<CX>27</CX>
<CY>14</CY>
</Size>
<Text>255</Text>
<TextColor>
<R>255</R>
<G>255</G>
<B>255</B>
</TextColor>
<NoWrap>true</NoWrap>
<AlignCenter>false</AlignCenter>
<AlignRight>true</AlignRight>
</Label>
<!--Resists Section-->
<Label item ="TW_Magic">
<ScreenID>MagicLabel</ScreenID>
<Font>2</Font>
<RelativePosition>true</RelativePosition>
<Location>
<X>50</X>
<Y>110</Y>
</Location>
<Size>
<CX>30</CX>
<CY>14</CY>
</Size>
<Text>MR</Text>
<TextColor>
<R>200</R>
<G>200</G>
<B>100</B>
</TextColor>
<NoWrap>true</NoWrap>
<AlignCenter>false</AlignCenter>
<AlignRight>true</AlignRight>
</Label>
<Label item ="TW_MagicNumber">
<ScreenID>MagicNumberLabel</ScreenID>
<EQType>16</EQType>
<Font>2</Font>
<RelativePosition>true</RelativePosition>
<Location>
<X>82</X>
<Y>110</Y>
</Location>
<Size>
<CX>26</CX>
<CY>14</CY>
</Size>
<Text>255</Text>
<TextColor>
<R>255</R>
<G>255</G>
<B>255</B>
</TextColor>
<NoWrap>true</NoWrap>
<AlignCenter>false</AlignCenter>
<AlignRight>true</AlignRight>
</Label>
<Label item ="TW_Fire">
<ScreenID>FireLabel</ScreenID>
<Font>2</Font>
<RelativePosition>true</RelativePosition>
<Location>
<X>50</X>
<Y>120</Y>
</Location>
<Size>
<CX>30</CX>
<CY>14</CY>
</Size>
<Text>FR</Text>
<TextColor>
<R>200</R>
<G>100</G>
<B>100</B>
</TextColor>
<NoWrap>true</NoWrap>
<AlignCenter>false</AlignCenter>
<AlignRight>true</AlignRight>
</Label>
<Label item ="TW_FireNumber">
<ScreenID>FireNumberLabel</ScreenID>
<EQType>14</EQType>
<Font>2</Font>
<RelativePosition>true</RelativePosition>
<Location>
<X>82</X>
<Y>120</Y>
</Location>
<Size>
<CX>26</CX>
<CY>14</CY>
</Size>
<Text>255</Text>
<TextColor>
<R>255</R>
<G>255</G>
<B>255</B>
</TextColor>
<NoWrap>true</NoWrap>
<AlignCenter>false</AlignCenter>
<AlignRight>true</AlignRight>
</Label>
<Label item ="TW_Cold">
<ScreenID>ColdLabel</ScreenID>
<Font>2</Font>
<RelativePosition>true</RelativePosition>
<Location>
<X>50</X>
<Y>130</Y>
</Location>
<Size>
<CX>30</CX>
<CY>14</CY>
</Size>
<Text>CR</Text>
<TextColor>
<R>100</R>
<G>100</G>
<B>200</B>
</TextColor>
<NoWrap>true</NoWrap>
<AlignCenter>false</AlignCenter>
<AlignRight>true</AlignRight>
</Label>
<Label item ="TW_ColdNumber">
<ScreenID>ColdNumberLabel</ScreenID>
<EQType>15</EQType>
<Font>2</Font>
<RelativePosition>true</RelativePosition>
<Location>
<X>82</X>
<Y>130</Y>
</Location>
<Size>
<CX>26</CX>
<CY>14</CY>
</Size>
<Text>255</Text>
<TextColor>
<R>255</R>
<G>255</G>
<B>255</B>
</TextColor>
<NoWrap>true</NoWrap>
<AlignCenter>false</AlignCenter>
<AlignRight>true</AlignRight>
</Label>
<Label item ="TW_Poison">
<ScreenID>PoisonLabel</ScreenID>
<Font>2</Font>
<RelativePosition>true</RelativePosition>
<Location>
<X>50</X>
<Y>140</Y>
</Location>
<Size>
<CX>30</CX>
<CY>14</CY>
</Size>
<Text>PR</Text>
<TextColor>
<R>100</R>
<G>200</G>
<B>100</B>
</TextColor>
<NoWrap>true</NoWrap>
<AlignCenter>false</AlignCenter>
<AlignRight>true</AlignRight>
</Label>
<Label item ="TW_PoisonNumber">
<ScreenID>PoisonNumberLabel</ScreenID>
<EQType>12</EQType>
<Font>2</Font>
<RelativePosition>true</RelativePosition>
<Location>
<X>82</X>
<Y>140</Y>
</Location>
<Size>
<CX>26</CX>
<CY>14</CY>
</Size>
<Text>255</Text>
<TextColor>
<R>255</R>
<G>255</G>
<B>255</B>
</TextColor>
<NoWrap>true</NoWrap>
<AlignCenter>false</AlignCenter>
<AlignRight>true</AlignRight>
</Label>
<Label item ="TW_Disease">
<ScreenID>DiseaseLabel</ScreenID>
<Font>2</Font>
<RelativePosition>true</RelativePosition>
<Location>
<X>50</X>
<Y>150</Y>
</Location>
<Size>
<CX>30</CX>
<CY>14</CY>
</Size>
<Text>DR</Text>
<TextColor>
<R>220</R>
<G>150</G>
<B>0</B>
</TextColor>
<NoWrap>true</NoWrap>
<AlignCenter>false</AlignCenter>
<AlignRight>true</AlignRight>
</Label>
<Label item ="TW_DiseaseNumber">
<ScreenID>DiseaseNumberLabel</ScreenID>
<EQType>13</EQType>
<Font>2</Font>
<RelativePosition>true</RelativePosition>
<Location>
<X>82</X>
<Y>150</Y>
</Location>
<Size>
<CX>26</CX>
<CY>14</CY>
</Size>
<Text>255</Text>
<TextColor>
<R>255</R>
<G>255</G>
<B>255</B>
</TextColor>
<NoWrap>true</NoWrap>
<AlignCenter>false</AlignCenter>
<AlignRight>true</AlignRight>
</Label>
<!-- Armour Class -->
<Label item ="AC_Label">
<ScreenID>AC_Label</ScreenID>
<Font>2</Font>
<RelativePosition>true</RelativePosition>
<Location>
<X>50</X>
<Y>90</Y>
</Location>
<Size>
<CX>30</CX>
<CY>15</CY>
</Size>
<Text>AC</Text>
<Tex
-
Elric
- Cheese Whore

- Posts: 466
- Joined: Sun Nov 23, 2003 12:31 am
- Location: Tampa, Fl
-
Contact:
Post
by Elric » Sat May 22, 2004 10:14 pm
Got cut off, mate. Make sure to put it in code brackets so it won't do that.
Edit: as an afternote, I took a look at this.. and it's a player window, not the target window. Brain fart?