EQInterface Forums

EQInterface Forums (http://www.eqinterface.com/forums/index.php)
-   General authoring help / discussion (http://www.eqinterface.com/forums/forumdisplay.php?f=12)
-   -   Problem Getting Custom Player WIndow to Load (http://www.eqinterface.com/forums/showthread.php?t=17445)

shillingworth 12-06-2005 10:18 AM

Problem Getting Custom Player WIndow to Load
 
I've been workin on my own UI Skin after modifying alot of existing ones i felt i had the confidence to do one from scratch. I got all of my windows to work so far until i decided to do the player window. For some reason i can't get it to load my UI when i put it in the folder, tried it on a couple other ui's and they give the same result. The following post will have the source from the player window.

Also, i've been using the latest version of SidlWidl to create my UI if that has anything to do with it.

shillingworth 12-06-2005 10:19 AM

Code:
<?xml version="1.0" encoding="us-ascii"?> <XML ID="EQInterfaceDefinitionLanguage"> <Schema xmlns="EverQuestData" xmlns:dt="EverQuestDataTypes" /> <Ui2DAnimation item="A_AttackIndicator"> <Cycle>false</Cycle> <Frames> <Texture>AttackIndicator.tga</Texture> <Location> <X>0</X> <Y>0</Y> </Location> <Size> <CX>112</CX> <CY>30</CY> </Size> </Frames> </Ui2DAnimation> <TextureInfo item="AttackIndicator.tga"> <Size> <CX>128</CX> <CY>32</CY> </Size> </TextureInfo> <Gauge item="PW_HPGauge"> <ScreenID>PlayerHPGauge</ScreenID> <!--<Font>3</Font>--> <TextColor> <R>240</R> <G>240</G> <B>240</B> </TextColor> <RelativePosition>true</RelativePosition> <Location> <X>24</X> <Y>34</Y> </Location> <Size> <CX>108</CX> <CY>10</CY> </Size> <TextOffsety>0</TextOffsety> <TextOffsetX>5</TextOffsetX> <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>0</B> </FillTint> <LinesFillTint> <R>220</R> <G>220</G> <B>0</B> </LinesFillTint> <DrawLinesFill>false</DrawLinesFill> <EQType>1</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> <Gauge item="PW_ManaGauge"> <ScreenID>PlayerManaGauge</ScreenID> <!--<Font>3</Font>--> <RelativePosition>true</RelativePosition> <Location> <X>24</X> <Y>50</Y> </Location> <Size> <CX>108</CX> <CY>11</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>240</B> </FillTint> <LinesFillTint> <R>0</R> <G>220</G> <B>220</B> </LinesFillTint> <DrawLinesFill>false</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> <Gauge item="PW_EndGauge"> <ScreenID>EndGauge</ScreenID> <!--<Font>3</Font>--> <RelativePosition>true</RelativePosition> <Location> <X>24</X> <Y>66</Y> </Location> <Size> <CX>108</CX> <CY>10</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> <Gauge item="PW_XPGauge"> <ScreenID>XPGauge</ScreenID> <!--<Font>3</Font>--> <RelativePosition>true</RelativePosition> <Location> <X>24</X> <Y>82</Y> </Location> <Size> <CX>108</CX> <CY>11</CY> </Size> <GaugeOffsetY>0</GaugeOffsetY> <Text /> <TextOffsetY>0</TextOffsetY> <TextOffsetX>0</TextOffsetX> <TextColor> <R>240</R> <G>240</G> <B>240</B> </TextColor> <Style_VScroll>false</Style_VScroll> <Style_HScroll>false</Style_HScroll> <Style_Transparent>false</Style_Transparent> <!--<TooltipReference/>--> <FillTint> <R>220</R> <G>150</G> <B>0</B> </FillTint> <LinesFillTint> <R>0</R> <G>80</G> <B>220</B> </LinesFillTint> <DrawLinesFill>false</DrawLinesFill> <EQType>4</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> <Gauge item="PW_AAGauge"> <ScreenID>AAGauge</ScreenID> <!--<Font>3</Font>--> <RelativePosition>true</RelativePosition> <Location> <X>24</X> <Y>97</Y> </Location> <Size> <CX>108</CX> <CY>13</CY> </Size> <GaugeOffsetY>0</GaugeOffsetY> <Text /> <TextOffsetY>0</TextOffsetY> <TextOffsetX>0</TextOffsetX> <TextColor> <R>240</R> <G>240</G> <B>240</B> </TextColor> <Style_VScroll>false</Style_VScroll> <Style_HScroll>false</Style_HScroll> <Style_Transparent>false</Style_Transparent> <!--<TooltipReference/>--> <FillTint> <R>220</R> <G>150</G> <B>0</B> </FillTint> <LinesFillTint> <R>0</R> <G>80</G> <B>220</B> </LinesFillTint> <DrawLinesFill>false</DrawLinesFill> <EQType>5</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="PW_PlayerName"> <Font>3</Font> <TextColor> <R>255</R> <G>255</G> <B>255</B> </TextColor> <Size> <CX>130</CX> <CY>18</CY> </Size> <AlignCenter>True</AlignCenter> <Location> <X>1</X> <Y>1</Y> </Location> <EQType>1</EQType> </Label> <Label item="PW_PlayerLevel"> <Font>3</Font> <TextColor> <R>255</R> <G>255</G> <B>255</B> </TextColor> <Size> <CX>24</CX> <CY>16</CY> </Size> <AlignCenter>false</AlignCenter> <Location> <X>24</X> <Y>16</Y> </Location> <EQType>2</EQType> </Label> <Label item="PW_PlayerClass"> <ScreenID>PlayerClass</ScreenID> <Font>3</Font> <TextColor> <R>255</R> <G>255</G> <B>255</B> </TextColor> <Size> <CX>88</CX> <CY>16</CY> </Size> <AlignCenter>false</AlignCenter> <Location> <X>43</X> <Y>16</Y> </Location> <EQType>3</EQType> </Label> <Label item="PW_Hp_Label"> <Font>3</Font> <Text>HP</Text> <TextColor> <R>255</R> <G>0</G> <B>0</B> </TextColor> <Size> <CX>22</CX> <CY>16</CY> </Size> <AlignCenter>false</AlignCenter> <Location> <X>1</X> <Y>32</Y> </Location> </Label> <Label item="PW_Mp_Label"> <Font>3</Font> <Text>MP</Text> <TextColor> <R>0</R> <G>0</G> <B>255</B> </TextColor> <Size> <CX>22</CX> <CY>16</CY> </Size> <AlignCenter>false</AlignCenter> <Location> <X>1</X> <Y>48</Y> </Location> </Label> <Label item="PW_Hp_PercSign"> <Font>3</Font> <Text>%</Text> <TextColor> <R>255</R> <G>255</G> <B>255</B> </TextColor> <Size> <CX>25</CX> <CY>16</CY> </Size> <AlignCenter>False</AlignCenter> <Location> <X>90</X> <Y>32</Y> </Location> </Label> <Label item="PW_Hp_Percent"> <Font>3</Font> <TextColor> <R>255</R> <G>255</G> <B>255</B> </TextColor> <Size> <CX>108</CX> <CY>16</CY> </Size> <AlignCenter>True</AlignCenter> <Location> <X>25</X> <Y>32</Y> </Location> <EQType>19</EQType> </Label> <Label item="PW_End_Label"> <Font>3</Font> <Text>EN</Text> <TextColor> <R>255</R> <G>255</G> <B>0</B> </TextColor> <Size> <CX>22</CX> <CY>16</CY> </Size> <AlignCenter>false</AlignCenter> <Location> <X>1</X> <Y>64</Y> </Location> </Label> <Label item="PW_Mp_PercSign"> <Font>3</Font> <Text>%</Text> <TextColor> <R>255</R> <G>255</G> <B>255</B> </TextColor> <Size> <CX>25</CX> <CY>16</CY> </Size> <AlignCenter>false</AlignCenter> <Location> <X>90</X> <Y>48</Y> </Location> </Label> <Label item="PW_Mp_Percent"> <Font>3</Font> <TextColor> <R>255</R> <G>255</G> <B>255</B> </TextColor> <Size> <CX>108</CX> <CY>16</CY> </Size> <AlignCenter>True</AlignCenter> <Location> <X>25</X> <Y>48</Y> </Location> <EQType>20</EQType> </Label> <Label item="PW_Xp_Label"> <Font>3</Font> <Text>XP</Text> <TextColor> <R>255</R> <G>150</G> <B>0</B> </TextColor> <Size> <CX>22</CX> <CY>16</CY> </Size> <AlignCenter>false</AlignCenter> <Location> <X>1</X> <Y>80</Y> </Location> </Label> <Label item="PW_End_PercSign"> <Font>3</Font> <Text>%</Text> <TextColor> <R>255</R> <G>255</G> <B>255</B> </TextColor> <Size> <CX>25</CX> <CY>16</CY> </Size> <AlignCenter>false</AlignCenter> <Location> <X>90</X> <Y>64</Y> </Location> </Label> <Label item="PW_End_Percent"> <Font>3</Font> <TextColor> <R>255</R> <G>255</G> <B>255</B> </TextColor> <Size> <CX>108</CX> <CY>16</CY> </Size> <AlignCenter>True</AlignCenter> <Location> <X>25</X> <Y>64</Y> </Location> <EQType>21</EQType> </Label> <Label item="PW_AA_Label"> <Font>3</Font> <Text>AA</Text> <TextColor> <R>255</R> <G>150</G> <B>0</B> </TextColor> <Size> <CX>22</CX> <CY>16</CY> </Size> <AlignCenter>false</AlignCenter> <Location> <X>1</X> <Y>94</Y> </Location> </Label> <Label item="PW_Xp_PercSign"> <Font>3</Font> <Text>%</Text> <TextColor> <R>255</R> <G>255</G> <B>255</B> </TextColor> <Size> <CX>25</CX> <CY>16</CY> </Size> <AlignCenter>false</AlignCenter> <Location> <X>90</X> <Y>80</Y> </Location> </Label> <Label item="PW_Xp_Percent"> <Font>3</Font> <TextColor> <R>255</R> <G>255</G> <B>255</B> </TextColor> <Size> <CX>108</CX> <CY>16</CY> </Size> <AlignCenter>true</AlignCenter> <Location> <X>25</X> <Y>80</Y> </Location> <EQType>26</EQType> </Label> <Label item="PW_AA_Percent"> <Font>3</Font> <TextColor> <R>255</R> <G>255</G> <B>255</B> </TextColor> <Size> <CX>108</CX> <CY>16</CY> </Size> <AlignCenter>True</AlignCenter> <Location> <X>25</X> <Y>94</Y> </Location> <EQType>27</EQType> </Label> <Label item="PW_AA_PercSign"> <Font>3</Font> <Text>%</Text> <TextColor> <R>255</R> <G>255</G> <B>255</B> </TextColor> <Size> <CX>25</CX> <CY>16</CY> </Size> <AlignCenter>false</AlignCenter> <Location> <X>90</X> <Y>94</Y> </Location> </Label> <Label item="PW_Magic_Number"> <Font>2</Font> <TextColor> <R>255</R> <G>255</G> <B>255</B> </TextColor> <Size> <CX>18</CX> <CY>15</CY> </Size> <AlignCenter>false</AlignCenter> <Location> <X>208</X> <Y>32</Y> </Location> <EQType>16</EQType> </Label> <Label item="PW_Magic_Label"> <Font>2</Font> <Text>MR</Text> <TextColor> <R>120</R> <G>120</G> <B>255</B> </TextColor> <Size> <CX>20</CX> <CY>15</CY> </Size> <AlignCenter>false</AlignCenter> <Location> <X>186</X> <Y>32</Y> </Location> <AlignRight>True</AlignRight> </Label> <Label item="PW_Disease_Number"> <Font>2</Font> <TextColor> <R>255</R> <G>255</G> <B>255</B> </TextColor> <Size> <CX>18</CX> <CY>15</CY> </Size> <AlignCenter>false</AlignCenter> <Location> <X>208</X> <Y>96</Y> </Location> <EQType>13</EQType> </Label> <Label item="PW_Disease_Label"> <Font>2</Font> <Text>DR</Text> <TextColor> <R>200</R> <G>150</G> <B>0</B> </TextColor> <Size> <CX>18</CX> <CY>15</CY> </Size> <AlignCenter>false</AlignCenter> <Location> <X>186</X> <Y>96</Y> </Location> <AlignRight>True</AlignRight> </Label> <Label item="PW_Poison_Number"> <Font>2</Font> <TextColor> <R>255</R> <G>255</G> <B>255</B> </TextColor> <Size> <CX>18</CX> <CY>15</CY> </Size> <AlignCenter>false</AlignCenter> <Location> <X>208</X> <Y>80</Y> </Location> <EQType>12</EQType> </Label> <Label item="PW_Poison_Label"> <Font>2</Font> <Text>PR</Text> <TextColor> <R>40</R> <G>255</G> <B>40</B> </TextColor> <Size> <CX>18</CX> <CY>15</CY> </Size> <AlignCenter>false</AlignCenter> <Location> <X>186</X> <Y>80</Y> </Location> <AlignRight>True</AlignRight> </Label> <Label item="PW_Cold_Number"> <Font>2</Font> <TextColor> <R>255</R> <G>255</G> <B>255</B> </TextColor> <Size> <CX>18</CX> <CY>15</CY> </Size> <AlignCenter>false</AlignCenter> <Location> <X>208</X> <Y>64</Y> </Location> <EQType>15</EQType> </Label> <Label item="PW_Cold_Label"> <Font>2</Font> <Text>CR</Text> <TextColor> <R>120</R> <G>120</G> <B>255</B> </TextColor> <Size> <CX>18</CX> <CY>15</CY> </Size> <AlignCenter>false</AlignCenter> <Location> <X>186</X> <Y>64</Y> </Location> <AlignRight>True</AlignRight> </Label> <Label item="PW_Fire_Number"> <Font>2</Font> <TextColor> <R>255</R> <G>255</G> <B>255</B> </TextColor> <Size> <CX>18</CX> <CY>15</CY> </Size> <AlignCenter>false</AlignCenter> <Location> <X>208</X> <Y>48</Y> </Location> <EQType>14</EQType> </Label> <Label item="PW_Fire_Label"> <Font>2</Font> <Text>FR</Text> <TextColor> <R>255</R> <G>0</G> <B>0</B> </TextColor> <Size> <CX>18</CX> <CY>15</CY> </Size> <AlignCenter>false</AlignCenter> <Location> <X>186</X> <Y>48</Y> </Location> <AlignRight>True</AlignRight> </Label> <Label item="PW_Cha_Number"> <Font>2</Font> <TextColor> <R>255</R> <G>255</G> <B>255</B> </TextColor> <Size> <CX>18</CX> <CY>16</CY> </Size> <AlignCenter>false</AlignCenter> <Location> <X>208</X> <Y>16</Y> </Location> <EQType>11</EQType> </Label> <Label item="PW_Int_Number"> <Font>2</Font> <TextColor> <R>255</R> <G>255</G> <B>255</B> </TextColor> <Size> <CX>18</CX> <CY>16</CY> </Size> <AlignCenter>false</AlignCenter> <Location> <X>162</X> <Y>96</Y> </Location> <EQType>10</EQType> </Label> <Label item="PW_Wis_Number"> <Font>2</Font> <TextColor> <R>255</R> <G>255</G> <B>255</B> </TextColor> <Size> <CX>18</CX> <CY>16</CY> </Size> <AlignCenter>false</AlignCenter> <Location> <X>162</X> <Y>80</Y> </Location> <EQType>9</EQType> </Label> <Label item="PW_Agi_Number"> <Font>2</Font> <TextColor> <R>255</R> <G>255</G> <B>255</B> </TextColor> <Size> <CX>20</CX> <CY>16</CY> </Size> <AlignCenter>false</AlignCenter> <Location> <X>162</X> <Y>64</Y> </Location> <EQType>8</EQType> </Label> <Label item="PW_Dex_Number"> <Font>2</Font> <TextColor> <R>255</R> <G>255</G> <B>255</B> </TextColor> <Size> <CX>20</CX> <CY>16</CY> </Size> <AlignCenter>false</AlignCenter> <Location> <X>162</X> <Y>48</Y> </Location> <EQType>7</EQType> </Label> <Label item="PW_Sta_Number"> <Font>2</Font> <TextColor> <R>255</R> <G>255</G> <B>255</B> </TextColor> <Size> <CX>20</CX> <CY>16</CY> </Size> <AlignCenter>false</AlignCenter> <Location> <X>162</X> <Y>32</Y> </Location> <EQType>6</EQType> </Label> <Label item="PW_Str_Number"> <Font>2</Font> <TextColor> <R>255</R> <G>255</G> <B>255</B> </TextColor> <Size> <CX>18</CX> <CY>16</CY> </Size> <AlignCenter>false</AlignCenter> <Location> <X>162</X> <Y>16</Y> </Location> <EQType>5</EQType> </Label> <Label item="PW_Cha_Label"> <Font>2</Font> <Text>Cha</Text> <TextColor> <R>255</R> <G>255</G> <B>255</B> </TextColor> <Size> <CX>20</CX> <CY>16</CY> </Size> <AlignCenter>false</AlignCenter> <Location> <X>186</X> <Y>16</Y> </Location> <AlignRight>True</AlignRight> </Label> <Label item="PW_Int_Label"> <Font>2</Font> <Text>Int</Text> <TextColor> <R>255</R> <G>255</G> <B>255</B> </TextColor> <Size> <CX>20</CX> <CY>16</CY> </Size> <AlignCenter>false</AlignCenter> <Location> <X>138</X> <Y>96</Y> </Location> <AlignRight>True</AlignRight> </Label> <Label item="PW_Wis_Label"> <Font>2</Font> <Text>Wis</Text> <TextColor> <R>255</R> <G>255</G> <B>255</B> </TextColor> <Size> <CX>20</CX> <CY>16</CY> </Size> <AlignCenter>false</AlignCenter> <Location> <X>138</X> <Y>80</Y> </Location> <AlignRight>True</AlignRight> </Label> <Label item="PW_Agi_Label"> <Font>2</Font> <Text>Agi</Text> <TextColor> <R>255</R> <G>255</G> <B>255</B> </TextColor> <Size> <CX>20</CX> <CY>16</CY> </Size> <AlignCenter>false</AlignCenter> <Location> <X>138</X> <Y>64</Y> </Location> <AlignRight>True</AlignRight> </Label> <Label item="PW_Dex_Label"> <Font>2</Font> <Text>Dex</Text> <TextColor> <R>255</R> <G>255</G> <B>255</B> </TextColor> <Size> <CX>20</CX> <CY>16</CY> </Size> <AlignCenter>false</AlignCenter> <Location> <X>138</X> <Y>48</Y> </Location> <AlignRight>True</AlignRight> </Label> <Label item="PW_Sta_Label"> <Font>2</Font> <Text>Sta</Text> <TextColor> <R>255</R> <G>255</G> <B>255</B> </TextColor> <Size> <CX>20</CX> <CY>16</CY> </Size> <AlignCenter>False</AlignCenter> <Location> <X>138</X> <Y>32</Y> </Location> <AlignRight>True</AlignRight> </Label> <Label item="PW_Str_Label"> <Font>2</Font> <Text>Str</Text> <TextColor> <R>255</R> <G>255</G> <B>255</B> </TextColor> <Size> <CX>20</CX> <CY>16</CY> </Size> <AlignCenter>false</AlignCenter> <Location> <X>138</X> <Y>16</Y> </Location> <AlignRight>True</AlignRight> </Label> <Label item="PW_Atk_Number"> <Font>2</Font> <TextColor> <R>255</R> <G>255</G> <B>255</B> </TextColor> <Size> <CX>26</CX> <CY>16</CY> </Size> <AlignCenter>false</AlignCenter> <Location> <X>206</X> <Y>1</Y> </Location> <EQType>23</EQType> </Label> <Label item="PW_Atk_Label"> <Font>2</Font> <Text>ATK</Text> <TextColor> <R>255</R> <G>0</G> <B>0</B> </TextColor> <Size> <CX>22</CX> <CY>16</CY> </Size> <AlignCenter>false</AlignCenter> <Location> <X>182</X> <Y>1</Y> </Location> </Label> <Label item="PW_AC_Number"> <Font>2</Font> <TextColor> <R>255</R> <G>255</G> <B>255</B> </TextColor> <Size> <CX>26</CX> <CY>16</CY> </Size> <AlignCenter>false</AlignCenter> <Location> <X>152</X> <Y>1</Y> </Location> <EQType>22</EQType> </Label> <Label item="PW_AC_Label"> <Font>2</Font> <Text>AC</Text> <TextColor> <R>140</R> <G>140</G> <B>255</B> </TextColor> <Size> <CX>15</CX> <CY>16</CY> </Size> <AlignCenter>False</AlignCenter> <Location> <X>134</X> <Y>1</Y> </Location> </Label> <Label item="PW_End_Max"> <Font>2</Font> <TextColor> <R>255</R> <G>255</G> <B>255</B> </TextColor> <Size> <CX>32</CX> <CY>15</CY> </Size> <AlignCenter>false</AlignCenter> <Location> <X>131</X> <Y>126</Y> </Location> <EQType>127</EQType> </Label> <Label item="PW_End_Div"> <Font>2</Font> <Text>/</Text> <TextColor> <R>255</R> <G>255</G> <B>255</B> </TextColor> <Size> <CX>9</CX> <CY>15</CY> </Size> <AlignCenter>false</AlignCenter> <Location> <X>125</X> <Y>126</Y> </Location> </Label> <Label item="PW_End_Number"> <Font>2</Font> <TextColor> <R>255</R> <G>255</G> <B>255</B> </TextColor> <Size> <CX>32</CX> <CY>15</CY> </Size> <AlignCenter>false</AlignCenter> <Location> <X>91</X> <Y>126</Y> </Location> <AlignRight>True</AlignRight> <EQType>126</EQType> </Label> <Label item="PW_End_Label2"> <Font>2</Font> <Text>EN:</Text> <TextColor> <R>255</R> <G>255</G> <B>9</B> </TextColor> <Size> <CX>18</CX> <CY>15</CY> </Size> <AlignCenter>false</AlignCenter> <Location> <X>74</X> <Y>126</Y> </Location> </Label> <Label item="PW_Mana_Max"> <Font>2</Font> <TextColor> <R>255</R> <G>255</G> <B>255</B> </TextColor> <Size> <CX>32</CX> <CY>15</CY> </Size> <AlignCenter>false</AlignCenter> <Location> <X>179</X> <Y>111</Y> </Location> <EQType>125</EQType> </Label> <Label item="PW_MP_Div"> <Font>2</Font> <Text>/</Text> <TextColor> <R>255</R> <G>255</G> <B>255</B> </TextColor> <Size> <CX>9</CX> <CY>15</CY> </Size> <AlignCenter>false</AlignCenter> <Location> <X>173</X> <Y>111</Y> </Location> </Label> <Label item="PW_Mana_Number"> <Font>2</Font> <TextColor> <R>255</R> <G>255</G> <B>255</B> </TextColor> <Size> <CX>32</CX> <CY>15</CY> </Size> <AlignCenter>false</AlignCenter> <Location> <X>139</X> <Y>111</Y> </Location> <AlignRight>True</AlignRight> <EQType>124</EQType> </Label> <Label item="PW_MP_Label2"> <Font>2</Font> <Text>MP:</Text> <TextColor> <R>0</R> <G>0</G> <B>255</B> </TextColor> <Size> <CX>18</CX> <CY>15</CY> </Size> <AlignCenter>false</AlignCenter> <Location> <X>122</X> <Y>111</Y> </Location> </Label> <Label item="PW_HP_Max"> <Font>2</Font> <TextColor> <R>255</R> <G>255</G> <B>255</B> </TextColor> <Size> <CX>32</CX> <CY>15</CY> </Size> <AlignCenter>false</AlignCenter> <Location> <X>86</X> <Y>111</Y> </Location> <EQType>18</EQType> </Label> <Label item="PW_HP_Div"> <Font>2</Font> <Text>/</Text> <TextColor> <R>255</R> <G>255</G> <B>255</B> </TextColor> <Size> <CX>9</CX> <CY>15</CY> </Size> <AlignCenter>false</AlignCenter> <Location> <X>80</X> <Y>111</Y> </Location> </Label> <Label item="PW_HP_Number"> <Font>2</Font> <TextColor> <R>255</R> <G>255</G> <B>255</B> </TextColor> <Size> <CX>32</CX> <CY>15</CY> </Size> <AlignCenter>false</AlignCenter> <Location> <X>46</X> <Y>111</Y> </Location> <EQType>17</EQType> <AlignRight>True</AlignRight> </Label> <Label item="PW_HP_Label2"> <Font>2</Font> <Text>HP:</Text> <TextColor> <R>255</R> <G>0</G> <B>0</B> </TextColor> <Size> <CX>18</CX> <CY>15</CY> </Size> <AlignCenter>false</AlignCenter> <Location> <X>29</X> <Y>111</Y> </Location> </Label> <Screen item="PlayerWindow"> <!--<ScreenID/>--> <RelativePosition>false</RelativePosition> <Location> <X>516</X> <Y>0</Y> </Location> <Size> <CX>268</CX> <CY>146</CY> </Size> <Style_VScroll>false</Style_VScroll> <Style_HScroll>false</Style_HScroll> <Style_Transparent>false</Style_Transparent> <DrawTemplate>WDT_Filigree3</DrawTemplate> <Style_Titlebar>False</Style_Titlebar> <Style_Closebox>false</Style_Closebox> <Style_Minimizebox>false</Style_Minimizebox> <Style_Border>true</Style_Border> <Style_Sizable>false</Style_Sizable> <Pieces>A_AttackIndicatorAnim</Pieces> <Pieces>PW_PlayerName</Pieces> <Pieces>PW_PlayerLevel</Pieces> <Pieces>PW_PlayerClass</Pieces> <Pieces>PW_HPGauge</Pieces> <Pieces>PW_Hp_Label</Pieces> <Pieces>PW_Mp_Label</Pieces> <Pieces>PW_ManaGauge</Pieces> <Pieces>PW_End_Label</Pieces> <Pieces>PW_EndGauge</Pieces> <Pieces>PW_Xp_Label</Pieces> <Pieces>PW_XPGauge</Pieces> <Pieces>PW_AA_Label</Pieces> <Pieces>PW_AAGauge</Pieces> <Pieces>PW_Xp_Percent</Pieces> <Pieces>PW_AA_Percent</Pieces> <Pieces>PW_Hp_Percent</Pieces> <Pieces>PW_Mp_Percent</Pieces> <Pieces>PW_End_Percent</Pieces> <Pieces>PW_HP_Label2</Pieces> <Pieces>PW_HP_Number</Pieces> <Pieces>PW_HP_Div</Pieces> <Pieces>PW_HP_Max</Pieces> <Pieces>PW_MP_Label2</Pieces> <Pieces>PW_Mana_Number</Pieces> <Pieces>PW_MP_Div</Pieces> <Pieces>PW_Mana_Max</Pieces> <Pieces>PW_End_Label2</Pieces> <Pieces>PW_End_Number</Pieces> <Pieces>PW_End_Div</Pieces> <Pieces>PW_End_Max</Pieces> <Pieces>PW_AC_Label</Pieces> <Pieces>PW_AC_Number</Pieces> <Pieces>PW_Atk_Label</Pieces> <Pieces>PW_Atk_Number</Pieces> <Pieces>PW_Str_Label</Pieces> <Pieces>PW_Sta_Label</Pieces> <Pieces>PW_Dex_Label</Pieces> <Pieces>PW_Agi_Label</Pieces> <Pieces>PW_Wis_Label</Pieces> <Pieces>PW_Int_Label</Pieces> <Pieces>PW_Cha_Label</Pieces> <Pieces>PW_Str_Number</Pieces> <Pieces>PW_Sta_Number</Pieces> <Pieces>PW_Dex_Number</Pieces> <Pieces>PW_Agi_Number</Pieces> <Pieces>PW_Wis_Number</Pieces> <Pieces>PW_Int_Number</Pieces> <Pieces>PW_Cha_Number</Pieces> <Pieces>PW_Fire_Label</Pieces> <Pieces>PW_Fire_Number</Pieces> <Pieces>PW_Cold_Label</Pieces> <Pieces>PW_Cold_Number</Pieces> <Pieces>PW_Poison_Label</Pieces> <Pieces>PW_Poison_Number</Pieces> <Pieces>PW_Disease_Label</Pieces> <Pieces>PW_Disease_Number</Pieces> <Pieces>PW_Magic_Number</Pieces> <Pieces>PW_Magic_Number</Pieces> <Pieces>PW_Hp_PercSign</Pieces> <Pieces>PW_Mp_PercSign</Pieces> <Pieces>PW_End_PercSign</Pieces> <Pieces>PW_Xp_PercSign</Pieces> <Pieces>PW_AA_PercSign</Pieces> </Screen> </XML>

danny91643 12-06-2005 10:37 AM

Take a look at your UIError.txt file. Scroll to the bottom of the file and you should see why the xml will not load. You may have to do this while in Windows mod, the UIError txt file has a problem of dumping at log out.

http://xmlwrench.com/

This is a good XML file to use to check your codeing

shillingworth 12-06-2005 03:49 PM

Tried that, it only had those warning for missing windows, no errors =(

XML Wrench didn't report anything wrong as well.

danny91643 12-06-2005 10:06 PM

I tried this with the Default and it Loads. I used your basic code and made the changes to the Errors from what was reported. I can't use my UI to test it due to how I have it set up. Hope this is what you need... :rolleyes:

shillingworth 12-07-2005 11:13 AM

What were the errors? i wasn't getting any so i'd like to know for future reference.

danny91643 12-07-2005 08:37 PM

UIErrorLog created at Tue Dec 06 20:07:49 2005
[Tue Dec 06 20:08:00 2005] Error: Could not find child PetHP in window PlayerWindow

[Tue Dec 06 20:08:00 2005] Error: Could not find child A_AttackIndicatorAnim in window PlayerWindow

The error that first prevented loading was a Declared but not referenced error for the
A_AttackIndicatorAnim, This was in your pieces but not referenced in the file.

Once I put the code in for this and the PetHP it loaded. Hope that helps. ;)


All times are GMT -5. The time now is 03:05 AM.

vBulletin Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.