Home Forum Downloads My Favorites Register FAQ

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

Reply
 
Thread Tools Display Modes
Old 11-25-2011, 06:11 PM   #1
Tegweyen
A Hill Giant
 
Join Date: Apr 2005
Server: Povar
Posts: 38
Interface Author - Click to view interfaces
Default Player window

Hey guys trying to update the UI here, and was wondering what was changed in the player window? i cant seem to find the problem!!

Can anyone help me for a bit or just tell me what they changed? thanks :OP
Tegweyen is offline   Reply With Quote
Old 11-26-2011, 10:09 AM   #2
Halelen
Lord Doljonijiarnimorinar
 
Join Date: Jan 2003
Server: Povar
Posts: 1,047
Interface Author - Click to view interfaces
Default

they added a couple parcel icons

Code:
<Button item="PW_NewMailIcon"> <ScreenID>PW_NewMailIcon</ScreenID> <RelativePosition>true</RelativePosition> <Style_Transparent>true</Style_Transparent> <Style_Checkbox>false</Style_Checkbox> <TooltipReference>You have unread mail in your inbox.</TooltipReference> <ButtonDrawTemplate> <Normal>A_NewMailIcon</Normal> </ButtonDrawTemplate> <AutoStretch>true</AutoStretch> <TopAnchorOffset>11</TopAnchorOffset> <LeftAnchorOffset>80</LeftAnchorOffset> <BottomAnchorOffset>36</BottomAnchorOffset> <RightAnchorOffset>55</RightAnchorOffset> <RightAnchorToLeft>false</RightAnchorToLeft> <LeftAnchorToLeft>false</LeftAnchorToLeft> </Button> <Button item="PW_ParcelsIcon"> <ScreenID>PW_ParcelsIcon</ScreenID> <RelativePosition>true</RelativePosition> <Style_Transparent>true</Style_Transparent> <Style_Checkbox>false</Style_Checkbox> <TooltipReference>You have parcel deliveries.</TooltipReference> <ButtonDrawTemplate> <Normal>A_ParcelsIcon</Normal> </ButtonDrawTemplate> <AutoStretch>true</AutoStretch> <BottomAnchorOffset>36</BottomAnchorOffset> <TopAnchorOffset>11</TopAnchorOffset> <RightAnchorOffset>30</RightAnchorOffset> <LeftAnchorOffset>55</LeftAnchorOffset> <RightAnchorToLeft>false</RightAnchorToLeft> <LeftAnchorToLeft>false</LeftAnchorToLeft> </Button> <Button item="PW_ParcelsOverLimitIcon"> <ScreenID>PW_ParcelsOverLimitIcon</ScreenID> <RelativePosition>true</RelativePosition> <Style_Transparent>true</Style_Transparent> <Style_Checkbox>false</Style_Checkbox> <TooltipReference>You are over your parcel limit! Retrieve the excess ones soon or risk losing them!</TooltipReference> <ButtonDrawTemplate> <Normal>A_ParcelsOverLimitIcon</Normal> </ButtonDrawTemplate> <AutoStretch>true</AutoStretch> <BottomAnchorOffset>36</BottomAnchorOffset> <TopAnchorOffset>11</TopAnchorOffset> <RightAnchorOffset>30</RightAnchorOffset> <LeftAnchorOffset>55</LeftAnchorOffset> <RightAnchorToLeft>false</RightAnchorToLeft> <LeftAnchorToLeft>false</LeftAnchorToLeft> </Button>
Halelen is offline   Reply With Quote
Old 11-27-2011, 05:25 PM   #3
Tegweyen
A Hill Giant
 
Join Date: Apr 2005
Server: Povar
Posts: 38
Interface Author - Click to view interfaces
Default

So all ill need to do is put that into the player window and im gtg?

because i did that and it still shows XML files are right :O/
Tegweyen is offline   Reply With Quote
Old 11-28-2011, 12:43 PM   #4
Kalthazz
A Weathered Clockwork
 
Kalthazz's Avatar
 
Join Date: Aug 2002
Server: tunare
Posts: 324
Interface Author - Click to view interfaces
Send a message via ICQ to Kalthazz Send a message via Yahoo to Kalthazz
Default

you may need to adjust those icons in the player window so they are in a position your comfortable with or if your window is different in positionings so may need to set them accordingly to your player windows make up!

Something like this in the coding below!



<Button item="PW_NewMailIcon">
<ScreenID>PW_NewMailIcon</ScreenID>
<RelativePosition>true</RelativePosition>
<Location>
<X>20</X>
<Y>13</Y>
</Location>
<Size>
<CX>26</CX>
<CY>26</CY>
</Size>
<Style_Transparent>true</Style_Transparent>
<Style_Checkbox>false</Style_Checkbox>
<TooltipReference>You have unread mail in your inbox.</TooltipReference>
<ButtonDrawTemplate>
<Normal>A_NewMailIcon</Normal>
</ButtonDrawTemplate>
</Button>
<Button item="PW_ParcelsIcon">
<ScreenID>PW_ParcelsIcon</ScreenID>
<RelativePosition>true</RelativePosition>
<Location>
<X>40</X>
<Y>13</Y>
</Location>
<Size>
<CX>20</CX>
<CY>20</CY>
</Size>
<Style_Transparent>true</Style_Transparent>
<Style_Checkbox>false</Style_Checkbox>
<TooltipReference>You have parcel deliveries.</TooltipReference>
<ButtonDrawTemplate>
<Normal>A_ParcelsIcon</Normal>
</ButtonDrawTemplate>
</Button>

