Home Forum Downloads My Favorites Register FAQ Mark Forums Read

Go Back   EQInterface Forums > General Discussion > Help ! ? ! ?
User Name
Password

Reply
 
Thread Tools Display Modes
Old 08-11-2017, 03:21 AM   #1
WhiteWolf
A Ghoul
 
Join Date: Aug 2003
Posts: 13
Default Updating a UI. Today: Hotbutton!

I'm trying to update Soes piece by piece. Right now I'm working on the hotbutton bar, but I'm getting some issues I can't nail down. If I use it as it exists originally, it loads Default, and I get an error in the UIError log
Quote:
[Fri Aug 11 01:18:14 2017] [Line:966 Source:UIFiles\custom\EQUI_HotButtonWnd.xml] Schema error - Duplicate item InvSlot30 [Fri Aug 11 01:18:14 2017] Error reading XML.

I did a search for the Schema error portion, and got a thread from this site. I tried changing the InvSlot30 and above to HB_InvSlot30 (and so forth), only to result in CtD. Likewise, commenting the lines out, or deleting them entirely also results in CtD. I'm missing something, but I haven't a clue what.

Code:
<?xml version="1.0"?> <!-- Dolyn's Hot Buttons http://members.bellatlantic.net/~vze24xqc/mods/ --> <XML ID="EQInterfaceDefinitionLanguage"> <Schema xmlns="EverQuestData" xmlns:dt="EverQuestDataTypes"/> <Label item="HB_CurrentPageLabel"> <ScreenID>HB_CurrentPageLabel</ScreenID> <Font>3</Font> <RelativePosition>true</RelativePosition> <Location> <X>428</X> <Y>70</Y> </Location> <Size> <CX>25</CX> <CY>16</CY> </Size> <Text>1</Text> <TextColor> <R>255</R> <G>255</G> <B>255</B> </TextColor> <NoWrap>true</NoWrap> <AlignCenter>false</AlignCenter> <AlignRight>false</AlignRight> </Label> <Button item="HB_PageLeftButton"> <ScreenID>HB_PageLeftButton</ScreenID> <Font>1</Font> <RelativePosition>true</RelativePosition> <Location> <X>425</X> <Y>10</Y> </Location> <Size> <CX>12</CX> <CY>22</CY> </Size> <Text/> <TextColor> <R>255</R> <G>255</G> <B>255</B> </TextColor> <ButtonDrawTemplate> <Normal>A_VSBUpNormal</Normal> <Pressed>A_VSBUpPressed</Pressed> <Flyby>A_VSBUpFlyby</Flyby> <Disabled>A_VSBUpDisabled</Disabled> <PressedFlyby>A_VSBUpPressedFlyby</PressedFlyby> </ButtonDrawTemplate> </Button> <Button item="HB_PageRightButton"> <ScreenID>HB_PageRightButton</ScreenID> <Font>1</Font> <RelativePosition>true</RelativePosition> <Location> <X>425</X> <Y>36</Y> </Location> <Size> <CX>12</CX> <CY>22</CY> </Size> <Text/> <TextColor> <R>255</R> <G>255</G> <B>255</B> </TextColor> <ButtonDrawTemplate> <Normal>A_VSBDownNormal</Normal> <Pressed>A_VSBDownPressed</Pressed> <Flyby>A_VSBDownFlyby</Flyby> <Disabled>A_VSBDownDisabled</Disabled> <PressedFlyby>A_VSBDownPressedFlyby</PressedFlyby> </ButtonDrawTemplate> </Button> <Button item="HB_Button1"> <ScreenID>HB_Button1</ScreenID> <Font>1</Font> <RelativePosition>true</RelativePosition> <Location> <X>2</X> <Y>18</Y> </Location> <Size> <CX>40</CX> <CY>40</CY> </Size> <Text>1</Text> <TextColor> <R>255</R> <G>255</G> <B>255</B> </TextColor> <DecalSize> <CX>40</CX> <CY>40</CY> </DecalSize> <ButtonDrawTemplate> <Normal>A_SquareBtnNormal</Normal> <Pressed>A_SquareBtnPressed</Pressed> <Flyby>A_SquareBtnFlyby</Flyby> <Disabled>A_SquareBtnDisabled</Disabled> <PressedFlyby>A_SquareBtnPressedFlyby</PressedFlyby> </ButtonDrawTemplate> </Button> <Button item="HB_Button2"> <ScreenID>HB_Button2</ScreenID> <Font>1</Font> <RelativePosition>true</RelativePosition> <Location> <X>44</X> <Y>18</Y> </Location> <Size> <CX>40</CX> <CY>40</CY> </Size> <Text>2</Text> <TextColor> <R>255</R> <G>255</G> <B>255</B> </TextColor> <DecalSize> <CX>40</CX> <CY>40</CY> </DecalSize> <ButtonDrawTemplate> <Normal>A_SquareBtnNormal</Normal> <Pressed>A_SquareBtnPressed</Pressed> <Flyby>A_SquareBtnFlyby</Flyby> <Disabled>A_SquareBtnDisabled</Disabled> <PressedFlyby>A_SquareBtnPressedFlyby</PressedFlyby> </ButtonDrawTemplate> </Button> <Button item="HB_Button3"> <ScreenID>HB_Button3</ScreenID> <Font>1</Font> <RelativePosition>true</RelativePosition> <Location> <X>86</X> <Y>18</Y> </Location> <Size> <CX>40</CX> <CY>40</CY> </Size> <Text>3</Text> <TextColor> <R>255</R> <G>255</G> <B>255</B> </TextColor> <DecalSize> <CX>40</CX> <CY>40</CY> </DecalSize> <ButtonDrawTemplate> <Normal>A_SquareBtnNormal</Normal> <Pressed>A_SquareBtnPressed</Pressed> <Flyby>A_SquareBtnFlyby</Flyby> <Disabled>A_SquareBtnDisabled</Disabled> <PressedFlyby>A_SquareBtnPressedFlyby</PressedFlyby> </ButtonDrawTemplate> </Button> <Button item="HB_Button4"> <ScreenID>HB_Button4</ScreenID> <Font>1</Font> <RelativePosition>true</RelativePosition> <Location> <X>128</X> <Y>18</Y> </Location> <Size> <CX>40</CX> <CY>40</CY> </Size> <Text>4</Text> <TextColor> <R>255</R> <G>255</G> <B>255</B> </TextColor> <DecalSize> <CX>40</CX> <CY>40</CY> </DecalSize> <ButtonDrawTemplate> <Normal>A_SquareBtnNormal</Normal> <Pressed>A_SquareBtnPressed</Pressed> <Flyby>A_SquareBtnFlyby</Flyby> <Disabled>A_SquareBtnDisabled</Disabled> <PressedFlyby>A_SquareBtnPressedFlyby</PressedFlyby> </ButtonDrawTemplate> </Button> <Button item="HB_Button5"> <ScreenID>HB_Button5</ScreenID> <Font>1</Font> <RelativePosition>true</RelativePosition> <Location> <X>170</X> <Y>18</Y> </Location> <Size> <CX>40</CX> <CY>40</CY> </Size> <Text>5</Text> <TextColor> <R>255</R> <G>255</G> <B>255</B> </TextColor> <DecalSize> <CX>40</CX> <CY>40</CY> </DecalSize> <ButtonDrawTemplate> <Normal>A_SquareBtnNormal</Normal> <Pressed>A_SquareBtnPressed</Pressed> <Flyby>A_SquareBtnFlyby</Flyby> <Disabled>A_SquareBtnDisabled</Disabled> <PressedFlyby>A_SquareBtnPressedFlyby</PressedFlyby> </ButtonDrawTemplate> </Button> <Button item="HB_Button6"> <ScreenID>HB_Button6</ScreenID> <Font>1</Font> <RelativePosition>true</RelativePosition> <Location> <X>212</X> <Y>18</Y> </Location> <Size> <CX>40</CX> <CY>40</CY> </Size> <Text>6</Text> <TextColor> <R>255</R> <G>255</G> <B>255</B> </TextColor> <DecalSize> <CX>40</CX> <CY>40</CY> </DecalSize> <ButtonDrawTemplate> <Normal>A_SquareBtnNormal</Normal> <Pressed>A_SquareBtnPressed</Pressed> <Flyby>A_SquareBtnFlyby</Flyby> <Disabled>A_SquareBtnDisabled</Disabled> <PressedFlyby>A_SquareBtnPressedFlyby</PressedFlyby> </ButtonDrawTemplate> </Button> <Button item="HB_Button7"> <ScreenID>HB_Button7</ScreenID> <Font>1</Font> <RelativePosition>true</RelativePosition> <Location> <X>254</X> <Y>18</Y> </Location> <Size> <CX>40</CX> <CY>40</CY> </Size> <Text>7</Text> <TextColor> <R>255</R> <G>255</G> <B>255</B> </TextColor> <DecalSize> <CX>40</CX> <CY>40</CY> </DecalSize> <ButtonDrawTemplate> <Normal>A_SquareBtnNormal</Normal> <Pressed>A_SquareBtnPressed</Pressed> <Flyby>A_SquareBtnFlyby</Flyby> <Disabled>A_SquareBtnDisabled</Disabled> <PressedFlyby>A_SquareBtnPressedFlyby</PressedFlyby> </ButtonDrawTemplate> </Button> <Button item="HB_Button8"> <ScreenID>HB_Button8</ScreenID> <Font>1</Font> <RelativePosition>true</RelativePosition> <Location> <X>296</X> <Y>18</Y> </Location> <Size> <CX>40</CX> <CY>40</CY> </Size> <Text>8</Text> <TextColor> <R>255</R> <G>255</G> <B>255</B> </TextColor> <DecalSize> <CX>40</CX> <CY>40</CY> </DecalSize> <ButtonDrawTemplate> <Normal>A_SquareBtnNormal</Normal> <Pressed>A_SquareBtnPressed</Pressed> <Flyby>A_SquareBtnFlyby</Flyby> <Disabled>A_SquareBtnDisabled</Disabled> <PressedFlyby>A_SquareBtnPressedFlyby</PressedFlyby> </ButtonDrawTemplate> </Button> <Button item="HB_Button9"> <ScreenID>HB_Button9</ScreenID> <Font>1</Font> <RelativePosition>true</RelativePosition> <Location> <X>338</X> <Y>18</Y> </Location> <Size> <CX>40</CX> <CY>40</CY> </Size> <Text>9</Text> <TextColor> <R>255</R> <G>255</G> <B>255</B> </TextColor> <DecalSize> <CX>40</CX> <CY>40</CY> </DecalSize> <ButtonDrawTemplate> <Normal>A_SquareBtnNormal</Normal> <Pressed>A_SquareBtnPressed</Pressed> <Flyby>A_SquareBtnFlyby</Flyby> <Disabled>A_SquareBtnDisabled</Disabled> <PressedFlyby>A_SquareBtnPressedFlyby</PressedFlyby> </ButtonDrawTemplate> </Button> <Button item="HB_Button10"> <ScreenID>HB_Button10</ScreenID> <Font>1</Font> <RelativePosition>true</RelativePosition> <Location> <X>380</X> <Y>18</Y> </Location> <Size> <CX>40</CX> <CY>40</CY> </Size> <Text>0</Text> <TextColor> <R>255</R> <G>255</G> <B>255</B> </TextColor> <DecalSize> <CX>40</CX> <CY>40</CY> </DecalSize> <ButtonDrawTemplate> <Normal>A_SquareBtnNormal</Normal> <Pressed>A_SquareBtnPressed</Pressed> <Flyby>A_SquareBtnFlyby</Flyby> <Disabled>A_SquareBtnDisabled</Disabled> <PressedFlyby>A_SquareBtnPressedFlyby</PressedFlyby> </ButtonDrawTemplate> </Button> <InvSlot item="HB_InvSlot1"> <ScreenID>HB_InvSlot1</ScreenID> <RelativePosition>true</RelativePosition> <Location> <X>2</X> <Y>18</Y> </Location> <Size> <CX>40</CX> <CY>40</CY> </Size> <Background>A_RecessedBox</Background> <EQType>-1</EQType> <Style_VScroll>false</Style_VScroll> <Style_HScroll>false</Style_HScroll> <Style_Transparent>false</Style_Transparent> </InvSlot> <InvSlot item="HB_InvSlot2"> <ScreenID>HB_InvSlot2</ScreenID> <RelativePosition>true</RelativePosition> <Location> <X>44</X> <Y>18</Y> </Location> <Size> <CX>40</CX> <CY>40</CY> </Size> <Background>A_RecessedBox</Background> <EQType>-1</EQType> <Style_VScroll>false</Style_VScroll> <Style_HScroll>false</Style_HScroll> <Style_Transparent>false</Style_Transparent> </InvSlot> <InvSlot item="HB_InvSlot3"> <ScreenID>HB_InvSlot3</ScreenID> <RelativePosition>true</RelativePosition> <Location> <X>86</X> <Y>18</Y> </Location> <Size> <CX>40</CX> <CY>40</CY> </Size> <Background>A_RecessedBox</Background> <EQType>-1</EQType> <Style_VScroll>false</Style_VScroll> <Style_HScroll>false</Style_HScroll> <Style_Transparent>false</Style_Transparent> </InvSlot> <InvSlot item="HB_InvSlot4"> <ScreenID>HB_InvSlot4</ScreenID> <RelativePosition>true</RelativePosition> <Location> <X>128</X> <Y>18</Y> </Location> <Size> <CX>40</CX> <CY>40</CY> </Size> <Background>A_RecessedBox</Background> <EQType>-1</EQType> <Style_VScroll>false</Style_VScroll> <Style_HScroll>false</Style_HScroll> <Style_Transparent>false</Style_Transparent> </InvSlot> <InvSlot item="HB_InvSlot5"> <ScreenID>HB_InvSlot5</ScreenID> <RelativePosition>true</RelativePosition> <Location> <X>170</X> <Y>18</Y> </Location> <Size> <CX>40</CX> <CY>40</CY> </Size> <Background>A_RecessedBox</Background> <EQType>-1</EQType> <Style_VScroll>false</Style_VScroll> <Style_HScroll>false</Style_HScroll> <Style_Transparent>false</Style_Transparent> </InvSlot> <InvSlot item="HB_InvSlot6"> <ScreenID>HB_InvSlot6</ScreenID> <RelativePosition>true</RelativePosition> <Location> <X>212</X> <Y>18</Y> </Location> <Size> <CX>40</CX> <CY>40</CY> </Size> <Background>A_RecessedBox</Background> <EQType>-1</EQType> <Style_VScroll>false</Style_VScroll> <Style_HScroll>false</Style_HScroll> <Style_Transparent>false</Style_Transparent> </InvSlot> <InvSlot item="HB_InvSlot7"> <ScreenID>HB_InvSlot7</ScreenID> <RelativePosition>true</RelativePosition> <Location> <X>254</X> <Y>18</Y> </Location> <Size> <CX>40</CX> <CY>40</CY> </Size> <Background>A_RecessedBox</Background> <EQType>-1</EQType> <Style_VScroll>false</Style_VScroll> <Style_HScroll>false</Style_HScroll> <Style_Transparent>false</Style_Transparent> </InvSlot> <InvSlot item="HB_InvSlot8"> <ScreenID>HB_InvSlot8</ScreenID> <RelativePosition>true</RelativePosition> <Location> <X>296</X> <Y>18</Y> </Location> <Size> <CX>40</CX> <CY>40</CY> </Size> <Background>A_RecessedBox</Background> <EQType>-1</EQType> <Style_VScroll>false</Style_VScroll> <Style_HScroll>false</Style_HScroll> <Style_Transparent>false</Style_Transparent> </InvSlot> <InvSlot item="HB_InvSlot9"> <ScreenID>HB_InvSlot9</ScreenID> <RelativePosition>true</RelativePosition> <Location> <X>338</X> <Y>18</Y> </Location> <Size> <CX>40</CX> <CY>40</CY> </Size> <Background>A_RecessedBox</Background> <EQType>-1</EQType> <Style_VScroll>false</Style_VScroll> <Style_HScroll>false</Style_HScroll> <Style_Transparent>false</Style_Transparent> </InvSlot> <InvSlot item="HB_InvSlot10"> <ScreenID>HB_InvSlot10</ScreenID> <RelativePosition>true</RelativePosition> <Location> <X>380</X> <Y>18</Y> </Location> <Size> <CX>40</CX> <CY>40</CY> </Size> <Background>A_RecessedBox</Background> <EQType>-1</EQType> <Style_VScroll>false</Style_VScroll> <Style_HScroll>false</Style_HScroll> <Style_Transparent>false</Style_Transparent> </InvSlot> <SpellGem item="HB_SpellGem1"> <ScreenID>HB_SpellGem1</ScreenID> <RelativePosition>true</RelativePosition> <Location> <X>2</X> <Y>22</Y> </Location> <Size> <CX>40</CX> <CY>32</CY> </Size> <SpellGemDrawTemplate> <Holder>A_SpellGemHolder</Holder> <Background>A_SpellGemBackground</Background> <Highlight>A_SpellGemHighlight</Highlight> </SpellGemDrawTemplate> <SpellIconOffsetX>8</SpellIconOffsetX> <SpellIconOffsetY>4</SpellIconOffsetY> </SpellGem> <SpellGem item="HB_SpellGem2"> <ScreenID>HB_SpellGem2</ScreenID> <RelativePosition>true</RelativePosition> <Location> <X>44</X> <Y>22</Y> </Location> <Size> <CX>40</CX> <CY>32</CY> </Size> <SpellGemDrawTemplate> <Holder>A_SpellGemHolder</Holder> <Background>A_SpellGemBackground</Background> <Highlight>A_SpellGemHighlight</Highlight> </SpellGemDrawTemplate> <SpellIconOffsetX>8</SpellIconOffsetX> <SpellIconOffsetY>4</SpellIconOffsetY> </SpellGem> <SpellGem item="HB_SpellGem3"> <ScreenID>HB_SpellGem3</ScreenID> <RelativePosition>true</RelativePosition> <Location> <X>86</X> <Y>22</Y> </Location> <Size> <CX>40</CX> <CY>32</CY> </Size> <SpellGemDrawTemplate> <Holder>A_SpellGemHolder</Holder> <Background>A_SpellGemBackground</Background> <Highlight>A_SpellGemHighlight</Highlight> </SpellGemDrawTemplate> <SpellIconOffsetX>8</SpellIconOffsetX> <SpellIconOffsetY>4</SpellIconOffsetY> </SpellGem> <SpellGem item="HB_SpellGem4"> <ScreenID>HB_SpellGem4</ScreenID> <RelativePosition>true</RelativePosition> <Location> <X>128</X> <Y>22</Y> </Location> <Size> <CX>40</CX> <CY>32</CY> </Size> <SpellGemDrawTemplate> <Holder>A_SpellGemHolder</Holder> <Background>A_SpellGemBackground</Background> <Highlight>A_SpellGemHighlight</Highlight> </SpellGemDrawTemplate> <SpellIconOffsetX>8</SpellIconOffsetX> <SpellIconOffsetY>4</SpellIconOffsetY> </SpellGem> <SpellGem item="HB_SpellGem5"> <ScreenID>HB_SpellGem5</ScreenID> <RelativePosition>true</RelativePosition> <Location> <X>170</X> <Y>22</Y> </Location> <Size> <CX>40</CX> <CY>32</CY> </Size> <SpellGemDrawTemplate> <Holder>A_SpellGemHolder</Holder> <Background>A_SpellGemBackground</Background> <Highlight>A_SpellGemHighlight</Highlight> </SpellGemDrawTemplate> <SpellIconOffsetX>8</SpellIconOffsetX> <SpellIconOffsetY>4</SpellIconOffsetY> </SpellGem> <SpellGem item="HB_SpellGem6"> <ScreenID>HB_SpellGem6</ScreenID> <RelativePosition>true</RelativePosition> <Location> <X>212</X> <Y>22</Y> </Location> <Size> <CX>40</CX> <CY>32</CY> </Size> <SpellGemDrawTemplate> <Holder>A_SpellGemHolder</Holder> <Background>A_SpellGemBackground</Background> <Highlight>A_SpellGemHighlight</Highlight> </SpellGemDrawTemplate> <SpellIconOffsetX>8</SpellIconOffsetX> <SpellIconOffsetY>4</SpellIconOffsetY> </SpellGem> <SpellGem item="HB_SpellGem7"> <ScreenID>HB_SpellGem7</ScreenID> <RelativePosition>true</RelativePosition> <Location> <X>254</X> <Y>22</Y> </Location> <Size> <CX>40</CX> <CY>32</CY> </Size> <SpellGemDrawTemplate> <Holder>A_SpellGemHolder</Holder> <Background>A_SpellGemBackground</Background> <Highlight>A_SpellGemHighlight</Highlight> </SpellGemDrawTemplate> <SpellIconOffsetX>8</SpellIconOffsetX> <SpellIconOffsetY>4</SpellIconOffsetY> </SpellGem> <SpellGem item="HB_SpellGem8"> <ScreenID>HB_SpellGem8</ScreenID> <RelativePosition>true</RelativePosition> <Location> <X>296</X> <Y>22</Y> </Location> <Size> <CX>40</CX> <CY>32</CY> </Size> <SpellGemDrawTemplate> <Holder>A_SpellGemHolder</Holder> <Background>A_SpellGemBackground</Background> <Highlight>A_SpellGemHighlight</Highlight> </SpellGemDrawTemplate> <SpellIconOffsetX>8</SpellIconOffsetX> <SpellIconOffsetY>4</SpellIconOffsetY> </SpellGem> <SpellGem item="HB_SpellGem9"> <ScreenID>HB_SpellGem9</ScreenID> <RelativePosition>true</RelativePosition> <Location> <X>338</X> <Y>22</Y> </Location> <Size> <CX>40</CX> <CY>32</CY> </Size> <SpellGemDrawTemplate> <Holder>A_SpellGemHolder</Holder> <Background>A_SpellGemBackground</Background> <Highlight>A_SpellGemHighlight</Highlight> </SpellGemDrawTemplate> <SpellIconOffsetX>8</SpellIconOffsetX> <SpellIconOffsetY>4</SpellIconOffsetY> </SpellGem> <SpellGem item="HB_SpellGem10"> <ScreenID>HB_SpellGem10</ScreenID> <RelativePosition>true</RelativePosition> <Location> <X>380</X> <Y>22</Y> </Location> <Size> <CX>40</CX> <CY>32</CY> </Size> <SpellGemDrawTemplate> <Holder>A_SpellGemHolder</Holder> <Background>A_SpellGemBackground</Background> <Highlight>A_SpellGemHighlight</Highlight> </SpellGemDrawTemplate> <SpellIconOffsetX>8</SpellIconOffsetX> <SpellIconOffsetY>4</SpellIconOffsetY> </SpellGem> <Label item="HB_Label_1"> <ScreenID>HB_Label_1</ScreenID> <Font>1</Font> <RelativePosition>true</RelativePosition> <Location> <X>2</X> <Y>2</Y> </Location> <Size> <CX>40</CX> <CY>16</CY> </Size> <Text>1</Text> <TextColor> <R>255</R> <G>255</G> <B>255</B> </TextColor> <NoWrap>true</NoWrap> <AlignCenter>true</AlignCenter> <AlignRight>false</AlignRight> </Label> <Label item="HB_Label_2"> <ScreenID>HB_Label_2</ScreenID> <Font>1</Font> <RelativePosition>true</RelativePosition> <Location> <X>44</X> <Y>2</Y> </Location> <Size> <CX>40</CX> <CY>16</CY> </Size> <Text>2</Text> <TextColor> <R>255</R> <G>255</G> <B>255</B> </TextColor> <NoWrap>true</NoWrap> <AlignCenter>true</AlignCenter> <AlignRight>false</AlignRight> </Label> <Label item="HB_Label_3"> <ScreenID>HB_Label_3</ScreenID> <Font>1</Font> <RelativePosition>true</RelativePosition> <Location> <X>86</X> <Y>2</Y> </Location> <Size> <CX>40</CX> <CY>16</CY> </Size> <Text>3</Text> <TextColor> <R>255</R> <G>255</G> <B>255</B> </TextColor> <NoWrap>true</NoWrap> <AlignCenter>true</AlignCenter> <AlignRight>false</AlignRight> </Label> <Label item="HB_Label_4"> <ScreenID>HB_Label_4</ScreenID> <Font>1</Font> <RelativePosition>true</RelativePosition> <Location> <X>128</X> <Y>2</Y> </Location> <Size> <CX>40</CX> <CY>16</CY> </Size> <Text>4</Text> <TextColor> <R>255</R> <G>255</G> <B>255</B> </TextColor> <NoWrap>true</NoWrap> <AlignCenter>true</AlignCenter> <AlignRight>false</AlignRight> </Label> <Label item="HB_Label_5"> <ScreenID>HB_Label_5</ScreenID> <Font>1</Font> <RelativePosition>true</RelativePosition> <Location> <X>170</X> <Y>2</Y> </Location> <Size> <CX>40</CX> <CY>16</CY> </Size> <Text>5</Text> <TextColor> <R>255</R> <G>255</G> <B>255</B> </TextColor> <NoWrap>true</NoWrap> <AlignCenter>true</AlignCenter> <AlignRight>false</AlignRight> </Label> <Label item="HB_Label_6"> <ScreenID>HB_Label_6</ScreenID> <Font>1</Font> <RelativePosition>true</RelativePosition> <Location> <X>212</X> <Y>2</Y> </Location> <Size> <CX>40</CX> <CY>16</CY> </Size> <Text>6</Text> <TextColor> <R>255</R> <G>255</G> <B>255</B> </TextColor> <NoWrap>true</NoWrap> <AlignCenter>true</AlignCenter> <AlignRight>false</AlignRight> </Label> <Label item="HB_Label_7"> <ScreenID>HB_Label_7</ScreenID> <Font>1</Font> <RelativePosition>true</RelativePosition> <Location> <X>254</X> <Y>2</Y> </Location> <Size> <CX>40</CX> <CY>16</CY> </Size> <Text>7</Text> <TextColor> <R>255</R> <G>255</G> <B>255</B> </TextColor> <NoWrap>true</NoWrap> <AlignCenter>true</AlignCenter> <AlignRight>false</AlignRight> </Label> <Label item="HB_Label_8"> <ScreenID>HB_Label_8</ScreenID> <Font>1</Font> <RelativePosition>true</RelativePosition> <Location> <X>296</X> <Y>2</Y> </Location> <Size> <CX>40</CX> <CY>16</CY> </Size> <Text>8</Text> <TextColor> <R>255</R> <G>255</G> <B>255</B> </TextColor> <NoWrap>true</NoWrap> <AlignCenter>true</AlignCenter> <AlignRight>false</AlignRight> </Label> <Label item="HB_Label_9"> <ScreenID>HB_Label_9</ScreenID> <Font>1</Font> <RelativePosition>true</RelativePosition> <Location> <X>338</X> <Y>2</Y> </Location> <Size> <CX>40</CX> <CY>16</CY> </Size> <Text>9</Text> <TextColor> <R>255</R> <G>255</G> <B>255</B> </TextColor> <NoWrap>true</NoWrap> <AlignCenter>true</AlignCenter> <AlignRight>false</AlignRight> </Label> <Label item="HB_Label_10"> <ScreenID>HB_Label_10</ScreenID> <Font>1</Font> <RelativePosition>true</RelativePosition> <Location> <X>380</X> <Y>2</Y> </Location> <Size> <CX>40</CX> <CY>16</CY> </Size> <Text>10</Text> <TextColor> <R>255</R> <G>255</G> <B>255</B> </TextColor> <NoWrap>true</NoWrap> <AlignCenter>true</AlignCenter> <AlignRight>false</AlignRight> </Label> <InvSlot item="InvSlot30"> <ScreenID>InvSlot30</ScreenID> <RelativePosition>true</RelativePosition> <Location> <X>2</X> <Y>60</Y> </Location> <Size> <CX>40</CX> <CY>40</CY> </Size> <Background>A_RecessedBox</Background> <EQType>22</EQType> <Style_VScroll>false</Style_VScroll> <Style_HScroll>false</Style_HScroll> <Style_Transparent>false</Style_Transparent> </InvSlot> <InvSlot item="InvSlot31"> <ScreenID>InvSlot31</ScreenID> <RelativePosition>true</RelativePosition> <Location> <X>44</X> <Y>60</Y> </Location> <Size> <CX>40</CX> <CY>40</CY> </Size> <Background>A_RecessedBox</Background> <EQType>23</EQType> <Style_VScroll>false</Style_VScroll> <Style_HScroll>false</Style_HScroll> <Style_Transparent>false</Style_Transparent> </InvSlot> <InvSlot item="InvSlot32"> <ScreenID>InvSlot32</ScreenID> <RelativePosition>true</RelativePosition> <Location> <X>86</X> <Y>60</Y> </Location> <Size> <CX>40</CX> <CY>40</CY> </Size> <Background>A_RecessedBox</Background> <EQType>24</EQType> <Style_VScroll>false</Style_VScroll> <Style_HScroll>false</Style_HScroll> <Style_Transparent>false</Style_Transparent> </InvSlot> <InvSlot item="InvSlot33"> <ScreenID>InvSlot33</ScreenID> <RelativePosition>true</RelativePosition> <Location> <X>128</X> <Y>60</Y> </Location> <Size> <CX>40</CX> <CY>40</CY> </Size> <Background>A_RecessedBox</Background> <EQType>25</EQType> <Style_VScroll>false</Style_VScroll> <Style_HScroll>false</Style_HScroll> <Style_Transparent>false</Style_Transparent> </InvSlot> <InvSlot item="InvSlot34"> <ScreenID>InvSlot34</ScreenID> <RelativePosition>true</RelativePosition> <Location> <X>170</X> <Y>60</Y> </Location> <Size> <CX>40</CX> <CY>40</CY> </Size> <Background>A_RecessedBox</Background> <EQType>26</EQType> <Style_VScroll>false</Style_VScroll> <Style_HScroll>false</Style_HScroll> <Style_Transparent>false</Style_Transparent> </InvSlot> <InvSlot item="InvSlot35"> <ScreenID>InvSlot35</ScreenID> <RelativePosition>true</RelativePosition> <Location> <X>212</X> <Y>60</Y> </Location> <Size> <CX>40</CX> <CY>40</CY> </Size> <Background>A_RecessedBox</Background> <EQType>27</EQType> <Style_VScroll>false</Style_VScroll> <Style_HScroll>false</Style_HScroll> <Style_Transparent>false</Style_Transparent> </InvSlot> <InvSlot item="InvSlot36"> <ScreenID>InvSlot36</ScreenID> <RelativePosition>true</RelativePosition> <Location> <X>254</X> <Y>60</Y> </Location> <Size> <CX>40</CX> <CY>40</CY> </Size> <Background>A_RecessedBox</Background> <EQType>28</EQType> <Style_VScroll>false</Style_VScroll> <Style_HScroll>false</Style_HScroll> <Style_Transparent>false</Style_Transparent> </InvSlot> <InvSlot item="InvSlot37"> <ScreenID>InvSlot37</ScreenID> <RelativePosition>true</RelativePosition> <Location> <X>296</X> <Y>60</Y> </Location> <Size> <CX>40</CX> <CY>40</CY> </Size> <Background>A_RecessedBox</Background> <EQType>29</EQType> <Style_VScroll>false</Style_VScroll> <Style_HScroll>false</Style_HScroll> <Style_Transparent>false</Style_Transparent> </InvSlot> <InvSlot item="InvSlot38"> <ScreenID>InvSlot38</ScreenID> <RelativePosition>true</RelativePosition> <Location> <X>338</X> <Y>60</Y> </Location> <Size> <CX>40</CX> <CY>40</CY> </Size> <Background>A_InvPrimary</Background> <EQType>13</EQType> <Style_VScroll>false</Style_VScroll> <Style_HScroll>false</Style_HScroll> <Style_Transparent>false</Style_Transparent> </InvSlot> <InvSlot item="InvSlot39"> <ScreenID>InvSlot39</ScreenID> <RelativePosition>true</RelativePosition> <Location> <X>380</X> <Y>60</Y> </Location> <Size> <CX>40</CX> <CY>40</CY> </Size> <Background>A_InvSecondary</Background> <EQType>14</EQType> <Style_VScroll>false</Style_VScroll> <Style_HScroll>false</Style_HScroll> <Style_Transparent>false</Style_Transparent> </InvSlot> <Screen item="HotButtonWnd"> <ScreenID/> <Font>2</Font> <RelativePosition>false</RelativePosition> <Location> <X>0</X> <Y>400</Y> </Location> <Size> <CX>454</CX> <CY>140</CY> </Size> <Text>Hot Buttons</Text> <Style_VScroll>false</Style_VScroll> <Style_HScroll>false</Style_HScroll> <Style_Transparent>false</Style_Transparent> <TooltipReference>Hot Buttons</TooltipReference> <DrawTemplate>WDT_RoundedNoTitle</DrawTemplate> <Style_Titlebar>false</Style_Titlebar> <Style_Closebox>false</Style_Closebox> <Style_Minimizebox>false</Style_Minimizebox> <Style_Border>false</Style_Border> <Style_Sizable>false</Style_Sizable> <Pieces>HB_PageLeftButton</Pieces> <Pieces>HB_PageRightButton</Pieces> <Pieces>HB_CurrentPageLabel</Pieces> <Pieces>HB_Button1</Pieces> <Pieces>HB_Button2</Pieces> <Pieces>HB_Button3</Pieces> <Pieces>HB_Button4</Pieces> <Pieces>HB_Button5</Pieces> <Pieces>HB_Button6</Pieces> <Pieces>HB_Button7</Pieces> <Pieces>HB_Button8</Pieces> <Pieces>HB_Button9</Pieces> <Pieces>HB_Button10</Pieces> <Pieces>HB_InvSlot1</Pieces> <Pieces>HB_InvSlot2</Pieces> <Pieces>HB_InvSlot3</Pieces> <Pieces>HB_InvSlot4</Pieces> <Pieces>HB_InvSlot5</Pieces> <Pieces>HB_InvSlot6</Pieces> <Pieces>HB_InvSlot7</Pieces> <Pieces>HB_InvSlot8</Pieces> <Pieces>HB_InvSlot9</Pieces> <Pieces>HB_InvSlot10</Pieces> <Pieces>HB_SpellGem1</Pieces> <Pieces>HB_SpellGem2</Pieces> <Pieces>HB_SpellGem3</Pieces> <Pieces>HB_SpellGem4</Pieces> <Pieces>HB_SpellGem5</Pieces> <Pieces>HB_SpellGem6</Pieces> <Pieces>HB_SpellGem7</Pieces> <Pieces>HB_SpellGem8</Pieces> <Pieces>HB_SpellGem9</Pieces> <Pieces>HB_SpellGem10</Pieces> <Pieces>HB_Label_1</Pieces> <Pieces>HB_Label_2</Pieces> <Pieces>HB_Label_3</Pieces> <Pieces>HB_Label_4</Pieces> <Pieces>HB_Label_5</Pieces> <Pieces>HB_Label_6</Pieces> <Pieces>HB_Label_7</Pieces> <Pieces>HB_Label_8</Pieces> <Pieces>HB_Label_9</Pieces> <Pieces>HB_Label_10</Pieces> <Pieces>InvSlot36</Pieces> <Pieces>InvSlot39</Pieces> <Pieces>InvSlot38</Pieces> <Pieces>InvSlot37</Pieces> <Pieces>InvSlot35</Pieces> <Pieces>InvSlot30</Pieces> <Pieces>InvSlot34</Pieces> <Pieces>InvSlot33</Pieces> <Pieces>InvSlot32</Pieces> <Pieces>InvSlot31</Pieces> </Screen> </XML>

