View Single Post
Old 02-16-2005, 02:14 AM   #5
Dolby
Lord Dolby of Veeshan
 
Dolby's Avatar
 
Join Date: Jul 2002
Server: Veeshan
Posts: 2,397
Default EQUI_GuildManagementWnd.xml

IF you have a custom EQUI_GuildManagementWnd.xml file, open using a text editor (Word, WordPerfect, NotePad, etc.) and using the Search or Find function:

Find:
Code:
<Button item = "GT_RemoveButton"> <ScreenID>RemoveButton</ScreenID> <RelativePosition>true</RelativePosition> <AutoStretch>true</AutoStretch> <LeftAnchorOffset>277</LeftAnchorOffset> <TopAnchorOffset>28</TopAnchorOffset> <RightAnchorOffset>357</RightAnchorOffset> <BottomAnchorOffset>4</BottomAnchorOffset> <TopAnchorToTop>false</TopAnchorToTop> <BottomAnchorToTop>false</BottomAnchorToTop> <LeftAnchorToLeft>true</LeftAnchorToLeft> <RightAnchorToLeft>true</RightAnchorToLeft> <Style_Transparent>false</Style_Transparent> <Style_Checkbox>false</Style_Checkbox> <TooltipReference>Remove the player from the guild (Higher rank or self only).</TooltipReference> <Text>Remove</Text> <TextColor> <R>255</R> <G>255</G> <B>255</B> </TextColor> <ButtonDrawTemplate> <Normal>A_SmallBtnNormal</Normal> <Pressed>A_SmallBtnPressed</Pressed> <Flyby>A_SmallBtnFlyby</Flyby> <Disabled>A_SmallBtnDisabled</Disabled> <PressedFlyby>A_SmallBtnPressedFlyby</PressedFlyby> </ButtonDrawTemplate> </Button>

Immediately below that line, INSERT:
Code:
<Button item = "GT_BankerFlagButton"> <ScreenID>BankerFlagButton</ScreenID> <RelativePosition>true</RelativePosition> <AutoStretch>true</AutoStretch> <LeftAnchorOffset>380</LeftAnchorOffset> <TopAnchorOffset>24</TopAnchorOffset> <RightAnchorOffset>396</RightAnchorOffset> <BottomAnchorOffset>8</BottomAnchorOffset> <TopAnchorToTop>false</TopAnchorToTop> <BottomAnchorToTop>false</BottomAnchorToTop> <LeftAnchorToLeft>true</LeftAnchorToLeft> <RightAnchorToLeft>true</RightAnchorToLeft> <Style_Transparent>false</Style_Transparent> <Style_Checkbox>true</Style_Checkbox> <Text></Text> <TextColor> <R>255</R> <G>255</G> <B>255</B> </TextColor> <ButtonDrawTemplate> <Normal>A_CheckBoxNormal</Normal> <Pressed>A_CheckBoxPressed</Pressed> </ButtonDrawTemplate> </Button> <Label item = "GT_BankerFlagLabel"> <ScreenID/> <RelativePosition>true</RelativePosition> <AutoStretch>true</AutoStretch> <LeftAnchorOffset>400</LeftAnchorOffset> <TopAnchorOffset>24</TopAnchorOffset> <RightAnchorOffset>440</RightAnchorOffset> <BottomAnchorOffset>4</BottomAnchorOffset> <TopAnchorToTop>false</TopAnchorToTop> <BottomAnchorToTop>false</BottomAnchorToTop> <LeftAnchorToLeft>true</LeftAnchorToLeft> <RightAnchorToLeft>true</RightAnchorToLeft> <Text>Banker</Text> <TextColor> <R>255</R> <G>255</G> <B>255</B> </TextColor> <NoWrap>true</NoWrap> <AlignCenter>false</AlignCenter> <AlignRight>false</AlignRight> </Label>


--

Find:
Code:
<Pieces>GT_RemoveButton</Pieces>

Immediately below that line, INSERT:
Code:
<Pieces>GT_BankerFlagButton</Pieces> <Pieces>GT_BankerFlagLabel</Pieces>
Dolby is offline