Project 1999

Go Back   Project 1999 > Blue Community > Blue Server Chat

Closed Thread
 
Thread Tools Display Modes
  #1  
Old 01-20-2014, 06:17 PM
The Thread Necromancer The Thread Necromancer is offline
Scrawny Gnoll

The Thread Necromancer's Avatar

Join Date: Jan 2014
Posts: 21
Default FIXING the hot button window issue from latest patch

At the most recent patch, I noticed that 3 of my hot button windows disappeared and would not come back up after clicking "EQ Button" - "Actions" - "Hotkeys 2-4" (I use the "default" interface)

After digging through the EQUI_HotButtonWnd XML file I noticed a few syntax errors and a great deal of missing code. Using what I knew to be working (hot button window 1) and comparing against what I knew to NOT be working (windows 2-4) I repaired the code. Unfortunately the forum won't let me post the actual file, so what I will do is post the entire contents of the file. What you need to do is make a backup of the original file, store it somewhere safe in a backup folder (you can also reinstall the latest patch to restore the original "broken" version of the file). Now go to program files - sony - everquest - uifiles - open up the "default" folder and find the EQUI_HotButtonWnd XML file and open it in notepad. Clear the entire contents of the file and replace it with the code that follows. Note that this will only work if you use the "default" interface. If there's a serious demand from the community I could also take a look at the other interface versions and correct them if they need correcting. This is my way of giving back to this great community on this awesome server. Hope you enjoy! [and I hope I don't get banned because having working hotbuttons isn't "Classic" or something! [You must be logged in to view images. Log in or Register.] ]

