lotrointerface.com
Search Downloads


Go Back   LoTROInterface > LotRO > General Discussion & Support > Interface Requests (L)

Reply
Thread Tools Display Modes
  #1  
Unread 02-07-2011, 06:20 PM
Greytail Greytail is offline
The Indomitable
 
Join Date: Apr 2009
Posts: 10
Multibar Clean

Can someone please update this UI to work again?
http://www.lotrointerface.com/downlo...antoolbar.html

That has to be my fav toolbar/interface of all time. I've tried to fix it myself, but I don't know the code well enough to fix it. Any Takers? Daemon?
Reply With Quote
  #2  
Unread 02-08-2011, 06:54 AM
daimon's Avatar
daimon daimon is offline
The Undying
Interface Author - Click to view interfaces
 
Join Date: Aug 2007
Location: Finland
Posts: 466
Quote:
There are 64 different SkinDefinition files in this zip file.
huh quite a job to fix it all even if it's only a few values that should be fixed.
could you give a quick summary what's wrong with the skin.

I'm not promising anything as I got other things going on at the moment so if someone else wants to pick this up I'm sure that is more than appreciated.

Good call making this thread though or otherwise the skin would have been forgotten altogether.
__________________
~·~ DaimonUI ~·~
avatar by Humon
Reply With Quote
  #3  
Unread 02-08-2011, 01:48 PM
Greytail Greytail is offline
The Indomitable
 
Join Date: Apr 2009
Posts: 10
From what I can tell, it appears that the store button needs to be taken out and the bar shifted upwards a bit. I will install it again and take a screenshot of what all is wrong with it.

EDIT:

Here is what it looks like now. The LOTRO store button needs to be hidden and some of the buttons need to be moved and/or hidden. I tried to do it myself, but I don't know much about LUA code and it didn't work as intended



Uploaded with ImageShack.us

P.S. I only need one SkinDef myself. 1920x1080 is what I run in. Everything else is moot to me.

Last edited by Greytail : 02-08-2011 at 06:09 PM. Reason: Added Postscript.
Reply With Quote
  #4  
Unread 02-09-2011, 07:17 AM
daimon's Avatar
daimon daimon is offline
The Undying
Interface Author - Click to view interfaces
 
Join Date: Aug 2007
Location: Finland
Posts: 466
ok. not Lua but XML

here's how you could tweak it. all of the below should be include inside <Element ID="ToolbarField" ...> and it's ending tag </Element>

This will remove the store button
Code:
<Element ID="Toolbar_WebstoreButton" X="962" Y="122" Width="1" Height="1"></Element>
These will hide the two new menu buttons. If you don't want to hide them but just move them use Height and Width value 25 and tweak X and Y values so you get them where you want them
Code:
<Element ID="ToolbarButton_RightSlot_6" X="903" Y="147" Width="1" Height="1"></Element>
<Element ID="ToolbarButton_RightSlot_7" X="931" Y="158" Width="1" Height="1"></Element>
Lastly these will remove all that unneeded clutter from the xp bar
Code:
<Element ID="ToolbarFieldMain_LevelMeter_Left_Cap" X="1" Y="10" Width="1" Height="1"></Element>
<Element ID="ToolbarFieldMain_LevelMeter_Right_Cap" X="1" Y="10" Width="1" Height="1"></Element>
<Element ID="ToolbarButton_Restxp_TutorialHighlight" X="1" Y="10" Width="1" Height="1"></Element>
<Element ID="ToolbarFieldMain_LevelMeter_Mid_Left_Cap" X="1" Y="10" Width="1" Height="1"></Element>
<Element ID="ToolbarFieldMain_LevelMeter_Mid_Right_Cap" X="1" Y="10" Width="1" Height="1"></Element>
<Element ID="ToolbarFieldMain_LevelMeter_Glass_Overlay" X="1" Y="10" Width="1" Height="1"></Element>
<Element ID="LevelMeter_Overlay" X="1" Y="10" Width="1" Height="1"></Element>
So this is the ID="UISkin_Toolbar" part of SkinDefinition-1920-AT-0bars.xml how it should look like (new code in yellow):