Halp?
WhiteWolf is offline   Reply With Quote
Old 08-12-2017, 02:47 PM   #2
AloneStarwalker
A Shissar Disciple
 
Join Date: Aug 2002
Posts: 129
Default

okay what i can see is wrong and would fit the error message, is something you mentioned and tried yourself

put HB_invslot30 instead of invslot30 in these tags


Code:
<InvSlot item="InvSlot30"> <ScreenID>InvSlot30</ScreenID>



and in these
Code:
<Pieces>InvSlot36</Pieces> <Pieces>InvSlot39</Pieces> <Pieces>InvSlot38</Pieces> <Pieces>InvSlot37</Pieces> <Pieces>InvSlot35</Pieces> <Pieces>InvSlot30</Pieces> <Pieces>InvSlot34</Pieces> <Pieces>InvSlot33</Pieces> <Pieces>InvSlot32</Pieces> <Pieces>InvSlot31</Pieces>


for all the slots that has anything with invslot to do, so you got a little bit of scripting to do.
AloneStarwalker is offline   Reply With Quote
Old 08-12-2017, 10:14 PM   #3
WhiteWolf
A Ghoul
 
Join Date: Aug 2003
Posts: 13
Default

Yea, I tried that, and instead it resulted in CtD. Likewise I tried commenting those lines out with <!-- --> and just deleting them entirely. But I can't figure out why that's causing a CtD.
WhiteWolf is offline   Reply With Quote
Old 08-13-2017, 12:55 AM   #4
WhiteWolf
A Ghoul
 