Code:
<?xml version = "1.0"?>
<XML ID = "EQInterfaceDefinitionLanguage">
	<Schema xmlns = "EverQuestData" xmlns:dt = "EverQuestDataTypes"/>

    <Ui2DAnimation item="HB_SpellGemHolder">
       <Frames>
           <Texture>classic_pieces01.tga</Texture>
           <Location>
              <X>39</X>
              <Y>117</Y>
           </Location>
           <Size>
              <CX>40</CX>
              <CY>40</CY>
           </Size>
       </Frames>
    </Ui2DAnimation>

	<Button item = "HB_PageLeftButton">
		<ScreenID>HB_PageLeftButton</ScreenID>
		<Font>1</Font>
		<RelativePosition>true</RelativePosition>
		<Location>
			<X>8</X>
			<Y>3</Y>
		</Location>
		<Size>
			<CX>22</CX>
			<CY>12</CY>
		</Size>
		<Text></Text>
		<TextColor>
			<R>255</R>
			<G>255</G>
			<B>255</B>
		</TextColor>
		<ButtonDrawTemplate>
			<Normal>A_HSBLeftNormal</Normal>
			<Pressed>A_HSBLeftPressed</Pressed>
			<Flyby>A_HSBLeftFlyby</Flyby>
			<Disabled>A_HSBLeftDisabled</Disabled>
			<PressedFlyby>A_HSBLeftPressedFlyby</PressedFlyby>
		</ButtonDrawTemplate>
	</Button>

	<Label item ="HB_CurrentPageLabel">
		<ScreenID>HB_CurrentPageLabel</ScreenID>
		<Font>1</Font>
		<RelativePosition>true</RelativePosition>
		<Location>
			<X>30</X>
			<Y>3</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>false</NoWrap>
		<AlignCenter>true</AlignCenter>
		<AlignRight>false</AlignRight>
	</Label>

	<Button item = "HB_PageRightButton">
		<ScreenID>HB_PageRightButton</ScreenID>
		<Font>1</Font>
		<RelativePosition>true</RelativePosition>
		<Location>
			<X>58</X>
			<Y>3</Y>
		</Location>
		<Size>
			<CX>22</CX>
			<CY>12</CY>
		</Size>
		<Text></Text>
		<TextColor>
			<R>255</R>
			<G>255</G>
			<B>255</B>
		</TextColor>
		<ButtonDrawTemplate>
			<Normal>A_HSBRightNormal</Normal>
			<Pressed>A_HSBRightPressed</Pressed>
			<Flyby>A_HSBRightFlyby</Flyby>
			<Disabled>A_HSBRightDisabled</Disabled>
			<PressedFlyby>A_HSBRightPressedFlyby</PressedFlyby>
		</ButtonDrawTemplate>
	</Button>

	<Button item = "HB_Button1">
		<ScreenID>HB_Button1</ScreenID>
		<Font>1</Font>
		<RelativePosition>true</RelativePosition>
		<Location>
			<X>2</X>
			<Y>20</Y>
		</Location>
		<Size>
			<CX>40</CX>
			<CY>40</CY>
		</Size>
		<Text>1</Text>
		<TextColor>
			<R>0</R>
			<G>0</G>
			<B>0</B>
		</TextColor>
		<DecalSize>
			<CX>40</CX>
			<CY>40</CY>
		</DecalSize>
		<ButtonDrawTemplate>
			<Normal>A_SquareBtnNormal</Normal>
			<PressedFlyby>A_SquareBtnPressedFlyby</PressedFlyby>
			<Pressed>A_SquareBtnPressed</Pressed>
			<Flyby>A_SquareBtnFlyby</Flyby>
			<Disabled>A_SquareBtnDisabled</Disabled>
		</ButtonDrawTemplate>
	</Button>

	<Button item = "HB_Button2">
		<ScreenID>HB_Button2</ScreenID>
		<Font>1</Font>
		<RelativePosition>true</RelativePosition>
		<Location>
			<X>46</X>
			<Y>20</Y>
		</Location>
		<Size>
			<CX>40</CX>
			<CY>40</CY>
		</Size>
		<Text>2</Text>
		<TextColor>
			<R>0</R>
			<G>0</G>
			<B>0</B>
		</TextColor>
		<DecalSize>
			<CX>40</CX>
			<CY>40</CY>
		</DecalSize>
		<ButtonDrawTemplate>
			<Normal>A_SquareBtnNormal</Normal>
			<PressedFlyby>A_SquareBtnPressedFlyby</PressedFlyby>
			<Pressed>A_SquareBtnPressed</Pressed>
			<Flyby>A_SquareBtnFlyby</Flyby>
			<Disabled>A_SquareBtnDisabled</Disabled>
		</ButtonDrawTemplate>
	</Button>

	<Button item = "HB_Button3">
		<ScreenID>HB_Button3</ScreenID>
		<Font>1</Font>
		<RelativePosition>true</RelativePosition>
		<Location>
			<X>2</X>
			<Y>64</Y>
		</Location>
		<Size>
			<CX>40</CX>
			<CY>40</CY>
		</Size>
		<Text>3</Text>
		<TextColor>
			<R>0</R>
			<G>0</G>
			<B>0</B>
		</TextColor>
		<DecalSize>
			<CX>40</CX>
			<CY>40</CY>
		</DecalSize>
		<ButtonDrawTemplate>
			<Normal>A_SquareBtnNormal</Normal>
			<PressedFlyby>A_SquareBtnPressedFlyby</PressedFlyby>
			<Pressed>A_SquareBtnPressed</Pressed>
			<Flyby>A_SquareBtnFlyby</Flyby>
			<Disabled>A_SquareBtnDisabled</Disabled>
		</ButtonDrawTemplate>
	</Button>

	<Button item = "HB_Button4">
		<ScreenID>HB_Button4</ScreenID>
		<Font>1</Font>
		<RelativePosition>true</RelativePosition>
		<Location>
			<X>46</X>
			<Y>64</Y>
		</Location>
		<Size>
			<CX>40</CX>
			<CY>40</CY>
		</Size>
		<Text>4</Text>
		<TextColor>
			<R>0</R>
			<G>0</G>
			<B>0</B>
		</TextColor>
		<DecalSize>
			<CX>40</CX>
			<CY>40</CY>
		</DecalSize>
		<ButtonDrawTemplate>
			<Normal>A_SquareBtnNormal</Normal>
			<PressedFlyby>A_SquareBtnPressedFlyby</PressedFlyby>
			<Pressed>A_SquareBtnPressed</Pressed>
			<Flyby>A_SquareBtnFlyby</Flyby>
			<Disabled>A_SquareBtnDisabled</Disabled>
		</ButtonDrawTemplate>
	</Button>

	<Button item = "HB_Button5">
		<ScreenID>HB_Button5</ScreenID>
		<Font>1</Font>
		<RelativePosition>true</RelativePosition>
		<Location>
			<X>2</X>
			<Y>108</Y>
		</Location>
		<Size>
			<CX>40</CX>
			<CY>40</CY>
		</Size>
		<Text>5</Text>
		<TextColor>
			<R>0</R>
			<G>0</G>
			<B>0</B>
		</TextColor>
		<DecalSize>
			<CX>40</CX>
			<CY>40</CY>
		</DecalSize>
		<ButtonDrawTemplate>
			<Normal>A_SquareBtnNormal</Normal>
			<PressedFlyby>A_SquareBtnPressedFlyby</PressedFlyby>
			<Pressed>A_SquareBtnPressed</Pressed>
			<Flyby>A_SquareBtnFlyby</Flyby>
			<Disabled>A_SquareBtnDisabled</Disabled>
		</ButtonDrawTemplate>
	</Button>

	<Button item = "HB_Button6">
		<ScreenID>HB_Button6</ScreenID>
		<Font>1</Font>
		<RelativePosition>true</RelativePosition>
		<Location>
			<X>46</X>
			<Y>108</Y>
		</Location>
		<Size>
			<CX>40</CX>
			<CY>40</CY>
		</Size>
		<Text>6</Text>
		<TextColor>
			<R>0</R>
			<G>0</G>
			<B>0</B>
		</TextColor>
		<DecalSize>
			<CX>40</CX>
			<CY>40</CY>
		</DecalSize>
		<ButtonDrawTemplate>
			<Normal>A_SquareBtnNormal</Normal>
			<PressedFlyby>A_SquareBtnPressedFlyby</PressedFlyby>
			<Pressed>A_SquareBtnPressed</Pressed>
			<Flyby>A_SquareBtnFlyby</Flyby>
			<Disabled>A_SquareBtnDisabled</Disabled>
		</ButtonDrawTemplate>
	</Button>

	<Button item = "HB_Button7">
		<ScreenID>HB_Button7</ScreenID>
		<Font>1</Font>
		<RelativePosition>true</RelativePosition>
		<Location>
			<X>2</X>
			<Y>152</Y>
		</Location>
		<Size>
			<CX>40</CX>
			<CY>40</CY>
		</Size>
		<Text>7</Text>
		<TextColor>
			<R>0</R>
			<G>0</G>
			<B>0</B>
		</TextColor>
		<DecalSize>
			<CX>40</CX>
			<CY>40</CY>
		</DecalSize>
		<ButtonDrawTemplate>
			<Normal>A_SquareBtnNormal</Normal>
			<PressedFlyby>A_SquareBtnPressedFlyby</PressedFlyby>
			<Pressed>A_SquareBtnPressed</Pressed>
			<Flyby>A_SquareBtnFlyby</Flyby>
			<Disabled>A_SquareBtnDisabled</Disabled>
		</ButtonDrawTemplate>
	</Button>

	<Button item = "HB_Button8">
		<ScreenID>HB_Button8</ScreenID>
		<Font>1</Font>
		<RelativePosition>true</RelativePosition>
		<Location>
			<X>46</X>
			<Y>152</Y>
		</Location>
		<Size>
			<CX>40</CX>
			<CY>40</CY>
		</Size>
		<Text>8</Text>
		<TextColor>
			<R>0</R>
			<G>0</G>
			<B>0</B>
		</TextColor>
		<DecalSize>
			<CX>40</CX>
			<CY>40</CY>
		</DecalSize>
		<ButtonDrawTemplate>
			<Normal>A_SquareBtnNormal</Normal>
			<PressedFlyby>A_SquareBtnPressedFlyby</PressedFlyby>
			<Pressed>A_SquareBtnPressed</Pressed>
			<Flyby>A_SquareBtnFlyby</Flyby>
			<Disabled>A_SquareBtnDisabled</Disabled>
		</ButtonDrawTemplate>
	</Button>

	<Button item = "HB_Button9">
		<ScreenID>HB_Button9</ScreenID>
		<Font>1</Font>
		<RelativePosition>true</RelativePosition>
		<Location>
			<X>2</X>
			<Y>196</Y>
		</Location>
		<Size>
			<CX>40</CX>
			<CY>40</CY>
		</Size>
		<Text>9</Text>
		<TextColor>
			<R>0</R>
			<G>0</G>
			<B>0</B>
		</TextColor>
		<DecalSize>
			<CX>40</CX>
			<CY>40</CY>
		</DecalSize>
		<ButtonDrawTemplate>
			<Normal>A_SquareBtnNormal</Normal>
			<PressedFlyby>A_SquareBtnPressedFlyby</PressedFlyby>
			<Pressed>A_SquareBtnPressed</Pressed>
			<Flyby>A_SquareBtnFlyby</Flyby>
			<Disabled>A_SquareBtnDisabled</Disabled>
		</ButtonDrawTemplate>
	</Button>

	<Button item = "HB_Button10">
		<ScreenID>HB_Button10</ScreenID>
		<Font>1</Font>
		<RelativePosition>true</RelativePosition>
		<Location>
			<X>46</X>
			<Y>196</Y>
		</Location>
		<Size>
			<CX>40</CX>
			<CY>40</CY>
		</Size>
		<Text>10</Text>
		<TextColor>
			<R>0</R>
			<G>0</G>
			<B>0</B>
		</TextColor>
		<DecalSize>
			<CX>40</CX>
			<CY>40</CY>
		</DecalSize>
		<ButtonDrawTemplate>
			<Normal>A_SquareBtnNormal</Normal>
			<PressedFlyby>A_SquareBtnPressedFlyby</PressedFlyby>
			<Pressed>A_SquareBtnPressed</Pressed>
			<Flyby>A_SquareBtnFlyby</Flyby>
			<Disabled>A_SquareBtnDisabled</Disabled>
		</ButtonDrawTemplate>
	</Button>

	<InvSlot item = "HB_InvSlot1">
		<ScreenID>HB_InvSlot1</ScreenID>
		<RelativePosition>true</RelativePosition>
		<Location>
			<X>2</X>
			<Y>20</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>46</X>
			<Y>20</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>2</X>
			<Y>64</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>46</X>
			<Y>64</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>2</X>
			<Y>108</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>46</X>
			<Y>108</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>2</X>
			<Y>152</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>46</X>
			<Y>152</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>2</X>
			<Y>196</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>46</X>
			<Y>196</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>20</Y>
		</Location>
		<Size>
			<CX>40</CX>
			<CY>40</CY>
		</Size>
		<SpellGemDrawTemplate>
			<Holder>HB_SpellGemHolder</Holder>
		</SpellGemDrawTemplate>
		<SpellIconOffsetX>2</SpellIconOffsetX>
		<SpellIconOffsetY>6</SpellIconOffsetY>
	</SpellGem>

	<SpellGem item = "HB_SpellGem2">
		<ScreenID>HB_SpellGem2</ScreenID>
		<RelativePosition>true</RelativePosition>
		<Location>
			<X>46</X>
			<Y>20</Y>
		</Location>
		<Size>
			<CX>40</CX>
			<CY>40</CY>
		</Size>
		<SpellGemDrawTemplate>
			<Holder>HB_SpellGemHolder</Holder>
		</SpellGemDrawTemplate>
		<SpellIconOffsetX>2</SpellIconOffsetX>
		<SpellIconOffsetY>6</SpellIconOffsetY>
	</SpellGem>

	<SpellGem item = "HB_SpellGem3">
		<ScreenID>HB_SpellGem3</ScreenID>
		<RelativePosition>true</RelativePosition>
		<Location>
			<X>2</X>
			<Y>64</Y>
		</Location>
		<Size>
			<CX>40</CX>
			<CY>40</CY>
		</Size>
		<SpellGemDrawTemplate>
			<Holder>HB_SpellGemHolder</Holder>
		</SpellGemDrawTemplate>
		<SpellIconOffsetX>2</SpellIconOffsetX>
		<SpellIconOffsetY>6</SpellIconOffsetY>
	</SpellGem>

	<SpellGem item = "HB_SpellGem4">
		<ScreenID>HB_SpellGem4</ScreenID>
		<RelativePosition>true</RelativePosition>
		<Location>
			<X>46</X>
			<Y>64</Y>
		</Location>
		<Size>
			<CX>40</CX>
			<CY>40</CY>
		</Size>
		<SpellGemDrawTemplate>
			<Holder>HB_SpellGemHolder</Holder>
		</SpellGemDrawTemplate>
		<SpellIconOffsetX>2</SpellIconOffsetX>
		<SpellIconOffsetY>6</SpellIconOffsetY>
	</SpellGem>

	<SpellGem item = "HB_SpellGem5">
		<ScreenID>HB_SpellGem5</ScreenID>
		<RelativePosition>true</RelativePosition>
		<Location>
			<X>2</X>
			<Y>108</Y>
		</Location>
		<Size>
			<CX>40</CX>
			<CY>40</CY>
		</Size>
		<SpellGemDrawTemplate>
			<Holder>HB_SpellGemHolder</Holder>
		</SpellGemDrawTemplate>
		<SpellIconOffsetX>2</SpellIconOffsetX>
		<SpellIconOffsetY>6</SpellIconOffsetY>
	</SpellGem>

	<SpellGem item = "HB_SpellGem6">
		<ScreenID>HB_SpellGem6</ScreenID>
		<RelativePosition>true</RelativePosition>
		<Location>
			<X>46</X>
			<Y>108</Y>
		</Location>
		<Size>
			<CX>40</CX>
			<CY>40</CY>
		</Size>
		<SpellGemDrawTemplate>
			<Holder>HB_SpellGemHolder</Holder>
		</SpellGemDrawTemplate>
		<SpellIconOffsetX>2</SpellIconOffsetX>
		<SpellIconOffsetY>6</SpellIconOffsetY>
	</SpellGem>

	<SpellGem item = "HB_SpellGem7">
		<ScreenID>HB_SpellGem7</ScreenID>
		<RelativePosition>true</RelativePosition>
		<Location>
			<X>2</X>
			<Y>152</Y>
		</Location>
		<Size>
			<CX>40</CX>
			<CY>40</CY>
		</Size>
		<SpellGemDrawTemplate>
			<Holder>HB_SpellGemHolder</Holder>
		</SpellGemDrawTemplate>
		<SpellIconOffsetX>2</SpellIconOffsetX>
		<SpellIconOffsetY>6</SpellIconOffsetY>
	</SpellGem>

	<SpellGem item = "HB_SpellGem8">
		<ScreenID>HB_SpellGem8</ScreenID>
		<RelativePosition>true</RelativePosition>
		<Location>
			<X>46</X>
			<Y>152</Y>
		</Location>
		<Size>
			<CX>40</CX>
			<CY>40</CY>
		</Size>
		<SpellGemDrawTemplate>
			<Holder>HB_SpellGemHolder</Holder>
		</SpellGemDrawTemplate>
		<SpellIconOffsetX>2</SpellIconOffsetX>
		<SpellIconOffsetY>6</SpellIconOffsetY>
	</SpellGem>

	<SpellGem item = "HB_SpellGem9">
		<ScreenID>HB_SpellGem9</ScreenID>
		<RelativePosition>true</RelativePosition>
		<Location>
			<X>2</X>
			<Y>196</Y>
		</Location>
		<Size>
			<CX>40</CX>
			<CY>40</CY>
		</Size>
		<SpellGemDrawTemplate>
			<Holder>HB_SpellGemHolder</Holder>
		</SpellGemDrawTemplate>
		<SpellIconOffsetX>2</SpellIconOffsetX>
		<SpellIconOffsetY>6</SpellIconOffsetY>
	</SpellGem>

	<SpellGem item = "HB_SpellGem10">
		<ScreenID>HB_SpellGem10</ScreenID>
		<RelativePosition>true</RelativePosition>
		<Location>
			<X>46</X>
			<Y>196</Y>
		</Location>
		<Size>
			<CX>40</CX>
			<CY>40</CY>
		</Size>
		<SpellGemDrawTemplate>
			<Holder>HB_SpellGemHolder</Holder>
		</SpellGemDrawTemplate>
		<SpellIconOffsetX>2</SpellIconOffsetX>
		<SpellIconOffsetY>6</SpellIconOffsetY>
	</SpellGem>

	<Button item = "HB_FileButton">
		<ScreenID>HB_FileButton</ScreenID>
	</Button>
	
	<Screen item = "HotButtonWnd">
		<ScreenID/>
		<Font>2</Font>
		<RelativePosition>false</RelativePosition>
		<Location>
			<X>0</X>
			<Y>230</Y>
		</Location>
		<Size>
			<CX>96</CX>
			<CY>260</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>true</Style_Closebox>
		<Style_Minimizebox>false</Style_Minimizebox>
		<Style_Border>true</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_FileButton</Pieces>
	</Screen>

	<Button item ="HB2_PageLeftButton">
		<ScreenID>HB2_PageLeftButton</ScreenID>
		<Font>1</Font>
		<RelativePosition>true</RelativePosition>
		<Location>
			<X>8</X>
			<Y>3</Y>
		</Location>
		<Size>
			<CX>22</CX>
			<CY>12</CY>
		</Size>
		<Text></Text>
		<TextColor>
			<R>255</R>
			<G>255</G>
			<B>255</B>
		</TextColor>
		<ButtonDrawTemplate>
			<Normal>A_HSBLeftNormal</Normal>
			<Pressed>A_HSBLeftPressed</Pressed>
			<Flyby>A_HSBLeftFlyby</Flyby>
			<Disabled>A_HSBLeftDisabled</Disabled>
			<PressedFlyby>A_HSBLeftPressedFlyby</PressedFlyby>
		</ButtonDrawTemplate>
	</Button>

	<Label item ="HB2_CurrentPageLabel">
		<ScreenID>HB2_CurrentPageLabel</ScreenID>
		<Font>1</Font>
		<RelativePosition>true</RelativePosition>
		<Location>
			<X>30</X>
			<Y>3</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>false</NoWrap>
		<AlignCenter>true</AlignCenter>
		<AlignRight>false</AlignRight>
	</Label>

	<Button item ="HB2_PageRightButton">
		<ScreenID>HB2_PageRightButton</ScreenID>
		<Font>1</Font>
		<RelativePosition>true</RelativePosition>
		<Location>
			<X>58</X>
			<Y>3</Y>
		</Location>
		<Size>
			<CX>22</CX>
			<CY>12</CY>
		</Size>
		<Text></Text>
		<TextColor>
			<R>255</R>
			<G>255</G>
			<B>255</B>
		</TextColor>
		<ButtonDrawTemplate>
			<Normal>A_HSBRightNormal</Normal>
			<Pressed>A_HSBRightPressed</Pressed>
			<Flyby>A_HSBRightFlyby</Flyby>
			<Disabled>A_HSBRightDisabled</Disabled>
			<PressedFlyby>A_HSBRightPressedFlyby</PressedFlyby>
		</ButtonDrawTemplate>
	</Button>

	<Button item ="HB2_Button1">
		<ScreenID>HB2_Button1</ScreenID>
		<Font>1</Font>
		<RelativePosition>true</RelativePosition>
		<Location>
			<X>2</X>
			<Y>20</Y>
		</Location>
		<Size>
			<CX>40</CX>
			<CY>40</CY>
		</Size>
		<Text>1</Text>
		<TextColor>
			<R>0</R>
			<G>0</G>
			<B>0</B>
		</TextColor>
		<DecalSize>
			<CX>40</CX>
			<CY>40</CY>
		</DecalSize>
		<ButtonDrawTemplate>
			<Normal>A_SquareBtnNormal</Normal>
			<PressedFlyby>A_SquareBtnPressedFlyby</PressedFlyby>
			<Pressed>A_SquareBtnPressed</Pressed>
			<Flyby>A_SquareBtnFlyby</Flyby>
			<Disabled>A_SquareBtnDisabled</Disabled>
		</ButtonDrawTemplate>
	</Button>

	<Button item ="HB2_Button2">
		<ScreenID>HB2_Button2</ScreenID>
		<Font>1</Font>
		<RelativePosition>true</RelativePosition>
		<Location>
			<X>46</X>
			<Y>20</Y>
		</Location>
		<Size>
			<CX>40</CX>
			<CY>40</CY>
		</Size>
		<Text>2</Text>
		<TextColor>
			<R>0</R>
			<G>0</G>
			<B>0</B>
		</TextColor>
		<DecalSize>
			<CX>40</CX>
			<CY>40</CY>
		</DecalSize>
		<ButtonDrawTemplate>
			<Normal>A_SquareBtnNormal</Normal>
			<PressedFlyby>A_SquareBtnPressedFlyby</PressedFlyby>
			<Pressed>A_SquareBtnPressed</Pressed>
			<Flyby>A_SquareBtnFlyby</Flyby>
			<Disabled>A_SquareBtnDisabled</Disabled>
		</ButtonDrawTemplate>
	</Button>

	<Button item ="HB2_Button3">
		<ScreenID>HB2_Button3</ScreenID>
		<Font>1</Font>
		<RelativePosition>true</RelativePosition>
		<Location>
			<X>2</X>
			<Y>64</Y>
		</Location>
		<Size>
			<CX>40</CX>
			<CY>40</CY>
		</Size>
		<Text>3</Text>
		<TextColor>
			<R>0</R>
			<G>0</G>
			<B>0</B>
		</TextColor>
		<DecalSize>
			<CX>40</CX>
			<CY>40</CY>
		</DecalSize>
		<ButtonDrawTemplate>
			<Normal>A_SquareBtnNormal</Normal>
			<PressedFlyby>A_SquareBtnPressedFlyby</PressedFlyby>
			<Pressed>A_SquareBtnPressed</Pressed>
			<Flyby>A_SquareBtnFlyby</Flyby>
			<Disabled>A_SquareBtnDisabled</Disabled>
		</ButtonDrawTemplate>
	</Button>

	<Button item ="HB2_Button4">
		<ScreenID>HB2_Button4</ScreenID>
		<Font>1</Font>
		<RelativePosition>true</RelativePosition>
		<Location>
			<X>46</X>
			<Y>64</Y>
		</Location>
		<Size>
			<CX>40</CX>
			<CY>40</CY>
		</Size>
		<Text>4</Text>
		<TextColor>
			<R>0</R>
			<G>0</G>
			<B>0</B>
		</TextColor>
		<DecalSize>
			<CX>40</CX>
			<CY>40</CY>
		</DecalSize>
		<ButtonDrawTemplate>
			<Normal>A_SquareBtnNormal</Normal>
			<PressedFlyby>A_SquareBtnPressedFlyby</PressedFlyby>
			<Pressed>A_SquareBtnPressed</Pressed>
			<Flyby>A_SquareBtnFlyby</Flyby>
			<Disabled>A_SquareBtnDisabled</Disabled>
		</ButtonDrawTemplate>
	</Button>

	<Button item ="HB2_Button5">
		<ScreenID>HB2_Button5</ScreenID>
		<Font>1</Font>
		<RelativePosition>true</RelativePosition>
		<Location>
			<X>2</X>
			<Y>108</Y>
		</Location>
		<Size>
			<CX>40</CX>
			<CY>40</CY>
		</Size>
		<Text>5</Text>
		<TextColor>
			<R>0</R>
			<G>0</G>
			<B>0</B>
		</TextColor>
		<DecalSize>
			<CX>40</CX>
			<CY>40</CY>
		</DecalSize>
		<ButtonDrawTemplate>
			<Normal>A_SquareBtnNormal</Normal>
			<PressedFlyby>A_SquareBtnPressedFlyby</PressedFlyby>
			<Pressed>A_SquareBtnPressed</Pressed>
			<Flyby>A_SquareBtnFlyby</Flyby>
			<Disabled>A_SquareBtnDisabled</Disabled>
		</ButtonDrawTemplate>
	</Button>

	<Button item ="HB2_Button6">
		<ScreenID>HB2_Button6</ScreenID>
		<Font>1</Font>
		<RelativePosition>true</RelativePosition>
		<Location>
			<X>46</X>
			<Y>108</Y>
		</Location>
		<Size>
			<CX>40</CX>
			<CY>40</CY>
		</Size>
		<Text>6</Text>
		<TextColor>
			<R>0</R>
			<G>0</G>
			<B>0</B>
		</TextColor>
		<DecalSize>
			<CX>40</CX>
			<CY>40</CY>
		</DecalSize>
		<ButtonDrawTemplate>
			<Normal>A_SquareBtnNormal</Normal>
			<PressedFlyby>A_SquareBtnPressedFlyby</PressedFlyby>
			<Pressed>A_SquareBtnPressed</Pressed>
			<Flyby>A_SquareBtnFlyby</Flyby>
			<Disabled>A_SquareBtnDisabled</Disabled>
		</ButtonDrawTemplate>
	</Button>

	<Button item ="HB2_Button7">
		<ScreenID>HB2_Button7</ScreenID>
		<Font>1</Font>
		<RelativePosition>true</RelativePosition>
		<Location>
			<X>2</X>
			<Y>152</Y>
		</Location>
		<Size>
			<CX>40</CX>
			<CY>40</CY>
		</Size>
		<Text>7</Text>
		<TextColor>
			<R>0</R>
			<G>0</G>
			<B>0</B>
		</TextColor>
		<DecalSize>
			<CX>40</CX>
			<CY>40</CY>
		</DecalSize>
		<ButtonDrawTemplate>
			<Normal>A_SquareBtnNormal</Normal>
			<PressedFlyby>A_SquareBtnPressedFlyby</PressedFlyby>
			<Pressed>A_SquareBtnPressed</Pressed>
			<Flyby>A_SquareBtnFlyby</Flyby>
			<Disabled>A_SquareBtnDisabled</Disabled>
		</ButtonDrawTemplate>
	</Button>

	<Button item ="HB2_Button8">
		<ScreenID>HB2_Button8</ScreenID>
		<Font>1</Font>
		<RelativePosition>true</RelativePosition>
		<Location>
			<X>46</X>
			<Y>152</Y>
		</Location>
		<Size>
			<CX>40</CX>
			<CY>40</CY>
		</Size>
		<Text>8</Text>
		<TextColor>
			<R>0</R>
			<G>0</G>
			<B>0</B>
		</TextColor>
		<DecalSize>
			<CX>40</CX>
			<CY>40</CY>
		</DecalSize>
		<ButtonDrawTemplate>
			<Normal>A_SquareBtnNormal</Normal>
			<PressedFlyby>A_SquareBtnPressedFlyby</PressedFlyby>
			<Pressed>A_SquareBtnPressed</Pressed>
			<Flyby>A_SquareBtnFlyby</Flyby>
			<Disabled>A_SquareBtnDisabled</Disabled>
		</ButtonDrawTemplate>
	</Button>

	<Button item ="HB2_Button9">
		<ScreenID>HB2_Button9</ScreenID>
		<Font>1</Font>
		<RelativePosition>true</RelativePosition>
		<Location>
			<X>2</X>
			<Y>196</Y>
		</Location>
		<Size>
			<CX>40</CX>
			<CY>40</CY>
		</Size>
		<Text>9</Text>
		<TextColor>
			<R>0</R>
			<G>0</G>
			<B>0</B>
		</TextColor>
		<DecalSize>
			<CX>40</CX>
			<CY>40</CY>
		</DecalSize>
		<ButtonDrawTemplate>
			<Normal>A_SquareBtnNormal</Normal>
			<PressedFlyby>A_SquareBtnPressedFlyby</PressedFlyby>
			<Pressed>A_SquareBtnPressed</Pressed>
			<Flyby>A_SquareBtnFlyby</Flyby>
			<Disabled>A_SquareBtnDisabled</Disabled>
		</ButtonDrawTemplate>
	</Button>

	<Button item ="HB2_Button10">
		<ScreenID>HB2_Button10</ScreenID>
		<Font>1</Font>
		<RelativePosition>true</RelativePosition>
		<Location>
			<X>46</X>
			<Y>196</Y>
		</Location>
		<Size>
			<CX>40</CX>
			<CY>40</CY>
		</Size>
		<Text>10</Text>
		<TextColor>
			<R>0</R>
			<G>0</G>
			<B>0</B>
		</TextColor>
		<DecalSize>
			<CX>40</CX>
			<CY>40</CY>
		</DecalSize>
		<ButtonDrawTemplate>
			<Normal>A_SquareBtnNormal</Normal>
			<PressedFlyby>A_SquareBtnPressedFlyby</PressedFlyby>
			<Pressed>A_SquareBtnPressed</Pressed>
			<Flyby>A_SquareBtnFlyby</Flyby>
			<Disabled>A_SquareBtnDisabled</Disabled>
		</ButtonDrawTemplate>
	</Button>
	
	<InvSlot item ="HB2_InvSlot1">
		<ScreenID>HB2_InvSlot1</ScreenID>
		<RelativePosition>true</RelativePosition>
		<Location>
			<X>2</X>
			<Y>20</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 ="HB2_InvSlot2">
		<ScreenID>HB2_InvSlot2</ScreenID>
		<RelativePosition>true</RelativePosition>
		<Location>
			<X>46</X>
			<Y>20</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 ="HB2_InvSlot3">
		<ScreenID>HB2_InvSlot3</ScreenID>
		<RelativePosition>true</RelativePosition>
		<Location>
			<X>2</X>
			<Y>64</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 ="HB2_InvSlot4">
		<ScreenID>HB2_InvSlot4</ScreenID>
		<RelativePosition>true</RelativePosition>
		<Location>
			<X>46</X>
			<Y>64</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 ="HB2_InvSlot5">
		<ScreenID>HB2_InvSlot5</ScreenID>
		<RelativePosition>true</RelativePosition>
		<Location>
			<X>2</X>
			<Y>108</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 ="HB2_InvSlot6">
		<ScreenID>HB2_InvSlot6</ScreenID>
		<RelativePosition>true</RelativePosition>
		<Location>
			<X>46</X>
			<Y>108</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 ="HB2_InvSlot7">
		<ScreenID>HB2_InvSlot7</ScreenID>
		<RelativePosition>true</RelativePosition>
		<Location>
			<X>2</X>
			<Y>152</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 ="HB2_InvSlot8">
		<ScreenID>HB2_InvSlot8</ScreenID>
		<RelativePosition>true</RelativePosition>
		<Location>
			<X>46</X>
			<Y>152</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 ="HB2_InvSlot9">
		<ScreenID>HB2_InvSlot9</ScreenID>
		<RelativePosition>true</RelativePosition>
		<Location>
			<X>2</X>
			<Y>196</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 ="HB2_InvSlot10">
		<ScreenID>HB2_InvSlot10</ScreenID>
		<RelativePosition>true</RelativePosition>
		<Location>
			<X>46</X>
			<Y>196</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 ="HB2_SpellGem1">
		<ScreenID>HB2_SpellGem1</ScreenID>
		<RelativePosition>true</RelativePosition>
		<Location>
			<X>2</X>
			<Y>20</Y>
		</Location>
		<Size>
			<CX>40</CX>
			<CY>40</CY>
		</Size>
		<SpellGemDrawTemplate>
			<Holder>HB_SpellGemHolder</Holder>
		</SpellGemDrawTemplate>
		<SpellIconOffsetX>2</SpellIconOffsetX>
		<SpellIconOffsetY>6</SpellIconOffsetY>
	</SpellGem>

	<SpellGem item ="HB2_SpellGem2">
		<ScreenID>HB2_SpellGem2</ScreenID>
		<RelativePosition>true</RelativePosition>
		<Location>
			<X>46</X>
			<Y>20</Y>
		</Location>
		<Size>
			<CX>40</CX>
			<CY>40</CY>
		</Size>
		<SpellGemDrawTemplate>
			<Holder>HB_SpellGemHolder</Holder>
		</SpellGemDrawTemplate>
		<SpellIconOffsetX>2</SpellIconOffsetX>
		<SpellIconOffsetY>6</SpellIconOffsetY>
	</SpellGem>

	<SpellGem item ="HB2_SpellGem3">
		<ScreenID>HB2_SpellGem3</ScreenID>
		<RelativePosition>true</RelativePosition>
		<Location>
			<X>2</X>
			<Y>64</Y>
		</Location>
		<Size>
			<CX>40</CX>
			<CY>40</CY>
		</Size>
		<SpellGemDrawTemplate>
			<Holder>HB_SpellGemHolder</Holder>
		</SpellGemDrawTemplate>
		<SpellIconOffsetX>2</SpellIconOffsetX>
		<SpellIconOffsetY>6</SpellIconOffsetY>
	</SpellGem>

	<SpellGem item ="HB2_SpellGem4">
		<ScreenID>HB2_SpellGem4</ScreenID>
		<RelativePosition>true</RelativePosition>
		<Location>
			<X>46</X>
			<Y>64</Y>
		</Location>
		<Size>
			<CX>40</CX>
			<CY>40</CY>
		</Size>
		<SpellGemDrawTemplate>
			<Holder>HB_SpellGemHolder</Holder>
		</SpellGemDrawTemplate>
		<SpellIconOffsetX>2</SpellIconOffsetX>
		<SpellIconOffsetY>6</SpellIconOffsetY>
	</SpellGem>

	<SpellGem item ="HB2_SpellGem5">
		<ScreenID>HB2_SpellGem5</ScreenID>
		<RelativePosition>true</RelativePosition>
		<Location>
			<X>2</X>
			<Y>108</Y>
		</Location>
		<Size>
			<CX>40</CX>
			<CY>40</CY>
		</Size>
		<SpellGemDrawTemplate>
			<Holder>HB_SpellGemHolder</Holder>
		</SpellGemDrawTemplate>
		<SpellIconOffsetX>2</SpellIconOffsetX>
		<SpellIconOffsetY>6</SpellIconOffsetY>
	</SpellGem>

	<SpellGem item ="HB2_SpellGem6">
		<ScreenID>HB2_SpellGem6</ScreenID>
		<RelativePosition>true</RelativePosition>
		<Location>
			<X>46</X>
			<Y>108</Y>
		</Location>
		<Size>
			<CX>40</CX>
			<CY>40</CY>
		</Size>
		<SpellGemDrawTemplate>
			<Holder>HB_SpellGemHolder</Holder>
		</SpellGemDrawTemplate>
		<SpellIconOffsetX>2</SpellIconOffsetX>
		<SpellIconOffsetY>6</SpellIconOffsetY>
	</SpellGem>

	<SpellGem item ="HB2_SpellGem7">
		<ScreenID>HB2_SpellGem7</ScreenID>
		<RelativePosition>true</RelativePosition>
		<Location>
			<X>2</X>
			<Y>152</Y>
		</Location>
		<Size>
			<CX>40</CX>
			<CY>40</CY>
		</Size>
		<SpellGemDrawTemplate>
			<Holder>HB_SpellGemHolder</Holder>
		</SpellGemDrawTemplate>
		<SpellIconOffsetX>2</SpellIconOffsetX>
		<SpellIconOffsetY>6</SpellIconOffsetY>
	</SpellGem>

	<SpellGem item ="HB2_SpellGem8">
		<ScreenID>HB2_SpellGem8</ScreenID>
		<RelativePosition>true</RelativePosition>
		<Location>
			<X>46</X>
			<Y>152</Y>
		</Location>
		<Size>
			<CX>40</CX>
			<CY>40</CY>
		</Size>
		<SpellGemDrawTemplate>
			<Holder>HB_SpellGemHolder</Holder>
		</SpellGemDrawTemplate>
		<SpellIconOffsetX>2</SpellIconOffsetX>
		<SpellIconOffsetY>6</SpellIconOffsetY>
	</SpellGem>

	<SpellGem item ="HB2_SpellGem9">
		<ScreenID>HB2_SpellGem9</ScreenID>
		<RelativePosition>true</RelativePosition>
		<Location>
			<X>2</X>
			<Y>196</Y>
		</Location>
		<Size>
			<CX>40</CX>
			<CY>40</CY>
		</Size>
		<SpellGemDrawTemplate>
			<Holder>HB_SpellGemHolder</Holder>
		</SpellGemDrawTemplate>
		<SpellIconOffsetX>2</SpellIconOffsetX>
		<SpellIconOffsetY>6</SpellIconOffsetY>
	</SpellGem>

	<SpellGem item ="HB2_SpellGem10">
		<ScreenID>HB2_SpellGem10</ScreenID>
		<RelativePosition>true</RelativePosition>
		<Location>
			<X>46</X>
			<Y>196</Y>
		</Location>
		<Size>
			<CX>40</CX>
			<CY>40</CY>
		</Size>
		<SpellGemDrawTemplate>
			<Holder>HB_SpellGemHolder</Holder>
		</SpellGemDrawTemplate>
		<SpellIconOffsetX>2</SpellIconOffsetX>
		<SpellIconOffsetY>6</SpellIconOffsetY>
	</SpellGem>	
	
	<Button item = "HB2_FileButton">
		<ScreenID>HB2_FileButton</ScreenID>
	</Button>


	<Screen item ="HotButtonWnd2">
		<ScreenID/>
		<Font>2</Font>
		<RelativePosition>false</RelativePosition>
		<Location>
			<X>0</X>
			<Y>230</Y>
		</Location>
		<Size>
			<CX>96</CX>
			<CY>260</CY>
		</Size>
		<Text>Hot Buttons 2</Text>
		<Style_VScroll>false</Style_VScroll>
		<Style_HScroll>false</Style_HScroll>
		<Style_Transparent>false</Style_Transparent>
		<TooltipReference>Hot Buttons 2</TooltipReference>
		<DrawTemplate>WDT_RoundedNoTitle</DrawTemplate>
		<Style_Titlebar>false</Style_Titlebar>
		<Style_Closebox>true</Style_Closebox>
		<Style_Minimizebox>false</Style_Minimizebox>
		<Style_Border>true</Style_Border>
		<Style_Sizable>false</Style_Sizable>
		<Pieces>HB2_PageLeftButton</Pieces>
		<Pieces>HB2_PageRightButton</Pieces>
		<Pieces>HB2_CurrentPageLabel</Pieces>
		<Pieces>HB2_Button1</Pieces>
		<Pieces>HB2_Button2</Pieces>
		<Pieces>HB2_Button3</Pieces>
		<Pieces>HB2_Button4</Pieces>
		<Pieces>HB2_Button5</Pieces>
		<Pieces>HB2_Button6</Pieces>
		<Pieces>HB2_Button7</Pieces>
		<Pieces>HB2_Button8</Pieces>
		<Pieces>HB2_Button9</Pieces>
		<Pieces>HB2_Button10</Pieces>
		<Pieces>HB2_InvSlot1</Pieces>
		<Pieces>HB2_InvSlot2</Pieces>
		<Pieces>HB2_InvSlot3</Pieces>
		<Pieces>HB2_InvSlot4</Pieces>
		<Pieces>HB2_InvSlot5</Pieces>
		<Pieces>HB2_InvSlot6</Pieces>
		<Pieces>HB2_InvSlot7</Pieces>
		<Pieces>HB2_InvSlot8</Pieces>
		<Pieces>HB2_InvSlot9</Pieces>
		<Pieces>HB2_InvSlot10</Pieces>
		<Pieces>HB2_SpellGem1</Pieces>
		<Pieces>HB2_SpellGem2</Pieces>
		<Pieces>HB2_SpellGem3</Pieces>
		<Pieces>HB2_SpellGem4</Pieces>
		<Pieces>HB2_SpellGem5</Pieces>
		<Pieces>HB2_SpellGem6</Pieces>
		<Pieces>HB2_SpellGem7</Pieces>
		<Pieces>HB2_SpellGem8</Pieces>
		<Pieces>HB2_SpellGem9</Pieces>
		<Pieces>HB2_SpellGem10</Pieces>
		<Pieces>HB2_FileButton</Pieces>
	</Screen>	
	
	<Button item ="HB3_PageLeftButton">
		<ScreenID>HB3_PageLeftButton</ScreenID>
		<Font>1</Font>
		<RelativePosition>true</RelativePosition>
		<Location>
			<X>8</X>
			<Y>3</Y>
		</Location>
		<Size>
			<CX>22</CX>
			<CY>12</CY>
		</Size>
		<Text></Text>
		<TextColor>
			<R>255</R>
			<G>255</G>
			<B>255</B>
		</TextColor>
		<ButtonDrawTemplate>
			<Normal>A_HSBLeftNormal</Normal>
			<Pressed>A_HSBLeftPressed</Pressed>
			<Flyby>A_HSBLeftFlyby</Flyby>
			<Disabled>A_HSBLeftDisabled</Disabled>
			<PressedFlyby>A_HSBLeftPressedFlyby</PressedFlyby>
		</ButtonDrawTemplate>
	</Button>

	<Label item ="HB3_CurrentPageLabel">
		<ScreenID>HB3_CurrentPageLabel</ScreenID>
		<Font>1</Font>
		<RelativePosition>true</RelativePosition>
		<Location>
			<X>30</X>
			<Y>3</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>false</NoWrap>
		<AlignCenter>true</AlignCenter>
		<AlignRight>false</AlignRight>
	</Label>

	<Button item ="HB3_PageRightButton">
		<ScreenID>HB3_PageRightButton</ScreenID>
		<Font>1</Font>
		<RelativePosition>true</RelativePosition>
		<Location>
			<X>58</X>
			<Y>3</Y>
		</Location>
		<Size>
			<CX>22</CX>
			<CY>12</CY>
		</Size>
		<Text></Text>
		<TextColor>
			<R>255</R>
			<G>255</G>
			<B>255</B>
		</TextColor>
		<ButtonDrawTemplate>
			<Normal>A_HSBRightNormal</Normal>
			<Pressed>A_HSBRightPressed</Pressed>
			<Flyby>A_HSBRightFlyby</Flyby>
			<Disabled>A_HSBRightDisabled</Disabled>
			<PressedFlyby>A_HSBRightPressedFlyby</PressedFlyby>
		</ButtonDrawTemplate>
	</Button>

	<Button item ="HB3_Button1">
		<ScreenID>HB3_Button1</ScreenID>
		<Font>1</Font>
		<RelativePosition>true</RelativePosition>
		<Location>
			<X>2</X>
			<Y>20</Y>
		</Location>
		<Size>
			<CX>40</CX>
			<CY>40</CY>
		</Size>
		<Text>1</Text>
		<TextColor>
			<R>0</R>
			<G>0</G>
			<B>0</B>
		</TextColor>
		<DecalSize>
			<CX>40</CX>
			<CY>40</CY>
		</DecalSize>
		<ButtonDrawTemplate>
			<Normal>A_SquareBtnNormal</Normal>
			<PressedFlyby>A_SquareBtnPressedFlyby</PressedFlyby>
			<Pressed>A_SquareBtnPressed</Pressed>
			<Flyby>A_SquareBtnFlyby</Flyby>
			<Disabled>A_SquareBtnDisabled</Disabled>
		</ButtonDrawTemplate>
	</Button>

	<Button item ="HB3_Button2">
		<ScreenID>HB3_Button2</ScreenID>
		<Font>1</Font>
		<RelativePosition>true</RelativePosition>
		<Location>
			<X>46</X>
			<Y>20</Y>
		</Location>
		<Size>
			<CX>40</CX>
			<CY>40</CY>
		</Size>
		<Text>2</Text>
		<TextColor>
			<R>0</R>
			<G>0</G>
			<B>0</B>
		</TextColor>
		<DecalSize>
			<CX>40</CX>
			<CY>40</CY>
		</DecalSize>
		<ButtonDrawTemplate>
			<Normal>A_SquareBtnNormal</Normal>
			<PressedFlyby>A_SquareBtnPressedFlyby</PressedFlyby>
			<Pressed>A_SquareBtnPressed</Pressed>
			<Flyby>A_SquareBtnFlyby</Flyby>
			<Disabled>A_SquareBtnDisabled</Disabled>
		</ButtonDrawTemplate>
	</Button>

	<Button item ="HB3_Button3">
		<ScreenID>HB3_Button3</ScreenID>
		<Font>1</Font>
		<RelativePosition>true</RelativePosition>
		<Location>
			<X>2</X>
			<Y>64</Y>
		</Location>
		<Size>
			<CX>40</CX>
			<CY>40</CY>
		</Size>
		<Text>3</Text>
		<TextColor>
			<R>0</R>
			<G>0</G>
			<B>0</B>
		</TextColor>
		<DecalSize>
			<CX>40</CX>
			<CY>40</CY>
		</DecalSize>
		<ButtonDrawTemplate>
			<Normal>A_SquareBtnNormal</Normal>
			<PressedFlyby>A_SquareBtnPressedFlyby</PressedFlyby>
			<Pressed>A_SquareBtnPressed</Pressed>
			<Flyby>A_SquareBtnFlyby</Flyby>
			<Disabled>A_SquareBtnDisabled</Disabled>
		</ButtonDrawTemplate>
	</Button>

	<Button item ="HB3_Button4">
		<ScreenID>HB3_Button4</ScreenID>
		<Font>1</Font>
		<RelativePosition>true</RelativePosition>
		<Location>
			<X>46</X>
			<Y>64</Y>
		</Location>
		<Size>
			<CX>40</CX>
			<CY>40</CY>
		</Size>
		<Text>4</Text>
		<TextColor>
			<R>0</R>
			<G>0</G>
			<B>0</B>
		</TextColor>
		<DecalSize>
			<CX>40</CX>
			<CY>40</CY>
		</DecalSize>
		<ButtonDrawTemplate>
			<Normal>A_SquareBtnNormal</Normal>
			<PressedFlyby>A_SquareBtnPressedFlyby</PressedFlyby>
			<Pressed>A_SquareBtnPressed</Pressed>
			<Flyby>A_SquareBtnFlyby</Flyby>
			<Disabled>A_SquareBtnDisabled</Disabled>
		</ButtonDrawTemplate>
	</Button>

	<Button item ="HB3_Button5">
		<ScreenID>HB3_Button5</ScreenID>
		<Font>1</Font>
		<RelativePosition>true</RelativePosition>
		<Location>
			<X>2</X>
			<Y>108</Y>
		</Location>
		<Size>
			<CX>40</CX>
			<CY>40</CY>
		</Size>
		<Text>5</Text>
		<TextColor>
			<R>0</R>
			<G>0</G>
			<B>0</B>
		</TextColor>
		<DecalSize>
			<CX>40</CX>
			<CY>40</CY>
		</DecalSize>
		<ButtonDrawTemplate>
			<Normal>A_SquareBtnNormal</Normal>
			<PressedFlyby>A_SquareBtnPressedFlyby</PressedFlyby>
			<Pressed>A_SquareBtnPressed</Pressed>
			<Flyby>A_SquareBtnFlyby</Flyby>
			<Disabled>A_SquareBtnDisabled</Disabled>
		</ButtonDrawTemplate>
	</Button>

	<Button item ="HB3_Button6">
		<ScreenID>HB3_Button6</ScreenID>
		<Font>1</Font>
		<RelativePosition>true</RelativePosition>
		<Location>
			<X>46</X>
			<Y>108</Y>
		</Location>
		<Size>
			<CX>40</CX>
			<CY>40</CY>
		</Size>
		<Text>6</Text>
		<TextColor>
			<R>0</R>
			<G>0</G>
			<B>0</B>
		</TextColor>
		<DecalSize>
			<CX>40</CX>
			<CY>40</CY>
		</DecalSize>
		<ButtonDrawTemplate>
			<Normal>A_SquareBtnNormal</Normal>
			<PressedFlyby>A_SquareBtnPressedFlyby</PressedFlyby>
			<Pressed>A_SquareBtnPressed</Pressed>
			<Flyby>A_SquareBtnFlyby</Flyby>
			<Disabled>A_SquareBtnDisabled</Disabled>
		</ButtonDrawTemplate>
	</Button>

	<Button item ="HB3_Button7">
		<ScreenID>HB3_Button7</ScreenID>
		<Font>1</Font>
		<RelativePosition>true</RelativePosition>
		<Location>
			<X>2</X>
			<Y>152</Y>
		</Location>
		<Size>
			<CX>40</CX>
			<CY>40</CY>
		</Size>
		<Text>7</Text>
		<TextColor>
			<R>0</R>
			<G>0</G>
			<B>0</B>
		</TextColor>
		<DecalSize>
			<CX>40</CX>
			<CY>40</CY>
		</DecalSize>
		<ButtonDrawTemplate>
			<Normal>A_SquareBtnNormal</Normal>
			<PressedFlyby>A_SquareBtnPressedFlyby</PressedFlyby>
			<Pressed>A_SquareBtnPressed</Pressed>
			<Flyby>A_SquareBtnFlyby</Flyby>
			<Disabled>A_SquareBtnDisabled</Disabled>
		</ButtonDrawTemplate>
	</Button>

	<Button item ="HB3_Button8">
		<ScreenID>HB3_Button8</ScreenID>
		<Font>1</Font>
		<RelativePosition>true</RelativePosition>
		<Location>
			<X>46</X>
			<Y>152</Y>
		</Location>
		<Size>
			<CX>40</CX>
			<CY>40</CY>
		</Size>
		<Text>8</Text>
		<TextColor>
			<R>0</R>
			<G>0</G>
			<B>0</B>
		</TextColor>
		<DecalSize>
			<CX>40</CX>
			<CY>40</CY>
		</DecalSize>
		<ButtonDrawTemplate>
			<Normal>A_SquareBtnNormal</Normal>
			<PressedFlyby>A_SquareBtnPressedFlyby</PressedFlyby>
			<Pressed>A_SquareBtnPressed</Pressed>
			<Flyby>A_SquareBtnFlyby</Flyby>
			<Disabled>A_SquareBtnDisabled</Disabled>
		</ButtonDrawTemplate>
	</Button>

	<Button item ="HB3_Button9">
		<ScreenID>HB3_Button9</ScreenID>
		<Font>1</Font>
		<RelativePosition>true</RelativePosition>
		<Location>
			<X>2</X>
			<Y>196</Y>
		</Location>
		<Size>
			<CX>40</CX>
			<CY>40</CY>
		</Size>
		<Text>9</Text>
		<TextColor>
			<R>0</R>
			<G>0</G>
			<B>0</B>
		</TextColor>
		<DecalSize>
			<CX>40</CX>
			<CY>40</CY>
		</DecalSize>
		<ButtonDrawTemplate>
			<Normal>A_SquareBtnNormal</Normal>
			<PressedFlyby>A_SquareBtnPressedFlyby</PressedFlyby>
			<Pressed>A_SquareBtnPressed</Pressed>
			<Flyby>A_SquareBtnFlyby</Flyby>
			<Disabled>A_SquareBtnDisabled</Disabled>
		</ButtonDrawTemplate>
	</Button>

	<Button item ="HB3_Button10">
		<ScreenID>HB3_Button10</ScreenID>
		<Font>1</Font>
		<RelativePosition>true</RelativePosition>
		<Location>
			<X>46</X>
			<Y>196</Y>
		</Location>
		<Size>
			<CX>40</CX>
			<CY>40</CY>
		</Size>
		<Text>10</Text>
		<TextColor>
			<R>0</R>
			<G>0</G>
			<B>0</B>
		</TextColor>
		<DecalSize>
			<CX>40</CX>
			<CY>40</CY>
		</DecalSize>
		<ButtonDrawTemplate>
			<Normal>A_SquareBtnNormal</Normal>
			<PressedFlyby>A_SquareBtnPressedFlyby</PressedFlyby>
			<Pressed>A_SquareBtnPressed</Pressed>
			<Flyby>A_SquareBtnFlyby</Flyby>
			<Disabled>A_SquareBtnDisabled</Disabled>
		</ButtonDrawTemplate>
	</Button>
	
	<InvSlot item ="HB3_InvSlot1">
		<ScreenID>HB3_InvSlot1</ScreenID>
		<RelativePosition>true</RelativePosition>
		<Location>
			<X>2</X>
			<Y>20</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 ="HB3_InvSlot2">
		<ScreenID>HB3_InvSlot2</ScreenID>
		<RelativePosition>true</RelativePosition>
		<Location>
			<X>46</X>
			<Y>20</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 ="HB3_InvSlot3">
		<ScreenID>HB3_InvSlot3</ScreenID>
		<RelativePosition>true</RelativePosition>
		<Location>
			<X>2</X>
			<Y>64</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 ="HB3_InvSlot4">
		<ScreenID>HB3_InvSlot4</ScreenID>
		<RelativePosition>true</RelativePosition>
		<Location>
			<X>46</X>
			<Y>64</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 ="HB3_InvSlot5">
		<ScreenID>HB3_InvSlot5</ScreenID>
		<RelativePosition>true</RelativePosition>
		<Location>
			<X>2</X>
			<Y>108</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 ="HB3_InvSlot6">
		<ScreenID>HB3_InvSlot6</ScreenID>
		<RelativePosition>true</RelativePosition>
		<Location>
			<X>46</X>
			<Y>108</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 ="HB3_InvSlot7">
		<ScreenID>HB3_InvSlot7</ScreenID>
		<RelativePosition>true</RelativePosition>
		<Location>
			<X>2</X>
			<Y>152</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 ="HB3_InvSlot8">
		<ScreenID>HB3_InvSlot8</ScreenID>
		<RelativePosition>true</RelativePosition>
		<Location>
			<X>46</X>
			<Y>152</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 ="HB3_InvSlot9">
		<ScreenID>HB3_InvSlot9</ScreenID>
		<RelativePosition>true</RelativePosition>
		<Location>
			<X>2</X>
			<Y>196</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 ="HB3_InvSlot10">
		<ScreenID>HB3_InvSlot10</ScreenID>
		<RelativePosition>true</RelativePosition>
		<Location>
			<X>46</X>
			<Y>196</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 ="HB3_SpellGem1">
		<ScreenID>HB3_SpellGem1</ScreenID>
		<RelativePosition>true</RelativePosition>
		<Location>
			<X>2</X>
			<Y>20</Y>
		</Location>
		<Size>
			<CX>40</CX>
			<CY>40</CY>
		</Size>
		<SpellGemDrawTemplate>
			<Holder>HB_SpellGemHolder</Holder>
		</SpellGemDrawTemplate>
		<SpellIconOffsetX>2</SpellIconOffsetX>
		<SpellIconOffsetY>6</SpellIconOffsetY>
	</SpellGem>

	<SpellGem item ="HB3_SpellGem2">
		<ScreenID>HB3_SpellGem2</ScreenID>
		<RelativePosition>true</RelativePosition>
		<Location>
			<X>46</X>
			<Y>20</Y>
		</Location>
		<Size>
			<CX>40</CX>
			<CY>40</CY>
		</Size>
		<SpellGemDrawTemplate>
			<Holder>HB_SpellGemHolder</Holder>
		</SpellGemDrawTemplate>
		<SpellIconOffsetX>2</SpellIconOffsetX>
		<SpellIconOffsetY>6</SpellIconOffsetY>
	</SpellGem>

	<SpellGem item ="HB3_SpellGem3">
		<ScreenID>HB3_SpellGem3</ScreenID>
		<RelativePosition>true</RelativePosition>
		<Location>
			<X>2</X>
			<Y>64</Y>
		</Location>
		<Size>
			<CX>40</CX>
			<CY>40</CY>
		</Size>
		<SpellGemDrawTemplate>
			<Holder>HB_SpellGemHolder</Holder>
		</SpellGemDrawTemplate>
		<SpellIconOffsetX>2</SpellIconOffsetX>
		<SpellIconOffsetY>6</SpellIconOffsetY>
	</SpellGem>

	<SpellGem item ="HB3_SpellGem4">
		<ScreenID>HB3_SpellGem4</ScreenID>
		<RelativePosition>true</RelativePosition>
		<Location>
			<X>46</X>
			<Y>64</Y>
		</Location>
		<Size>
			<CX>40</CX>
			<CY>40</CY>
		</Size>
		<SpellGemDrawTemplate>
			<Holder>HB_SpellGemHolder</Holder>
		</SpellGemDrawTemplate>
		<SpellIconOffsetX>2</SpellIconOffsetX>
		<SpellIconOffsetY>6</SpellIconOffsetY>
	</SpellGem>

	<SpellGem item ="HB3_SpellGem5">
		<ScreenID>HB3_SpellGem5</ScreenID>
		<RelativePosition>true</RelativePosition>
		<Location>
			<X>2</X>
			<Y>108</Y>
		</Location>
		<Size>
			<CX>40</CX>
			<CY>40</CY>
		</Size>
		<SpellGemDrawTemplate>
			<Holder>HB_SpellGemHolder</Holder>
		</SpellGemDrawTemplate>
		<SpellIconOffsetX>2</SpellIconOffsetX>
		<SpellIconOffsetY>6</SpellIconOffsetY>
	</SpellGem>

	<SpellGem item ="HB3_SpellGem6">
		<ScreenID>HB3_SpellGem6</ScreenID>
		<RelativePosition>true</RelativePosition>
		<Location>
			<X>46</X>
			<Y>108</Y>
		</Location>
		<Size>
			<CX>40</CX>
			<CY>40</CY>
		</Size>
		<SpellGemDrawTemplate>
			<Holder>HB_SpellGemHolder</Holder>
		</SpellGemDrawTemplate>
		<SpellIconOffsetX>2</SpellIconOffsetX>
		<SpellIconOffsetY>6</SpellIconOffsetY>
	</SpellGem>

	<SpellGem item ="HB3_SpellGem7">
		<ScreenID>HB3_SpellGem7</ScreenID>
		<RelativePosition>true</RelativePosition>
		<Location>
			<X>2</X>
			<Y>152</Y>
		</Location>
		<Size>
			<CX>40</CX>
			<CY>40</CY>
		</Size>
		<SpellGemDrawTemplate>
			<Holder>HB_SpellGemHolder</Holder>
		</SpellGemDrawTemplate>
		<SpellIconOffsetX>2</SpellIconOffsetX>
		<SpellIconOffsetY>6</SpellIconOffsetY>
	</SpellGem>

	<SpellGem item ="HB3_SpellGem8">
		<ScreenID>HB3_SpellGem8</ScreenID>
		<RelativePosition>true</RelativePosition>
		<Location>
			<X>46</X>
			<Y>152</Y>
		</Location>
		<Size>
			<CX>40</CX>
			<CY>40</CY>
		</Size>
		<SpellGemDrawTemplate>
			<Holder>HB_SpellGemHolder</Holder>
		</SpellGemDrawTemplate>
		<SpellIconOffsetX>2</SpellIconOffsetX>
		<SpellIconOffsetY>6</SpellIconOffsetY>
	</SpellGem>

	<SpellGem item ="HB3_SpellGem9">
		<ScreenID>HB3_SpellGem9</ScreenID>
		<RelativePosition>true</RelativePosition>
		<Location>
			<X>2</X>
			<Y>196</Y>
		</Location>
		<Size>
			<CX>40</CX>
			<CY>40</CY>
		</Size>
		<SpellGemDrawTemplate>
			<Holder>HB_SpellGemHolder</Holder>
		</SpellGemDrawTemplate>
		<SpellIconOffsetX>2</SpellIconOffsetX>
		<SpellIconOffsetY>6</SpellIconOffsetY>
	</SpellGem>

	<SpellGem item ="HB3_SpellGem10">
		<ScreenID>HB3_SpellGem10</ScreenID>
		<RelativePosition>true</RelativePosition>
		<Location>
			<X>46</X>
			<Y>196</Y>
		</Location>
		<Size>
			<CX>40</CX>
			<CY>40</CY>
		</Size>
		<SpellGemDrawTemplate>
			<Holder>HB_SpellGemHolder</Holder>
		</SpellGemDrawTemplate>
		<SpellIconOffsetX>2</SpellIconOffsetX>
		<SpellIconOffsetY>6</SpellIconOffsetY>
	</SpellGem>	
	
	<Button item = "HB3_FileButton">
		<ScreenID>HB3_FileButton</ScreenID>
	</Button>


	<Screen item ="HotButtonWnd3">
		<ScreenID/>
		<Font>2</Font>
		<RelativePosition>false</RelativePosition>
		<Location>
			<X>0</X>
			<Y>230</Y>
		</Location>
		<Size>
			<CX>96</CX>
			<CY>260</CY>
		</Size>
		<Text>Hot Buttons 3</Text>
		<Style_VScroll>false</Style_VScroll>
		<Style_HScroll>false</Style_HScroll>
		<Style_Transparent>false</Style_Transparent>
		<TooltipReference>Hot Buttons 3</TooltipReference>
		<DrawTemplate>WDT_RoundedNoTitle</DrawTemplate>
		<Style_Titlebar>false</Style_Titlebar>
		<Style_Closebox>true</Style_Closebox>
		<Style_Minimizebox>false</Style_Minimizebox>
		<Style_Border>true</Style_Border>
		<Style_Sizable>false</Style_Sizable>
		<Pieces>HB3_PageLeftButton</Pieces>
		<Pieces>HB3_PageRightButton</Pieces>
		<Pieces>HB3_CurrentPageLabel</Pieces>
		<Pieces>HB3_Button1</Pieces>
		<Pieces>HB3_Button2</Pieces>
		<Pieces>HB3_Button3</Pieces>
		<Pieces>HB3_Button4</Pieces>
		<Pieces>HB3_Button5</Pieces>
		<Pieces>HB3_Button6</Pieces>
		<Pieces>HB3_Button7</Pieces>
		<Pieces>HB3_Button8</Pieces>
		<Pieces>HB3_Button9</Pieces>
		<Pieces>HB3_Button10</Pieces>
		<Pieces>HB3_InvSlot1</Pieces>
		<Pieces>HB3_InvSlot2</Pieces>
		<Pieces>HB3_InvSlot3</Pieces>
		<Pieces>HB3_InvSlot4</Pieces>
		<Pieces>HB3_InvSlot5</Pieces>
		<Pieces>HB3_InvSlot6</Pieces>
		<Pieces>HB3_InvSlot7</Pieces>
		<Pieces>HB3_InvSlot8</Pieces>
		<Pieces>HB3_InvSlot9</Pieces>
		<Pieces>HB3_InvSlot10</Pieces>
		<Pieces>HB3_SpellGem1</Pieces>
		<Pieces>HB3_SpellGem2</Pieces>
		<Pieces>HB3_SpellGem3</Pieces>
		<Pieces>HB3_SpellGem4</Pieces>
		<Pieces>HB3_SpellGem5</Pieces>
		<Pieces>HB3_SpellGem6</Pieces>
		<Pieces>HB3_SpellGem7</Pieces>
		<Pieces>HB3_SpellGem8</Pieces>
		<Pieces>HB3_SpellGem9</Pieces>
		<Pieces>HB3_SpellGem10</Pieces>
		<Pieces>HB3_FileButton</Pieces>
	</Screen>	

	<Button item ="HB4_PageLeftButton">
		<ScreenID>HB4_PageLeftButton</ScreenID>
		<Font>1</Font>
		<RelativePosition>true</RelativePosition>
		<Location>
			<X>8</X>
			<Y>3</Y>
		</Location>
		<Size>
			<CX>22</CX>
			<CY>12</CY>
		</Size>
		<Text></Text>
		<TextColor>
			<R>255</R>
			<G>255</G>
			<B>255</B>
		</TextColor>
		<ButtonDrawTemplate>
			<Normal>A_HSBLeftNormal</Normal>
			<Pressed>A_HSBLeftPressed</Pressed>
			<Flyby>A_HSBLeftFlyby</Flyby>
			<Disabled>A_HSBLeftDisabled</Disabled>
			<PressedFlyby>A_HSBLeftPressedFlyby</PressedFlyby>
		</ButtonDrawTemplate>
	</Button>

	<Label item ="HB4_CurrentPageLabel">
		<ScreenID>HB4_CurrentPageLabel</ScreenID>
		<Font>1</Font>
		<RelativePosition>true</RelativePosition>
		<Location>
			<X>30</X>
			<Y>3</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>false</NoWrap>
		<AlignCenter>true</AlignCenter>
		<AlignRight>false</AlignRight>
	</Label>

	<Button item ="HB4_PageRightButton">
		<ScreenID>HB4_PageRightButton</ScreenID>
		<Font>1</Font>
		<RelativePosition>true</RelativePosition>
		<Location>
			<X>58</X>
			<Y>3</Y>
		</Location>
		<Size>
			<CX>22</CX>
			<CY>12</CY>
		</Size>
		<Text></Text>
		<TextColor>
			<R>255</R>
			<G>255</G>
			<B>255</B>
		</TextColor>
		<ButtonDrawTemplate>
			<Normal>A_HSBRightNormal</Normal>
			<Pressed>A_HSBRightPressed</Pressed>
			<Flyby>A_HSBRightFlyby</Flyby>
			<Disabled>A_HSBRightDisabled</Disabled>
			<PressedFlyby>A_HSBRightPressedFlyby</PressedFlyby>
		</ButtonDrawTemplate>
	</Button>

	<Button item ="HB4_Button1">
		<ScreenID>HB4_Button1</ScreenID>
		<Font>1</Font>
		<RelativePosition>true</RelativePosition>
		<Location>
			<X>2</X>
			<Y>20</Y>
		</Location>
		<Size>
			<CX>40</CX>
			<CY>40</CY>
		</Size>
		<Text>1</Text>
		<TextColor>
			<R>0</R>
			<G>0</G>
			<B>0</B>
		</TextColor>
		<DecalSize>
			<CX>40</CX>
			<CY>40</CY>
		</DecalSize>
		<ButtonDrawTemplate>
			<Normal>A_SquareBtnNormal</Normal>
			<PressedFlyby>A_SquareBtnPressedFlyby</PressedFlyby>
			<Pressed>A_SquareBtnPressed</Pressed>
			<Flyby>A_SquareBtnFlyby</Flyby>
			<Disabled>A_SquareBtnDisabled</Disabled>
		</ButtonDrawTemplate>
	</Button>

	<Button item ="HB4_Button2">
		<ScreenID>HB4_Button2</ScreenID>
		<Font>1</Font>
		<RelativePosition>true</RelativePosition>
		<Location>
			<X>46</X>
			<Y>20</Y>
		</Location>
		<Size>
			<CX>40</CX>
			<CY>40</CY>
		</Size>
		<Text>2</Text>
		<TextColor>
			<R>0</R>
			<G>0</G>
			<B>0</B>
		</TextColor>
		<DecalSize>
			<CX>40</CX>
			<CY>40</CY>
		</DecalSize>
		<ButtonDrawTemplate>
			<Normal>A_SquareBtnNormal</Normal>
			<PressedFlyby>A_SquareBtnPressedFlyby</PressedFlyby>
			<Pressed>A_SquareBtnPressed</Pressed>
			<Flyby>A_SquareBtnFlyby</Flyby>
			<Disabled>A_SquareBtnDisabled</Disabled>
		</ButtonDrawTemplate>
	</Button>

	<Button item ="HB4_Button3">
		<ScreenID>HB4_Button3</ScreenID>
		<Font>1</Font>
		<RelativePosition>true</RelativePosition>
		<Location>
			<X>2</X>
			<Y>64</Y>
		</Location>
		<Size>
			<CX>40</CX>
			<CY>40</CY>
		</Size>
		<Text>3</Text>
		<TextColor>
			<R>0</R>
			<G>0</G>
			<B>0</B>
		</TextColor>
		<DecalSize>
			<CX>40</CX>
			<CY>40</CY>
		</DecalSize>
		<ButtonDrawTemplate>
			<Normal>A_SquareBtnNormal</Normal>
			<PressedFlyby>A_SquareBtnPressedFlyby</PressedFlyby>
			<Pressed>A_SquareBtnPressed</Pressed>
			<Flyby>A_SquareBtnFlyby</Flyby>
			<Disabled>A_SquareBtnDisabled</Disabled>
		</ButtonDrawTemplate>
	</Button>

	<Button item ="HB4_Button4">
		<ScreenID>HB4_Button4</ScreenID>
		<Font>1</Font>
		<RelativePosition>true</RelativePosition>
		<Location>
			<X>46</X>
			<Y>64</Y>
		</Location>
		<Size>
			<CX>40</CX>
			<CY>40</CY>
		</Size>
		<Text>4</Text>
		<TextColor>
			<R>0</R>
			<G>0</G>
			<B>0</B>
		</TextColor>
		<DecalSize>
			<CX>40</CX>
			<CY>40</CY>
		</DecalSize>
		<ButtonDrawTemplate>
			<Normal>A_SquareBtnNormal</Normal>
			<PressedFlyby>A_SquareBtnPressedFlyby</PressedFlyby>
			<Pressed>A_SquareBtnPressed</Pressed>
			<Flyby>A_SquareBtnFlyby</Flyby>
			<Disabled>A_SquareBtnDisabled</Disabled>
		</ButtonDrawTemplate>
	</Button>

	<Button item ="HB4_Button5">
		<ScreenID>HB4_Button5</ScreenID>
		<Font>1</Font>
		<RelativePosition>true</RelativePosition>
		<Location>
			<X>2</X>
			<Y>108</Y>
		</Location>
		<Size>
			<CX>40</CX>
			<CY>40</CY>
		</Size>
		<Text>5</Text>
		<TextColor>
			<R>0</R>
			<G>0</G>
			<B>0</B>
		</TextColor>
		<DecalSize>
			<CX>40</CX>
			<CY>40</CY>
		</DecalSize>
		<ButtonDrawTemplate>
			<Normal>A_SquareBtnNormal</Normal>
			<PressedFlyby>A_SquareBtnPressedFlyby</PressedFlyby>
			<Pressed>A_SquareBtnPressed</Pressed>
			<Flyby>A_SquareBtnFlyby</Flyby>
			<Disabled>A_SquareBtnDisabled</Disabled>
		</ButtonDrawTemplate>
	</Button>

	<Button item ="HB4_Button6">
		<ScreenID>HB4_Button6</ScreenID>
		<Font>1</Font>
		<RelativePosition>true</RelativePosition>
		<Location>
			<X>46</X>
			<Y>108</Y>
		</Location>
		<Size>
			<CX>40</CX>
			<CY>40</CY>
		</Size>
		<Text>6</Text>
		<TextColor>
			<R>0</R>
			<G>0</G>
			<B>0</B>
		</TextColor>
		<DecalSize>
			<CX>40</CX>
			<CY>40</CY>
		</DecalSize>
		<ButtonDrawTemplate>
			<Normal>A_SquareBtnNormal</Normal>
			<PressedFlyby>A_SquareBtnPressedFlyby</PressedFlyby>
			<Pressed>A_SquareBtnPressed</Pressed>
			<Flyby>A_SquareBtnFlyby</Flyby>
			<Disabled>A_SquareBtnDisabled</Disabled>
		</ButtonDrawTemplate>
	</Button>

	<Button item ="HB4_Button7">
		<ScreenID>HB4_Button7</ScreenID>
		<Font>1</Font>
		<RelativePosition>true</RelativePosition>
		<Location>
			<X>2</X>
			<Y>152</Y>
		</Location>
		<Size>
			<CX>40</CX>
			<CY>40</CY>
		</Size>
		<Text>7</Text>
		<TextColor>
			<R>0</R>
			<G>0</G>
			<B>0</B>
		</TextColor>
		<DecalSize>
			<CX>40</CX>
			<CY>40</CY>
		</DecalSize>
		<ButtonDrawTemplate>
			<Normal>A_SquareBtnNormal</Normal>
			<PressedFlyby>A_SquareBtnPressedFlyby</PressedFlyby>
			<Pressed>A_SquareBtnPressed</Pressed>
			<Flyby>A_SquareBtnFlyby</Flyby>
			<Disabled>A_SquareBtnDisabled</Disabled>
		</ButtonDrawTemplate>
	</Button>

	<Button item ="HB4_Button8">
		<ScreenID>HB4_Button8</ScreenID>
		<Font>1</Font>
		<RelativePosition>true</RelativePosition>
		<Location>
			<X>46</X>
			<Y>152</Y>
		</Location>
		<Size>
			<CX>40</CX>
			<CY>40</CY>
		</Size>
		<Text>8</Text>
		<TextColor>
			<R>0</R>
			<G>0</G>
			<B>0</B>
		</TextColor>
		<DecalSize>
			<CX>40</CX>
			<CY>40</CY>
		</DecalSize>
		<ButtonDrawTemplate>
			<Normal>A_SquareBtnNormal</Normal>
			<PressedFlyby>A_SquareBtnPressedFlyby</PressedFlyby>
			<Pressed>A_SquareBtnPressed</Pressed>
			<Flyby>A_SquareBtnFlyby</Flyby>
			<Disabled>A_SquareBtnDisabled</Disabled>
		</ButtonDrawTemplate>
	</Button>

	<Button item ="HB4_Button9">
		<ScreenID>HB4_Button9</ScreenID>
		<Font>1</Font>
		<RelativePosition>true</RelativePosition>
		<Location>
			<X>2</X>
			<Y>196</Y>
		</Location>
		<Size>
			<CX>40</CX>
			<CY>40</CY>
		</Size>
		<Text>9</Text>
		<TextColor>
			<R>0</R>
			<G>0</G>
			<B>0</B>
		</TextColor>
		<DecalSize>
			<CX>40</CX>
			<CY>40</CY>
		</DecalSize>
		<ButtonDrawTemplate>
			<Normal>A_SquareBtnNormal</Normal>
			<PressedFlyby>A_SquareBtnPressedFlyby</PressedFlyby>
			<Pressed>A_SquareBtnPressed</Pressed>
			<Flyby>A_SquareBtnFlyby</Flyby>
			<Disabled>A_SquareBtnDisabled</Disabled>
		</ButtonDrawTemplate>
	</Button>

	<Button item ="HB4_Button10">
		<ScreenID>HB4_Button10</ScreenID>
		<Font>1</Font>
		<RelativePosition>true</RelativePosition>
		<Location>
			<X>46</X>
			<Y>196</Y>
		</Location>
		<Size>
			<CX>40</CX>
			<CY>40</CY>
		</Size>
		<Text>10</Text>
		<TextColor>
			<R>0</R>
			<G>0</G>
			<B>0</B>
		</TextColor>
		<DecalSize>
			<CX>40</CX>
			<CY>40</CY>
		</DecalSize>
		<ButtonDrawTemplate>
			<Normal>A_SquareBtnNormal</Normal>
			<PressedFlyby>A_SquareBtnPressedFlyby</PressedFlyby>
			<Pressed>A_SquareBtnPressed</Pressed>
			<Flyby>A_SquareBtnFlyby</Flyby>
			<Disabled>A_SquareBtnDisabled</Disabled>
		</ButtonDrawTemplate>
	</Button>
	
	<InvSlot item ="HB4_InvSlot1">
		<ScreenID>HB4_InvSlot1</ScreenID>
		<RelativePosition>true</RelativePosition>
		<Location>
			<X>2</X>
			<Y>20</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 ="HB4_InvSlot2">
		<ScreenID>HB4_InvSlot2</ScreenID>
		<RelativePosition>true</RelativePosition>
		<Location>
			<X>46</X>
			<Y>20</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 ="HB4_InvSlot3">
		<ScreenID>HB4_InvSlot3</ScreenID>
		<RelativePosition>true</RelativePosition>
		<Location>
			<X>2</X>
			<Y>64</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 ="HB4_InvSlot4">
		<ScreenID>HB4_InvSlot4</ScreenID>
		<RelativePosition>true</RelativePosition>
		<Location>
			<X>46</X>
			<Y>64</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 ="HB4_InvSlot5">
		<ScreenID>HB4_InvSlot5</ScreenID>
		<RelativePosition>true</RelativePosition>
		<Location>
			<X>2</X>
			<Y>108</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 ="HB4_InvSlot6">
		<ScreenID>HB4_InvSlot6</ScreenID>
		<RelativePosition>true</RelativePosition>
		<Location>
			<X>46</X>
			<Y>108</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 ="HB4_InvSlot7">
		<ScreenID>HB4_InvSlot7</ScreenID>
		<RelativePosition>true</RelativePosition>
		<Location>
			<X>2</X>
			<Y>152</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 ="HB4_InvSlot8">
		<ScreenID>HB4_InvSlot8</ScreenID>
		<RelativePosition>true</RelativePosition>
		<Location>
			<X>46</X>
			<Y>152</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 ="HB4_InvSlot9">
		<ScreenID>HB4_InvSlot9</ScreenID>
		<RelativePosition>true</RelativePosition>
		<Location>
			<X>2</X>
			<Y>196</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 ="HB4_InvSlot10">
		<ScreenID>HB4_InvSlot10</ScreenID>
		<RelativePosition>true</RelativePosition>
		<Location>
			<X>46</X>
			<Y>196</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 ="HB4_SpellGem1">
		<ScreenID>HB4_SpellGem1</ScreenID>
		<RelativePosition>true</RelativePosition>
		<Location>
			<X>2</X>
			<Y>20</Y>
		</Location>
		<Size>
			<CX>40</CX>
			<CY>40</CY>
		</Size>
		<SpellGemDrawTemplate>
			<Holder>HB_SpellGemHolder</Holder>
		</SpellGemDrawTemplate>
		<SpellIconOffsetX>2</SpellIconOffsetX>
		<SpellIconOffsetY>6</SpellIconOffsetY>
	</SpellGem>

	<SpellGem item ="HB4_SpellGem2">
		<ScreenID>HB4_SpellGem2</ScreenID>
		<RelativePosition>true</RelativePosition>
		<Location>
			<X>46</X>
			<Y>20</Y>
		</Location>
		<Size>
			<CX>40</CX>
			<CY>40</CY>
		</Size>
		<SpellGemDrawTemplate>
			<Holder>HB_SpellGemHolder</Holder>
		</SpellGemDrawTemplate>
		<SpellIconOffsetX>2</SpellIconOffsetX>
		<SpellIconOffsetY>6</SpellIconOffsetY>
	</SpellGem>

	<SpellGem item ="HB4_SpellGem3">
		<ScreenID>HB4_SpellGem3</ScreenID>
		<RelativePosition>true</RelativePosition>
		<Location>
			<X>2</X>
			<Y>64</Y>
		</Location>
		<Size>
			<CX>40</CX>
			<CY>40</CY>
		</Size>
		<SpellGemDrawTemplate>
			<Holder>HB_SpellGemHolder</Holder>
		</SpellGemDrawTemplate>
		<SpellIconOffsetX>2</SpellIconOffsetX>
		<SpellIconOffsetY>6</SpellIconOffsetY>
	</SpellGem>

	<SpellGem item ="HB4_SpellGem4">
		<ScreenID>HB4_SpellGem4</ScreenID>
		<RelativePosition>true</RelativePosition>
		<Location>
			<X>46</X>
			<Y>64</Y>
		</Location>
		<Size>
			<CX>40</CX>
			<CY>40</CY>
		</Size>
		<SpellGemDrawTemplate>
			<Holder>HB_SpellGemHolder</Holder>
		</SpellGemDrawTemplate>
		<SpellIconOffsetX>2</SpellIconOffsetX>
		<SpellIconOffsetY>6</SpellIconOffsetY>
	</SpellGem>

	<SpellGem item ="HB4_SpellGem5">
		<ScreenID>HB4_SpellGem5</ScreenID>
		<RelativePosition>true</RelativePosition>
		<Location>
			<X>2</X>
			<Y>108</Y>
		</Location>
		<Size>
			<CX>40</CX>
			<CY>40</CY>
		</Size>
		<SpellGemDrawTemplate>
			<Holder>HB_SpellGemHolder</Holder>
		</SpellGemDrawTemplate>
		<SpellIconOffsetX>2</SpellIconOffsetX>
		<SpellIconOffsetY>6</SpellIconOffsetY>
	</SpellGem>

	<SpellGem item ="HB4_SpellGem6">
		<ScreenID>HB4_SpellGem6</ScreenID>
		<RelativePosition>true</RelativePosition>
		<Location>
			<X>46</X>
			<Y>108</Y>
		</Location>
		<Size>
			<CX>40</CX>
			<CY>40</CY>
		</Size>
		<SpellGemDrawTemplate>
			<Holder>HB_SpellGemHolder</Holder>
		</SpellGemDrawTemplate>
		<SpellIconOffsetX>2</SpellIconOffsetX>
		<SpellIconOffsetY>6</SpellIconOffsetY>
	</SpellGem>

	<SpellGem item ="HB4_SpellGem7">
		<ScreenID>HB4_SpellGem7</ScreenID>
		<RelativePosition>true</RelativePosition>
		<Location>
			<X>2</X>
			<Y>152</Y>
		</Location>
		<Size>
			<CX>40</CX>
			<CY>40</CY>
		</Size>
		<SpellGemDrawTemplate>
			<Holder>HB_SpellGemHolder</Holder>
		</SpellGemDrawTemplate>
		<SpellIconOffsetX>2</SpellIconOffsetX>
		<SpellIconOffsetY>6</SpellIconOffsetY>
	</SpellGem>

	<SpellGem item ="HB4_SpellGem8">
		<ScreenID>HB4_SpellGem8</ScreenID>
		<RelativePosition>true</RelativePosition>
		<Location>
			<X>46</X>
			<Y>152</Y>
		</Location>
		<Size>
			<CX>40</CX>
			<CY>40</CY>
		</Size>
		<SpellGemDrawTemplate>
			<Holder>HB_SpellGemHolder</Holder>
		</SpellGemDrawTemplate>
		<SpellIconOffsetX>2</SpellIconOffsetX>
		<SpellIconOffsetY>6</SpellIconOffsetY>
	</SpellGem>

	<SpellGem item ="HB4_SpellGem9">
		<ScreenID>HB4_SpellGem9</ScreenID>
		<RelativePosition>true</RelativePosition>
		<Location>
			<X>2</X>
			<Y>196</Y>
		</Location>
		<Size>
			<CX>40</CX>
			<CY>40</CY>
		</Size>
		<SpellGemDrawTemplate>
			<Holder>HB_SpellGemHolder</Holder>
		</SpellGemDrawTemplate>
		<SpellIconOffsetX>2</SpellIconOffsetX>
		<SpellIconOffsetY>6</SpellIconOffsetY>
	</SpellGem>

	<SpellGem item ="HB4_SpellGem10">
		<ScreenID>HB4_SpellGem10</ScreenID>
		<RelativePosition>true</RelativePosition>
		<Location>
			<X>46</X>
			<Y>196</Y>
		</Location>
		<Size>
			<CX>40</CX>
			<CY>40</CY>
		</Size>
		<SpellGemDrawTemplate>
			<Holder>HB_SpellGemHolder</Holder>
		</SpellGemDrawTemplate>
		<SpellIconOffsetX>2</SpellIconOffsetX>
		<SpellIconOffsetY>6</SpellIconOffsetY>
	</SpellGem>	
	
	<Button item = "HB4_FileButton">
		<ScreenID>HB4_FileButton</ScreenID>
	</Button>


	<Screen item ="HotButtonWnd4">
		<ScreenID/>
		<Font>2</Font>
		<RelativePosition>false</RelativePosition>
		<Location>
			<X>0</X>
			<Y>230</Y>
		</Location>
		<Size>
			<CX>96</CX>
			<CY>260</CY>
		</Size>
		<Text>Hot Buttons 4</Text>
		<Style_VScroll>false</Style_VScroll>
		<Style_HScroll>false</Style_HScroll>
		<Style_Transparent>false</Style_Transparent>
		<TooltipReference>Hot Buttons 4</TooltipReference>
		<DrawTemplate>WDT_RoundedNoTitle</DrawTemplate>
		<Style_Titlebar>false</Style_Titlebar>
		<Style_Closebox>true</Style_Closebox>
		<Style_Minimizebox>false</Style_Minimizebox>
		<Style_Border>true</Style_Border>
		<Style_Sizable>false</Style_Sizable>
		<Pieces>HB4_PageLeftButton</Pieces>
		<Pieces>HB4_PageRightButton</Pieces>
		<Pieces>HB4_CurrentPageLabel</Pieces>
		<Pieces>HB4_Button1</Pieces>
		<Pieces>HB4_Button2</Pieces>
		<Pieces>HB4_Button3</Pieces>
		<Pieces>HB4_Button4</Pieces>
		<Pieces>HB4_Button5</Pieces>
		<Pieces>HB4_Button6</Pieces>
		<Pieces>HB4_Button7</Pieces>
		<Pieces>HB4_Button8</Pieces>
		<Pieces>HB4_Button9</Pieces>
		<Pieces>HB4_Button10</Pieces>
		<Pieces>HB4_InvSlot1</Pieces>
		<Pieces>HB4_InvSlot2</Pieces>
		<Pieces>HB4_InvSlot3</Pieces>
		<Pieces>HB4_InvSlot4</Pieces>
		<Pieces>HB4_InvSlot5</Pieces>
		<Pieces>HB4_InvSlot6</Pieces>
		<Pieces>HB4_InvSlot7</Pieces>
		<Pieces>HB4_InvSlot8</Pieces>
		<Pieces>HB4_InvSlot9</Pieces>
		<Pieces>HB4_InvSlot10</Pieces>
		<Pieces>HB4_SpellGem1</Pieces>
		<Pieces>HB4_SpellGem2</Pieces>
		<Pieces>HB4_SpellGem3</Pieces>
		<Pieces>HB4_SpellGem4</Pieces>
		<Pieces>HB4_SpellGem5</Pieces>
		<Pieces>HB4_SpellGem6</Pieces>
		<Pieces>HB4_SpellGem7</Pieces>
		<Pieces>HB4_SpellGem8</Pieces>
		<Pieces>HB4_SpellGem9</Pieces>
		<Pieces>HB4_SpellGem10</Pieces>
		<Pieces>HB4_FileButton</Pieces>
	</Screen>	
		