Code:
<PanelFile ID="ID_UISkin_Toolbar">
    <Element ID="ToolbarField" X="0" Y="1000" Width="1920" Height="203" Detach="1">

        <Element ID="ToolbarFieldMain" X="546" Y="43" Width="846" Height="160"></Element>

        <Element ID="LevelMeter" X="550" Y="180" Width="837" Height="30">
            <Element ID="LevelMeterFill" X="1" Y="16" Width="837" Height="5">
                <Element ID="LevelMeter_BonusMeter" X="0" Y="0" Width="837" Height="6">
                    <Element ID="meter_fill" X="0" Y="0" Width="401" Height="6"> 
                       <Element ID="meter_fill_image" X="0" Y="0" Width="401" Height="6"> </Element>
                        </Element>
                    </Element>
                    <Element ID="meter_fill" X="0" Y="0" Width="400" Height="6"> 
                    <Element ID="meter_fill_image" X="0" Y="0" Width="400" Height="6"> </Element>
                </Element>
            </Element>
            <Element ID="ToolbarButton_LevelUpXP_TutorialHighlight" X="1" Y="16" Width="837" Height="5">
                <Element ID="TutorialHighlighter_LeftBorder" X="0" Y="0" Width="3" Height="10"> </Element>
                <Element ID="TutorialHighlighter_BottomBorder" X="3" Y="7" Width="840" Height="3"> </Element>
                <Element ID="TutorialHighlighter_RightBorder" X="1021" Y="0" Width="3" Height="10"> </Element>
                <Element ID="TutorialHighlighter_TopBorder" X="3" Y="0" Width="840" Height="3"> </Element>
            </Element>
            <Element ID="ToolbarButton_Experience_TutorialHighlight" X="1" Y="16" Width="837" Height="5">
                <Element ID="TutorialHighlighter_LeftBorder" X="0" Y="0" Width="3" Height="10"> </Element>
                <Element ID="TutorialHighlighter_BottomBorder" X="3" Y="7" Width="840" Height="3"> </Element>
                <Element ID="TutorialHighlighter_RightBorder" X="1021" Y="0" Width="3" Height="10"> </Element>
                <Element ID="TutorialHighlighter_TopBorder" X="3" Y="0" Width="840" Height="3"> </Element>
            </Element>
            <Element ID="LevelMeterText" X="0" Y="14" Width="837" Height="10"></Element>
        </Element>

        <Element ID="AutoAttackIndicatorButton" X="860" Y="168" Width="25" Height="25"></Element>
        <Element ID="ViolentModeIndicator" X="860" Y="168" Width="1" Height="1"></Element>
        <Element ID="ToolbarButton_AutoAttack_TutorialHighlight" X="860" Y="168" Width="25" Height="25">
            <Element ID="TutorialHighlighter_LeftBorder" X="0" Y="0" Width="3" Height="78"> </Element>
            <Element ID="TutorialHighlighter_BottomBorder" X="3" Y="75" Width="74" Height="3"> </Element>
            <Element ID="TutorialHighlighter_RightBorder" X="77" Y="0" Width="3" Height="78"> </Element>
            <Element ID="TutorialHighlighter_TopBorder" X="3" Y="0" Width="74" Height="3"> </Element>
        </Element>
        <Element ID="GamePlay_FervorPipDisplay" X="893" Y="173" Width="152" Height="14"></Element>
        <Element ID="GamePlay_AimPipDisplay" X="893" Y="173" Width="152" Height="14"></Element>
    <Element ID="GamePlay_RampagePipDisplay" X="893" Y="173" Width="152" Height="14"></Element>
        <Element ID="Gameplay_AtunementUI" X="893" Y="173" Width="152" Height="14"> 
            <Element ID="PipDisplay_Atunement_Pips" X="0" Y="0" Width="152" Height="14"> </Element>
        </Element>
        <Element ID="LevelMeterText" X="3" Y="10" Width="1020" Height="10"> </Element>
      

    <Element ID="ToolBarButton_MainMenu" X="550" Y="170" Width="25" Height="20"> </Element>
    <Element ID="ToolbarButton_Slot_1" X="590" Y="168" Width="25" Height="25"> 
      <Element ID="CustomizableSlotButton_TutorialHighlight" X="0" Y="0" Width="25" Height="25"> 
        <Element ID="TutorialHighlighter_LeftBorder" X="0" Y="0" Width="3" Height="25"> </Element>
        <Element ID="TutorialHighlighter_BottomBorder" X="3" Y="22" Width="19" Height="3"> </Element>
        <Element ID="TutorialHighlighter_RightBorder" X="22" Y="0" Width="3" Height="25"> </Element>
        <Element ID="TutorialHighlighter_TopBorder" X="3" Y="0" Width="19" Height="3"> </Element>
      </Element>
    </Element>
    <Element ID="ToolbarButton_Slot_2" X="635" Y="168" Width="25" Height="25"> 
      <Element ID="CustomizableSlotButton_TutorialHighlight" X="0" Y="0" Width="25" Height="25"> 
        <Element ID="TutorialHighlighter_LeftBorder" X="0" Y="0" Width="3" Height="25"> </Element>
        <Element ID="TutorialHighlighter_BottomBorder" X="3" Y="22" Width="19" Height="3"> </Element>
        <Element ID="TutorialHighlighter_RightBorder" X="22" Y="0" Width="3" Height="25"> </Element>
        <Element ID="TutorialHighlighter_TopBorder" X="3" Y="0" Width="19" Height="3"> </Element>
      </Element>
    </Element>
    <Element ID="ToolbarButton_Slot_3" X="680" Y="168" Width="25" Height="25"> 
      <Element ID="CustomizableSlotButton_TutorialHighlight" X="0" Y="0" Width="25" Height="25"> 
        <Element ID="TutorialHighlighter_LeftBorder" X="0" Y="0" Width="3" Height="25"> </Element>
        <Element ID="TutorialHighlighter_BottomBorder" X="3" Y="22" Width="19" Height="3"> </Element>
        <Element ID="TutorialHighlighter_RightBorder" X="22" Y="0" Width="3" Height="25"> </Element>
        <Element ID="TutorialHighlighter_TopBorder" X="3" Y="0" Width="19" Height="3"> </Element>
      </Element>
    </Element>
    <Element ID="ToolbarButton_Slot_4" X="725" Y="168" Width="25" Height="25"> 
      <Element ID="CustomizableSlotButton_TutorialHighlight" X="0" Y="0" Width="25" Height="25"> 
        <Element ID="TutorialHighlighter_LeftBorder" X="0" Y="0" Width="3" Height="25"> </Element>
        <Element ID="TutorialHighlighter_BottomBorder" X="3" Y="22" Width="19" Height="3"> </Element>
        <Element ID="TutorialHighlighter_RightBorder" X="22" Y="0" Width="3" Height="25"> </Element>
        <Element ID="TutorialHighlighter_TopBorder" X="3" Y="0" Width="19" Height="3"> </Element>
      </Element>
    </Element>
    <Element ID="ToolbarButton_Slot_5" X="770" Y="168" Width="25" Height="25"> 
      <Element ID="CustomizableSlotButton_TutorialHighlight" X="0" Y="0" Width="25" Height="25"> 
        <Element ID="TutorialHighlighter_LeftBorder" X="0" Y="0" Width="3" Height="25"> </Element>
        <Element ID="TutorialHighlighter_BottomBorder" X="3" Y="22" Width="19" Height="3"> </Element>
        <Element ID="TutorialHighlighter_RightBorder" X="22" Y="0" Width="3" Height="25"> </Element>
        <Element ID="TutorialHighlighter_TopBorder" X="3" Y="0" Width="19" Height="3"> </Element>
      </Element>
    </Element>
    <Element ID="ToolbarButton_Slot_6" X="815" Y="168" Width="25" Height="25"> 
      <Element ID="CustomizableSlotButton_TutorialHighlight" X="0" Y="0" Width="25" Height="25"> 
        <Element ID="TutorialHighlighter_LeftBorder" X="0" Y="0" Width="3" Height="25"> </Element>
        <Element ID="TutorialHighlighter_BottomBorder" X="3" Y="22" Width="19" Height="3"> </Element>
        <Element ID="TutorialHighlighter_RightBorder" X="22" Y="0" Width="3" Height="25"> </Element>
        <Element ID="TutorialHighlighter_TopBorder" X="3" Y="0" Width="19" Height="3"> </Element>
      </Element>
    </Element>
    <Element ID="ToolbarButton_Slot_7" X="1095" Y="168" Width="25" Height="25"> 
      <Element ID="CustomizableSlotButton_TutorialHighlight" X="0" Y="0" Width="25" Height="25"> 
        <Element ID="TutorialHighlighter_LeftBorder" X="0" Y="0" Width="3" Height="25"> </Element>
        <Element ID="TutorialHighlighter_BottomBorder" X="3" Y="22" Width="19" Height="3"> </Element>
        <Element ID="TutorialHighlighter_RightBorder" X="22" Y="0" Width="3" Height="25"> </Element>
        <Element ID="TutorialHighlighter_TopBorder" X="3" Y="0" Width="19" Height="3"> </Element>
      </Element>
    </Element>
    <Element ID="ToolbarButton_RightSlot_1" X="1140" Y="168" Width="25" Height="25"> 
      <Element ID="CustomizableSlotButton_TutorialHighlight" X="0" Y="0" Width="25" Height="25"> 
        <Element ID="TutorialHighlighter_LeftBorder" X="0" Y="0" Width="3" Height="25"> </Element>
        <Element ID="TutorialHighlighter_BottomBorder" X="3" Y="22" Width="19" Height="3"> </Element>
        <Element ID="TutorialHighlighter_RightBorder" X="22" Y="0" Width="3" Height="25"> </Element>
        <Element ID="TutorialHighlighter_TopBorder" X="3" Y="0" Width="19" Height="3"> </Element>
      </Element>
    </Element>
    <Element ID="ToolbarButton_RightSlot_2" X="1185" Y="168" Width="25" Height="25"> 
      <Element ID="CustomizableSlotButton_TutorialHighlight" X="0" Y="0" Width="25" Height="25"> 
        <Element ID="TutorialHighlighter_LeftBorder" X="0" Y="0" Width="3" Height="25"> </Element>
        <Element ID="TutorialHighlighter_BottomBorder" X="3" Y="22" Width="19" Height="3"> </Element>
        <Element ID="TutorialHighlighter_RightBorder" X="22" Y="0" Width="3" Height="25"> </Element>
        <Element ID="TutorialHighlighter_TopBorder" X="3" Y="0" Width="19" Height="3"> </Element>
      </Element>
    </Element>
    <Element ID="ToolbarButton_RightSlot_3" X="1230" Y="168" Width="25" Height="25"> 
      <Element ID="CustomizableSlotButton_TutorialHighlight" X="0" Y="0" Width="25" Height="25"> 
        <Element ID="TutorialHighlighter_LeftBorder" X="0" Y="0" Width="3" Height="25"> </Element>
        <Element ID="TutorialHighlighter_BottomBorder" X="3" Y="22" Width="19" Height="3"> </Element>
        <Element ID="TutorialHighlighter_RightBorder" X="22" Y="0" Width="3" Height="25"> </Element>
        <Element ID="TutorialHighlighter_TopBorder" X="3" Y="0" Width="19" Height="3"> </Element>
      </Element>
    </Element>
    <Element ID="ToolbarButton_RightSlot_4" X="1275" Y="168" Width="25" Height="25"> 
      <Element ID="CustomizableSlotButton_TutorialHighlight" X="0" Y="0" Width="25" Height="25"> 
        <Element ID="TutorialHighlighter_LeftBorder" X="0" Y="0" Width="3" Height="25"> </Element>
        <Element ID="TutorialHighlighter_BottomBorder" X="3" Y="22" Width="19" Height="3"> </Element>
        <Element ID="TutorialHighlighter_RightBorder" X="22" Y="0" Width="3" Height="25"> </Element>
        <Element ID="TutorialHighlighter_TopBorder" X="3" Y="0" Width="19" Height="3"> </Element>
      </Element>
    </Element>
    <Element ID="ToolbarButton_RightSlot_5" X="1320" Y="168" Width="25" Height="25"> 
      <Element ID="CustomizableSlotButton_TutorialHighlight" X="0" Y="0" Width="25" Height="25"> 
        <Element ID="TutorialHighlighter_LeftBorder" X="0" Y="0" Width="3" Height="25"> </Element>
        <Element ID="TutorialHighlighter_BottomBorder" X="3" Y="22" Width="19" Height="3"> </Element>
        <Element ID="TutorialHighlighter_RightBorder" X="22" Y="0" Width="3" Height="25"> </Element>
        <Element ID="TutorialHighlighter_TopBorder" X="3" Y="0" Width="19" Height="3"> </Element>
      </Element>
    </Element>
    <Element ID="ToolbarButton_CustomizeSlots" X="1360" Y="170" Width="26" Height="19"> </Element>

        <Element ID="Toolbar_Quickslot" X="546" Y="125" Width="420" Height="35"> 
          <Element ID="QuickslotListBox" X="0" Y="0" Width="420" Height="35"> 
            <Element ID="QuickslotButtonTemplate" X="0" Y="0" Width="35" Height="35"> 
              <Element ID="QuickslotOverlay" X="3" Y="3" Width="32" Height="32"> </Element>
              <Element ID="SkillQuickslotDisplayTemplate" X="0" Y="0" Width="35" Height="35"> 
                <Element ID="RealQuickslotSkillDisplay" X="0" Y="0" Width="35" Height="35"> 
                  <Element ID="QuickslotSkillToggleOverlay" X="3" Y="3" Width="32" Height="32"> </Element>
                  <Element ID="QuickslotSkillAvailableOverlay" X="3" Y="3" Width="32" Height="32"> </Element>
                  <Element ID="QuickslotSkillRangeOverlay" X="23" Y="4" Width="12" Height="12"> </Element>
                  <Element ID="QuickslotNewlyShortcutSkillOverlay" X="3" Y="3" Width="32" Height="32"> </Element>
                  <Element ID="QuickslotSkillResetTimer" X="3" Y="3" Width="32" Height="32"> </Element>
                  <Element ID="QuickslotSkillIcon" X="3" Y="3" Width="32" Height="32"> 
                    <Element ID="Overlay" X="0" Y="0" Width="32" Height="32"> </Element>
                  </Element>
                  <Element ID="QuickslotSkillGhostedOverlay" X="3" Y="3" Width="32" Height="32"> </Element>
                  <Element ID="QuickslotSkillPlayingOverlay" X="3" Y="3" Width="32" Height="32"> </Element>
                  <Element ID="QuickslotSkillComboMatchOverlay" X="3" Y="3" Width="32" Height="32"> </Element>
                  <Element ID="QuickslotSkillOnDeckOverlay" X="3" Y="3" Width="32" Height="32"> </Element>
                  <Element ID="QuickslotSkillErrorOverlay" X="3" Y="3" Width="32" Height="32"> </Element>
                </Element>
              </Element>
              <Element ID="QuickslotLabelText" X="3" Y="23" Width="32" Height="12"> </Element>
            </Element>
          </Element>
        </Element>

        <Element ID="Toolbar_WebstoreButton" X="962" Y="122" Width="1" Height="1"></Element>
        
        <Element ID="ToolbarButton_RightSlot_6" X="903" Y="147" Width="1" Height="1"></Element>
        <Element ID="ToolbarButton_RightSlot_7" X="931" Y="158" Width="1" Height="1"></Element>
        
        <Element ID="ToolbarFieldMain_LevelMeter_Left_Cap" X="1" Y="10" Width="1" Height="1"></Element>
        <Element ID="ToolbarFieldMain_LevelMeter_Right_Cap" X="1" Y="10" Width="1" Height="1"></Element>
        <Element ID="ToolbarButton_Restxp_TutorialHighlight" X="1" Y="10" Width="1" Height="1"></Element>
        <Element ID="ToolbarFieldMain_LevelMeter_Mid_Left_Cap" X="1" Y="10" Width="1" Height="1"></Element>
        <Element ID="ToolbarFieldMain_LevelMeter_Mid_Right_Cap" X="1" Y="10" Width="1" Height="1"></Element>
        <Element ID="ToolbarFieldMain_LevelMeter_Glass_Overlay" X="1" Y="10" Width="1" Height="1"></Element>
        <Element ID="LevelMeter_Overlay" X="1" Y="10" Width="1" Height="1"></Element>

    </Element>