Join Date: Aug 2003
Posts: 13
Default

Doing some more research, EQTYPE...the 30-39 are bag slots according to this post. Which is what this Hotbar interface piece is supposed to do.
Just wondering if the HB_InvSlot1 and such are supposed to be using EQTYPE -1, as that one doesn't show up in the list.
I noticed the EQTYPE for bags has changed, 22 is no longer first bag. Changed those, leaving InvType30 and such as it was. Errored on load with the same as before. Changed it to HB_InvSlot, and CtD again.
It has to be something with InvSlot30 or something below that line, but I can't figure it out for the life of me.
It wouldn't be the ScreenID, right?
Could I rename them to something simpler, like HB_Bag1?
Edit: And I presume the spacing in the XML doesn't matter.... like using 6 spaces instead of a tab, and having blank lines between sections.....
Edit 2: Hey now....I just noticed all the hotbuttons are coded with "<Button", but I see in the Default it's coded as "<HotButton" now. Changing that and loading..... Error.
Code:
[Sat Aug 12 23:12:29 2017] XML reference error! ScreenPiece[14]:HB_Button1[0] referenced but NEVER declared! XML reference error! ScreenPiece[14]:HB_Button2[1] referenced but NEVER declared! XML reference error! ScreenPiece[14]:HB_Button3[2] referenced but NEVER declared! XML reference error! ScreenPiece[14]:HB_Button4[3] referenced but NEVER declared! XML reference error! ScreenPiece[14]:HB_Button5[4] referenced but NEVER declared! XML reference error! ScreenPiece[14]:HB_Button6[5] referenced but NEVER declared! XML reference error! ScreenPiece[14]:HB_Button7[6] referenced but NEVER declared! XML reference error! ScreenPiece[14]:HB_Button8[7] referenced but NEVER declared! XML reference error! ScreenPiece[14]:HB_Button9[8] referenced but NEVER declared! XML reference error! ScreenPiece[14]:HB_Button10[9] referenced but NEVER declared! [Sat Aug 12 23:12:29 2017] Error validating symbol table. [Sat Aug 12 23:12:29 2017] Error loading skin: loading default skin instead.