<Button item="PW_ParcelsOverLimitIcon">
<ScreenID>PW_ParcelsOverLimitIcon</ScreenID>
<RelativePosition>true</RelativePosition>
<Location>
<X>40</X>
<Y>13</Y>
</Location>
<Size>
<CX>26</CX>
<CY>26</CY>
</Size>
<Style_Transparent>false</Style_Transparent>
<Style_Checkbox>false</Style_Checkbox>
<TooltipReference>You are over your parcel limit! Retrieve the excess ones soon or risk losing them!</TooltipReference>
<ButtonDrawTemplate>
<Normal>A_ParcelsOverLimitIcon</Normal>
</ButtonDrawTemplate>
</Button>
Kalthazz is offline   Reply With Quote
Old 12-02-2011, 12:38 PM   #5
Tegweyen
A Hill Giant
 
Join Date: Apr 2005
Server: Povar
Posts: 38
Interface Author - Click to view interfaces
Default

Quote:
Originally Posted by Kalthazz
you may need to adjust those icons in the player window so they are in a position your comfortable with or if your window is different in positionings so may need to set them accordingly to your player windows make up!

Something like this in the coding below!




ok i did that and have been working on it for a while now.

I want the new icons at the bottom of my player window and still nothing shows up.
can anyone help with code for a bit?
Attached Files
File Type: xml EQUI_PlayerWindow.xml (50.4 KB, 7 views)
Tegweyen is offline   Reply With Quote
Old 12-02-2011, 01:37 PM   #6
Kalthazz
A Weathered Clockwork
 
Kalthazz's Avatar
 
Join Date: Aug 2002
Server: tunare
Posts: 324
Interface Author - Click to view interfaces
Send a message via ICQ to Kalthazz Send a message via Yahoo to Kalthazz
Default

may need to update the animation files with those icon tags or something to that effect
Kalthazz is offline   Reply With Quote
Old 12-02-2011, 03:39 PM   #7
Tegweyen
A Hill Giant
 
Join Date: Apr 2005
Server: Povar
Posts: 38
Interface Author - Click to view interfaces
Default

Quote:
Originally Posted by Kalthazz
may need to update the animation files with those icon tags or something to that effect



i updated it and it doesnt have the red xml files but still wont show where i put in for the location of it.

ill keep at it and if anyone wants to take a look at it for me id be very happy!!! lol

thanks
Attached Files
File Type: xml EQUI_PlayerWindow.xml (54.0 KB, 1 views)
Tegweyen is offline   Reply With Quote
Old 12-02-2011, 04:23 PM   #8
Kalthazz
A Weathered Clockwork
 
Kalthazz's Avatar
 
Join Date: Aug 2002
Server: tunare
Posts: 324
Interface Author - Click to view interfaces
Send a message via ICQ to Kalthazz Send a message via Yahoo to Kalthazz
Default

you need to send a parcel or get a level to actually see if you get anything it wont show up unless your sending a alt something or get a level on a character
Kalthazz is offline   Reply With Quote
Old 12-02-2011, 07:54 PM   #9
Tegweyen
A Hill Giant
 
Join Date: Apr 2005
Server: Povar
Posts: 38
Interface Author - Click to view interfaces
Default

ok cool i didnt know that

I got it pretty much done. just need to get one of those thing to make sure placement of the icon is right!!
Tegweyen is offline   Reply With Quote
Old 01-24-2012, 01:31 PM   #10
Minalcar
Premium Member
 
Join Date: Mar 2004
Posts: 107
Default

I, too, would like to add the new parcel icons to my player window. I use the default animation file so that should have the necessary items in it.

Any help would be appreciated.

I tried adding the code that was listed but it broke my UI.
Attached Files
File Type: xml EQUI_PlayerWindow.xml (31.9 KB, 3 views)
Minalcar is offline   Reply With Quote
Old 01-26-2012, 08:45 AM   #11
longreach
A Gray Wolf
 
Join Date: Jan 2004
Posts: 8
Interface Author - Click to view interfaces
Default

Minalcar, send me a ingame email with your internet email address, I got your UI fixed.
Send your ingame email to "SOE.EQ.drinal.whitehawk" and I'll email you your UI to you.

Quote:
Originally Posted by Minalcar
I, too, would like to add the new parcel icons to my player window. I use the default animation file so that should have the necessary items in it.

Any help would be appreciated.

I tried adding the code that was listed but it broke my UI.
__________________
longreach is offline   Reply With Quote
Reply




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 10:39 AM.


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