</PanelFile>
__________________
~·~ DaimonUI ~·~
avatar by Humon
Reply With Quote
  #5  
Unread 02-10-2011, 09:48 AM
Greytail Greytail is offline
The Indomitable
 
Join Date: Apr 2009
Posts: 10
I made the changes that you suggested and it fixed nearly everything. The only thing wrong now is the entire layout needs to come upwards on the screen about 10-30 pixels I'm guessing. The layout actually covers the xp bar up about halfway. I looked at the code but I don't know which portion controls the x and y for the entire layout. Everything else looks fine though.

EDIT

After messing around with it some this morning, I've discovered what is wrong with it I think. It seems that the graphics have an area that came out of the actual interface overlying part of it and it looks like a shadow but it can't be taken out without editing the image. I think I'm going to move on until the original author decides to fix it or until someone else takes it upon themselves to fix it. It's really a nice interface but I'd rather play than try to do graphics layout. I'm not an artist as some of you guys are. I love the work that you all have put into your interfaces and I always look forward to trying them out when they are released. On a side note, you said you had some things in the works Daemon, I can't wait to see what you have come up with now. I would like to see you do a non-dwarf interface like your DaemonUI. The only thing that keeps me from using that one is it's a little tall for my taste. I like having a lot of room on the screen to move things around in. Other than that, props are in order.