</XML>
__________________
The Thread Necro has spoken.

Last edited by The Thread Necromancer; 01-21-2014 at 12:44 PM..
  #2  
Old 01-20-2014, 06:24 PM
Yumyums Inmahtumtums Yumyums Inmahtumtums is offline
Planar Protector

Yumyums Inmahtumtums's Avatar

Join Date: Sep 2013
Posts: 2,084
Default

I feel so retarded reading these threads.
__________________

Yumyums Inmahtumtums - 59 Shaman
Lemonspoon Icebeaner - 52 Enchanter
Yumyums Inmahtumtums - 60 Enchanter
  #3  
Old 01-20-2014, 06:29 PM
The Thread Necromancer The Thread Necromancer is offline
Scrawny Gnoll

The Thread Necromancer's Avatar

Join Date: Jan 2014
Posts: 21
Default

Upon posting this I noticed that the forum text editor wiped the proper formatting in the XML file (wiped all the indentation in favor of a left-aligned document). It DOES still work though, I just tested it. If anyone would like to keep the original format I could try to figure out a way to post a link to a document file or something; also the original formatting style is available just with a quick look at the original "broken" file. Again, the formatting is just for ease of use from a coding perspective, the computer that reads it doesn't care. Enjoy your hotbuttons once again!

EDIT - Tuesday Jan 21 - Thanks Dangermouse - Original formatting now preserved in the posted code.
Last edited by The Thread Necromancer; 01-21-2014 at 12:46 PM..
  #4  
