lotrointerface.com
Search Downloads


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

Reply
Thread Tools Display Modes
  #1  
Unread 09-23-2010, 05:16 AM
Domedian's Avatar
Domedian Domedian is offline
The Undefeated
 
Join Date: Sep 2010
Location: Upstate New York
Posts: 9
Another minimalist request

I've been perusing other Skins and just can't seem to modify anything to suit my needs. I started off trying to resize the XP Bar to match the toolbar quickslots from zercleanui.

I tried inserting the following into their SkinDefinition.xml:
Code:
<PanelFile ID="toolbar">

	<Element ID="LevelMeter" 					X="428"  Y="187" Width="500" Height="20">					
		
        	<Element ID="LevelMeter_LevelUpXP_TutorialHighlight"    X="0"    Y="0"   Width="500" Height="20" />
        	<Element ID="LevelMeter_Experience_TutorialHighlight"   X="0"    Y="0"   Width="500" Height="20" />		
       		<Element ID="LevelMeterText" 				X="0"    Y="0"   Width="500" Height="20" />
        	<Element ID="LevelMeterFill" 				X="0"    Y="0"   Width="500" Height="20" />
       		<Element ID="LevelMeter_BonusMeter" 			X="0"    Y="0"   Width="500" Height="20" />
		<Element ID="LevelMeterBg" 				X="0"    Y="0"   Width="500" Height="20" />
		<Element ID="LevelMeter_Overlay" 			X="0"    Y="0"   Width="500" Height="20" />
        	
      	</Element>
		
</PanelFile>
I then tried changing the widths, which made no change.

I figured if I was going to ask for help, i would ask those more knowledgable for help with exactly what I have visioned.

I'd like to move the quickslot portion all the way to the bottom right corner of my screen. Below that the XP Bar of the same width. I plan on stacking the other quickslot bars right on top of it making a block. The toolbar buttons I would like to run vertically up the right side, leaving room for just them between the quickslots and the edge of my screen. I also know the auto attack button can't just disappear, or the active glow part, so maybe on the left of the bars would look fine. That's pretty much it, I can handle anything else on my own I think. I've tried looking for Skins that are close to this, but couldn't find anything that was working.

I hate to just plain ask for a custom UI, so if there is some guidance you can provide I would love to be as active with it as possible. I'm just not getting it by looking through others coding apparently. Which is awkward since I have made changes to PHP coding by just looking through it...

Thanks in advance,
Dom

Edit: If your going to read it, I can at least try to make it an easy read... and I play at 1920x1080 Res

Last edited by Domedian : 09-23-2010 at 05:20 AM. Reason: Spelling and resolution...
Reply With Quote
  #2  
Unread 09-23-2010, 06:34 AM
Brygard2007's Avatar
Brygard2007 Brygard2007 is offline
The Undying
Interface Author - Click to view interfaces
 
Join Date: Sep 2007
Location: http://www.youtube.com/user/Brygard2009
Posts: 183
I also had trouble with it.

i find out that you must always have the following code on the second line:

Code:
<Element ID="ToolbarField" X="0" Y="9999" Width="1024" Height="200">
it should look like this:

Code:
<PanelFile ID="toolbar">
<Element ID="ToolbarField" X="0" Y="9999" Width="1024" Height="200">

	<Element ID="LevelMeter" 					X="428"  Y="187" Width="500" Height="20">					
		
        	<Element ID="LevelMeter_LevelUpXP_TutorialHighlight"    X="0"    Y="0"   Width="500" Height="20" />
        	<Element ID="LevelMeter_Experience_TutorialHighlight"   X="0"    Y="0"   Width="500" Height="20" />		
       		<Element ID="LevelMeterText" 				X="0"    Y="0"   Width="500" Height="20" />
        	<Element ID="LevelMeterFill" 				X="0"    Y="0"   Width="500" Height="20" />
       		<Element ID="LevelMeter_BonusMeter" 			X="0"    Y="0"   Width="500" Height="20" />
		<Element ID="LevelMeterBg" 				X="0"    Y="0"   Width="500" Height="20" />
		<Element ID="LevelMeter_Overlay" 			X="0"    Y="0"   Width="500" Height="20" />
        	
      	</Element>
		
</PanelFile>
Oh by the way you notice I have set the Y at 9999 because I wanted the main bar to be always stuck at the botttom of the screen no matter what high resolution you play at.
Reply With Quote
  #3  