Take care and keep up the good work,

Grey

Last edited by Greytail : 02-10-2011 at 10:38 AM.
Reply With Quote
  #6  
Unread 02-12-2011, 02:42 PM
SirArion SirArion is offline
The Wary
 
Join Date: Feb 2011
Posts: 2
@daimon- I tried the lines you suggested and everything looked correct except that I still had my old quickbars overlayed on top of the new MultibarClean ones. The MultibarClean ones didn't seem active, only visual. I couldn't drag a skill or item into them either.

I only tested this at 1920 mode with 3 bars
Reply With Quote
  #7  
Unread 02-12-2011, 05:48 PM
Greytail Greytail is offline
The Indomitable
 
Join Date: Apr 2009
Posts: 10
Unlock your bars with Ctrl-\ and then move them to cover the graphical placeholders. The grey placeholders are just a background image. Not actual button bars.
Reply With Quote
  #8  
Unread 02-13-2011, 10:53 AM
SirArion SirArion is offline
The Wary
 
Join Date: Feb 2011
Posts: 2
Ah, thanks Greytail. In addition I had to go into Esc->Options->Quickslots and uncheck the "Dock Bar X" options before I could move it in the Ctrl+\ mode.
Reply With Quote
  #9  
Unread 02-13-2011, 02:21 PM
motifer motifer is offline
The Wary
 
Join Date: Nov 2010
Posts: 3
could someone be so kind and could update this ui and can upload it ?
Reply With Quote
  #10  
Unread 05-07-2011, 11:45 PM
RenegadePuma RenegadePuma is offline
The Wary
 
Join Date: Dec 2009
Posts: 2
Yes I would like that to Motifer!
Reply With Quote
Reply


Thread Tools
Display Modes

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

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

Similar Threads
Thread Thread Starter Forum Replies Last Post
Request for a clean Interface Faflaf Interface Requests (L) 0 10-04-2010 12:46 PM
A Clean UI triplegash Interface Requests (L) 3 03-30-2007 01:50 PM


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


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