Old 01-20-2014, 06:54 PM
Zeonick Zeonick is offline
Sarnak

Zeonick's Avatar

Join Date: Jul 2013
Posts: 299
Default

Tldr
__________________
Zeonick - Level 57 Barbarian Shaman
Zeonics - Level 24 Barbarian Rogue
<Bregan D'Aerth>
  #5  
Old 01-20-2014, 07:00 PM
-Catherin- -Catherin- is offline
Planar Protector


Join Date: Jul 2011
Posts: 1,508
Default

if you just post it as it looks, it will look really funky on the forums but anyone could quote your post and then see it exactly as it is intented to be copied and pasted. just went through this same thing in my own post on guild website
  #6  
Old 01-20-2014, 07:05 PM
phacemeltar phacemeltar is offline
Planar Protector

phacemeltar's Avatar

Join Date: Jun 2013
Location: western hemisphere
Posts: 1,612
Default

notepad++ has a syntax fixer. also you can host on dropbox or googledrive and link to it here.
__________________
  #7  
Old 01-20-2014, 07:08 PM
Millburn Millburn is offline
Planar Protector

Millburn's Avatar

Join Date: Jan 2013
Location: A2 Michigan
Posts: 1,002
Default

Straight up, you're awesome. Thanks duder.
__________________

