EQ2Interface.com
Search Downloads


Go Back   EQ2Interface > Developer Discussion > XML Modification Help & Info

Reply
Thread Tools Search this Thread Display Modes
  #1  
Unread 10-18-2014, 09:53 AM
Quinnos Quinnos is offline
A Brown Bear
 
Join Date: Sep 2013
Server: Unkown
Posts: 9
Default Item Examine Shows Every Adornment?

Hello again

It's been a while since I've played EQ2 but I'm thinking of picking this up again. I still have my old UI that I modified from before but it doesn't seem quite right anymore. I'm sure something has changed recently but maybe you folks could help me figure out what it is without spending hours researching.

When I examine an item that has the option for an adornment, it appears to have every adornment slot on it. Here is an image example:



I'm doubtful that all these items I've been encountering have every adornment slot available on them, although it's not unthinkable without how much they change the game.

Any ideas on how to fix this? I think maybe adjusting the size of the examine window to be larger would be a start but I'm not certain how to do that. I think all I did in the past was adjust some of the font sizes through the templates and some of the hotkey button sizes so it didn't appear so small at higher resolutions.

Thanks again for any help.
Reply With Quote
  #2  
Unread 10-18-2014, 04:13 PM
Drumstix42's Avatar
Drumstix42 Drumstix42 is offline
A Griffon
Featured
 
Join Date: Oct 2004
Server: Antonia Bayle
Posts: 3,287
Send a message via AIM to Drumstix42 Send a message via MSN to Drumstix42 Send a message via Yahoo to Drumstix42
Default

Find the code in Examine that looks like this:

Code:
            <VolumePage CellCount="1,1" CellPadding="3,3" CellSize="30,30" Location="0,100" MinimumScrollExtent="36,36" Name="AddOnPage" ScrollExtent="220,36" Size="220,36">
                <Icon BackgroundTint="#000000" IconStyle="/IconStyles.addon_white" Location="3,3" MaximumSize="30,30" MinimumSize="30,30" MouseOverColor="#FFFF00" Name="Icon1" ScrollExtent="30,30" Size="30,30" />
                <Icon BackgroundTint="#000000" IconStyle="/IconStyles.addon_yellow" Location="36,3" MaximumSize="30,30" MinimumSize="30,30" MouseOverColor="#FFFF00" Name="Icon2" ScrollExtent="30,30" Size="30,30" />
                <Icon BackgroundTint="#000000" IconStyle="/IconStyles.addon_red" Location="69,3" MaximumSize="30,30" MinimumSize="30,30" MouseOverColor="#FFFF00" Name="Icon3" ScrollExtent="30,30" Size="30,30" />
                <Icon BackgroundTint="#000000" IconStyle="/IconStyles.addon_green" Location="102,3" MaximumSize="30,30" MinimumSize="30,30" MouseOverColor="#FFFF00" Name="Icon4" ScrollExtent="30,30" Size="30,30" />
                <Icon BackgroundTint="#000000" IconStyle="/IconStyles.addon_blue" Location="135,3" MaximumSize="30,30" MinimumSize="30,30" MouseOverColor="#FFFF00" Name="Icon5" ScrollExtent="30,30" Size="30,30" />
            </VolumePage>
Replace with this:

Code:
            <VolumePage CellCount="6,2" CellPadding="3,3" CellSize="30,30" Location="0,100" MinimumScrollExtent="201,69" Name="AddOnPage" ScrollExtent="220,69" Size="220,36">
                <Icon BackgroundTint="#000000" IconStyle="/IconStyles.addon_white" Location="3,3" MaximumSize="30,30" MinimumSize="30,30" MouseOverColor="#FFFF00" Name="Icon1" ScrollExtent="30,30" Size="30,30" />
                <Icon BackgroundTint="#000000" IconStyle="/IconStyles.addon_yellow" Location="36,3" MaximumSize="30,30" MinimumSize="30,30" MouseOverColor="#FFFF00" Name="Icon2" ScrollExtent="30,30" Size="30,30" />
                <Icon BackgroundTint="#000000" IconStyle="/IconStyles.addon_red" Location="69,3" MaximumSize="30,30" MinimumSize="30,30" MouseOverColor="#FFFF00" Name="Icon3" ScrollExtent="30,30" Size="30,30" />
                <Icon BackgroundTint="#000000" IconStyle="/IconStyles.addon_green" Location="102,3" MaximumSize="30,30" MinimumSize="30,30" MouseOverColor="#FFFF00" Name="Icon4" ScrollExtent="30,30" Size="30,30" />
                <Icon BackgroundTint="#000000" IconStyle="/IconStyles.addon_blue" Location="135,3" MaximumSize="30,30" MinimumSize="30,30" MouseOverColor="#FFFF00" Name="Icon5" ScrollExtent="30,30" Size="30,30" />
                <Icon BackgroundTint="#000000" IconStyle="/IconStyles.addon_purple" Location="168,3" MaximumSize="30,30" MinimumSize="30,30" MouseOverColor="#FFFF00" Name="Icon6" ScrollExtent="30,30" Size="30,30" />
                <Icon BackgroundTint="#000000" IconStyle="/IconStyles.addon_cyan" Location="3,36" MaximumSize="30,30" MinimumSize="30,30" MouseOverColor="#FFFF00" Name="Icon7" ScrollExtent="30,30" Size="30,30" />
                <Icon BackgroundTint="#000000" IconStyle="/IconStyles.addon_orange" Location="36,36" MaximumSize="30,30" MinimumSize="30,30" MouseOverColor="#FFFF00" Name="Icon8" ScrollExtent="30,30" Size="30,30" />
                <Icon BackgroundTint="#000000" IconStyle="/IconStyles.addon_turquoise" Location="69,36" MaximumSize="30,30" MinimumSize="30,30" MouseOverColor="#FFFF00" Name="Icon9" ScrollExtent="30,30" Size="30,30" />
                <Icon BackgroundTint="#000000" IconStyle="/IconStyles.addon_grey" Location="102,36" MaximumSize="30,30" MinimumSize="30,30" MouseOverColor="#FFFF00" Name="Icon10" ScrollExtent="30,30" Size="30,30" />
            </VolumePage>
            <VolumePage CellCount="6,2" CellPadding="3,3" CellSize="30,30" Location="0,136" MinimumScrollExtent="201,69" Name="AddOnPageTwo" ScrollExtent="220,69" Size="220,36">
                <Icon BackgroundTint="#000000" IconStyle="/IconStyles.addon_white" Location="3,3" MaximumSize="30,30" MinimumSize="30,30" MouseOverColor="#FFFF00" Name="Icon1" ScrollExtent="30,30" Size="30,30" />
                <Icon BackgroundTint="#000000" IconStyle="/IconStyles.addon_yellow" Location="36,3" MaximumSize="30,30" MinimumSize="30,30" MouseOverColor="#FFFF00" Name="Icon2" ScrollExtent="30,30" Size="30,30" />
                <Icon BackgroundTint="#000000" IconStyle="/IconStyles.addon_red" Location="69,3" MaximumSize="30,30" MinimumSize="30,30" MouseOverColor="#FFFF00" Name="Icon3" ScrollExtent="30,30" Size="30,30" />
                <Icon BackgroundTint="#000000" IconStyle="/IconStyles.addon_green" Location="102,3" MaximumSize="30,30" MinimumSize="30,30" MouseOverColor="#FFFF00" Name="Icon4" ScrollExtent="30,30" Size="30,30" />
                <Icon BackgroundTint="#000000" IconStyle="/IconStyles.addon_blue" Location="135,3" MaximumSize="30,30" MinimumSize="30,30" MouseOverColor="#FFFF00" Name="Icon5" ScrollExtent="30,30" Size="30,30" />
                <Icon BackgroundTint="#000000" IconStyle="/IconStyles.addon_purple" Location="168,3" MaximumSize="30,30" MinimumSize="30,30" MouseOverColor="#FFFF00" Name="Icon6" ScrollExtent="30,30" Size="30,30" />
                <Icon BackgroundTint="#000000" IconStyle="/IconStyles.addon_cyan" Location="3,36" MaximumSize="30,30" MinimumSize="30,30" MouseOverColor="#FFFF00" Name="Icon7" ScrollExtent="30,30" Size="30,30" />
                <Icon BackgroundTint="#000000" IconStyle="/IconStyles.addon_orange" Location="36,36" MaximumSize="30,30" MinimumSize="30,30" MouseOverColor="#FFFF00" Name="Icon8" ScrollExtent="30,30" Size="30,30" />
                <Icon BackgroundTint="#000000" IconStyle="/IconStyles.addon_turquoise" Location="69,36" MaximumSize="30,30" MinimumSize="30,30" MouseOverColor="#FFFF00" Name="Icon9" ScrollExtent="30,30" Size="30,30" />
                <Icon BackgroundTint="#000000" IconStyle="/IconStyles.addon_grey" Location="102,36" MaximumSize="30,30" MinimumSize="30,30" MouseOverColor="#FFFF00" Name="Icon10" ScrollExtent="30,30" Size="30,30" />
            </VolumePage>
I think that was the major default UI update for that patch. The changelog here has slowed down and I haven't had a chance to make my own in the past 6 months
__________________
"I'm afraid you're guilty of thought-crime. Don't bother getting the door, we'll let ourselves in..."
<Donate to DrumsUI> < [DrumsUI] Updater > < [DrumsUI] Full Interface> < Drumstix42 on Twitch.tv
>
Reply With Quote
  #3  
Unread 10-19-2014, 01:21 PM
Quinnos Quinnos is offline
A Brown Bear
 
Join Date: Sep 2013
Server: Unkown
Posts: 9
Default

Thanks, that fixed the issue.
Reply With Quote
Reply


Thread Tools Search this Thread
Search this Thread:

Advanced Search
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
Forum Jump


All times are GMT -5. The time now is 04:02 AM.


Our Network
EQInterface | EQ2Interface | WoWInterface | LoTROInterface | ESOUI | MMOUI