Unread 09-23-2010, 10:36 AM
Domedian's Avatar
Domedian Domedian is offline
The Undefeated
 
Join Date: Sep 2010
Location: Upstate New York
Posts: 9
Still isn't working, but I'm still playing with it. It disables the skin completely and makes it disappear from the dropdown in UI options.

Appreciate the reply,
Dom
Reply With Quote
  #4  
Unread 09-23-2010, 10:43 AM
Domedian's Avatar
Domedian Domedian is offline
The Undefeated
 
Join Date: Sep 2010
Location: Upstate New York
Posts: 9
Added another closing tag and now it's showing up, but the pieces aren't lining up. So progress! I hope my Kin doesn't get annoyed by my constant relogging.

Code:
<PanelFile ID="toolbar">

    <Element ID="ToolbarField" X="0" Y="9999" Width="1024" Height="200">

	<Element ID="LevelMeter" 					X="428"  Y="187" Width="500" Height="20">					
		
        	<Element ID="LevelMeter_LevelUpXP_TutorialHighlight"    X="0"    Y="0"   Width="500" Height="20" />
        	<Element ID="LevelMeter_Experience_TutorialHighlight"   X="0"    Y="0"   Width="500" Height="20" />		
       		<Element ID="LevelMeterText" 				X="0"    Y="0"   Width="500" Height="20" />
        	<Element ID="LevelMeterFill" 				X="0"    Y="0"   Width="500" Height="20" />
       		<Element ID="LevelMeter_BonusMeter" 			X="0"    Y="0"   Width="500" Height="20" />
		<Element ID="LevelMeterBg" 				X="0"    Y="0"   Width="500" Height="20" />
		<Element ID="LevelMeter_Overlay" 			X="0"    Y="0"   Width="500" Height="20" />
        	
      	</Element>
		
	</Element>
		
</PanelFile>
Reply With Quote
  #5  
Unread 09-23-2010, 11:43 AM
Brygard2007's Avatar
Brygard2007 Brygard2007 is offline
The Undying
Interface Author - Click to view interfaces
 
Join Date: Sep 2007
Location: http://www.youtube.com/user/Brygard2009
Posts: 183
Ops I forgot about that Element,sorry.

Lol yeah I know what you mean about constant relogs.

When I was redesigning my dressing room I logged least 100 times or more.
Reply With Quote
  #6  
Unread 09-23-2010, 11:56 AM
Domedian's Avatar
Domedian Domedian is offline
The Undefeated
 
Join Date: Sep 2010
Location: Upstate New York
Posts: 9


This is what I'm really trying to do in the bottom right hand corner of my screen. But getting the hang of moving anything is giving me some trouble.

Dom
Reply With Quote
  #7  
Unread 09-23-2010, 01:03 PM
Brode's Avatar
Brode Brode is offline
The Undying
 
Join Date: Apr 2007
Posts: 47
id love a bottombar layout like that as well.
Reply With Quote
  #8  
Unread 09-23-2010, 04:33 PM
Domedian's Avatar
Domedian Domedian is offline
The Undefeated
 
Join Date: Sep 2010
Location: Upstate New York
Posts: 9
I'm working on it now, I think I'm making progress. So maybe I will get to claim my UI as my own .
Reply With Quote
  #9  
Unread 09-23-2010, 07:01 PM
Domedian's Avatar
Domedian Domedian is offline
The Undefeated
 
Join Date: Sep 2010
Location: Upstate New York
Posts: 9
Well, this started as a request and now I'm more looking for assistance. I've worked my way through some code from Ray UI 2.2, thank you Ray! My hat off to you sir. If a mod could move this to the appropriate forum, it would be appreciated.

This is where I am now:


I've managed to move most things where I want them, I can't seem to get the xp bar to work now though.

Any advice would be appreciated,
Dom
Reply With Quote
  #10  
Unread 10-12-2010, 10:42 PM
Brode's Avatar
Brode Brode is offline
The Undying
 
Join Date: Apr 2007
Posts: 47
how is this going?
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
Minimalist UI Mod request Neen Interface Requests (L) 21 11-14-2010 12:28 PM
super minimalist vitals Lennalf Pre-Beta Interfaces (L) 0 06-17-2008 12:22 AM
Minimalist UI lost45 Interface Requests (L) 8 05-09-2007 04:49 AM


All times are GMT -5. The time now is 05:21 AM.


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