Millburn Pennybags - Blue
Palmer Eldritch - Teal
  #8  
Old 01-20-2014, 07:37 PM
The Thread Necromancer The Thread Necromancer is offline
Scrawny Gnoll

The Thread Necromancer's Avatar

Join Date: Jan 2014
Posts: 21
Default

I set up a dropbox with the file. If you don't want to copy/paste from the code I pasted above, just follow this link, download the file, go to your Everquest folder, open your "uifiles" folder, go to "default", then replace the EQUI_HotButtonWnd.xml file with the file from the link below. This file has the original formatting preserved. I would like to reiterate that either way will work though, having tested this personally (and that this is a fix only for the "default" UI, I haven't tested this with default_old or Velious).

https://www.dropbox.com/s/zqoqnbvkkn...tButtonWnd.xml
__________________
The Thread Necro has spoken.

Last edited by The Thread Necromancer; 01-20-2014 at 07:42 PM..
  #9  
Old 01-20-2014, 08:13 PM
Yumyums Inmahtumtums Yumyums Inmahtumtums is offline
Planar Protector

Yumyums Inmahtumtums's Avatar

Join Date: Sep 2013
Posts: 2,084
Default

Quote:
Originally Posted by -Catherin- [You must be logged in to view images. Log in or Register.]
if you just post it as it looks, it will look really funky on the forums but anyone could quote your post and then see it exactly as it is intented to be copied and pasted. just went through this same thing in my own post on guild website
Don't worry, I felt retarded there too
__________________

Yumyums Inmahtumtums - 59 Shaman
Lemonspoon Icebeaner - 52 Enchanter
Yumyums Inmahtumtums - 60 Enchanter
  #10  
Old 01-20-2014, 08:44 PM
Etaria Etaria is offline
Aviak

Etaria's Avatar

Join Date: Aug 2011
Location: Halas
Posts: 88
Default

Oh nice... going to try this... I found another thread which just consisted of copying over the files, but glad I found this too. I had seen and opened this very xml file while I was fiddling around looking for a quick-fix, but didn't want yet to dive in- lazy evening. Thanks for going through it!
__________________
Etara - 60 Shaman
Ateria - 55 Druid
Alarya - 35 Cleric

Man destroys God. Man creates dinosaurs.
Dinosaurs eat man. Woman inherits the earth.
Closed Thread


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

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

Forum Jump


All times are GMT -4. The time now is 02:45 PM.


Everquest is a registered trademark of Daybreak Game Company LLC.
Project 1999 is not associated or affiliated in any way with Daybreak Game Company LLC.
Powered by vBulletin®
Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.