More study required, it seems.

Last edited by WhiteWolf : 08-13-2017 at 01:14 AM.
WhiteWolf is offline   Reply With Quote
Old 08-13-2017, 01:18 AM   #5
WhiteWolf
A Ghoul
 
Join Date: Aug 2003
Posts: 13
Default

Hrm. By removing
Code:
<Pieces>HB_Button1</Pieces> <Pieces>HB_Button2</Pieces> <Pieces>HB_Button3</Pieces> <Pieces>HB_Button4</Pieces> <Pieces>HB_Button5</Pieces> <Pieces>HB_Button6</Pieces> <Pieces>HB_Button7</Pieces> <Pieces>HB_Button8</Pieces> <Pieces>HB_Button9</Pieces> <Pieces>HB_Button10</Pieces>

it actually loads...but I have spell gems where my hotbuttons should be. Empty spell gems, at that, rather than my actual spell gems.
WhiteWolf is offline   Reply With Quote
Old 08-13-2017, 01:07 PM   #6
AloneStarwalker
A Shissar Disciple
 
Join Date: Aug 2002
Posts: 129
Default

hmm the problem here is that the hotbutton bar has changed alot since this one was operational.

we now have 12 slots, and its defined differently
i would use the default one as base, and then edit the sizes and what else to fit.

then figure add the bag slots and other invslot you would like, i personally see no reason to do that as i would just stack another hotbutton bar now that we can drag allmost anything to that.

the invslot eqtype for bag one would be : inventory/Equip 23
AloneStarwalker is offline   Reply With Quote
Reply



Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off


All times are GMT -5. The time now is 09:11 AM.


vBulletin Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
© MMOUI