lotrointerface.com
Search Downloads


Go Back   LoTROInterface > LotRO > Developer Discussions > LotRO Wish List (L)

Reply
Thread Tools Display Modes
  #1  
Unread 04-18-2011, 01:33 PM
wackafoo wackafoo is offline
The Indomitable
 
Join Date: Aug 2009
Posts: 12
Skin - Plugin request

Can someone make something to have this info on your screen *or just the bar and the amount of the bar* so it does not take up half the screen?

http://i470.photobucket.com/albums/r...nShot00536.jpg
Reply With Quote
  #2  
Unread 04-18-2011, 06:29 PM
ZhuHanuku's Avatar
ZhuHanuku ZhuHanuku is offline
The Undying
Interface Author - Click to view interfaces
 
Join Date: Sep 2009
Posts: 43
What do you mean by "this info"? Do you mean The War window? If so, that window used to be a tab on the character window. It was turned into a separate window after update 2. Turbine hasn't released the UI code for that window yet. Someone really clever might be able to guess the code to resize the window but other than that, sorry, not possible.
__________________
Zhu Hanuku :: Black Vellum Portal :: LotRO Duo
Reply With Quote
  #3  
Unread 04-19-2011, 08:58 AM
lunarwtr's Avatar
lunarwtr lunarwtr is offline
The Undying
Interface Author - Click to view interfaces
 
Join Date: Feb 2011
Posts: 121
Quote:
Turbine hasn't released the UI code for that window yet.
What do you mean by this? Is there a download for skins that turbine produces? Where can I find this, and what sort of stuff does it contain. Sorry for stupid questions. I have only been working on the lua side of things up to date.
__________________
Author of Lotro Compendium, Waypoint, and Lotro Plugin Compendium (LPC)
Reply With Quote
  #4  
Unread 04-19-2011, 10:53 AM
Garan's Avatar
Garan Garan is offline
The Undying
Interface Author - Click to view interfaces
 
Join Date: Oct 2010
Posts: 339
Quote:
Originally Posted by lunarwtr
What do you mean by this? Is there a download for skins that turbine produces? Where can I find this, and what sort of stuff does it contain. Sorry for stupid questions. I have only been working on the lua side of things up to date.
Check out http://www.lotrointerface.com/downlo...inArtPack.html. Unfortunately, it hasn't been updated for the lastest changes but it's a good place to start.
Reply With Quote
  #5  
Unread 04-19-2011, 06:58 PM
lunarwtr's Avatar
lunarwtr lunarwtr is offline
The Undying
Interface Author - Click to view interfaces
 
Join Date: Feb 2011
Posts: 121
Not sure if it helps, as I not familiar with skinning, but I think you can get different types of the skin ids via the following perl script (assuming you running english client).

If you take previous pack, and all if its element ids, you can use process of elimination to figure out what has changed.

Code:
my $sta = 176960420;
my $end = 177202014;
my $len = $end - $sta;

open IN, "<client_general.dat";
seek(IN, $sta, 0);
my $buffer;
if (my $rv = read(IN,$buffer, $len)) {
    my @recs = split(/..\x00\x10./, $buffer);
    foreach my $rec (@recs) {
        $rec =~ s/\W//gis;
        print "$rec\n";
    }
}

close IN;
__________________
Author of Lotro Compendium, Waypoint, and Lotro Plugin Compendium (LPC)
Reply With Quote
  #6  
Unread 04-20-2011, 01:02 PM
Digital_Utopia's Avatar
Digital_Utopia Digital_Utopia is offline
The Undying
Interface Author - Click to view interfaces
 
Join Date: Sep 2010
Posts: 207
Send a message via MSN to Digital_Utopia Send a message via Yahoo to Digital_Utopia
Quote:
Originally Posted by lunarwtr
Not sure if it helps, as I not familiar with skinning, but I think you can get different types of the skin ids via the following perl script (assuming you running english client).

If you take previous pack, and all if its element ids, you can use process of elimination to figure out what has changed.

Code:
my $sta = 176960420;
my $end = 177202014;
my $len = $end - $sta;

open IN, "<client_general.dat";
seek(IN, $sta, 0);
my $buffer;
if (my $rv = read(IN,$buffer, $len)) {
    my @recs = split(/..\x00\x10./, $buffer);
    foreach my $rec (@recs) {
        $rec =~ s/\W//gis;
        print "$rec\n";
    }
}

close IN;
It appears that UI element names start off at around 1029756 and end around 1372850 - of course there's nothing stating the structure or size of these elements, but there are 4 bytes of data before each name - which may be some form of ID.

Slightly off topic, this is my first time browsing this section, and can't help be a little interested by the Xbox/PS3 related strings.
__________________

Lord of the Rings Online
75 Fourohfour | 75 Artemedis | 60 Whiskeytango Foxtrot | 50 Mistah Boombastic | 56 Appetizer | 25 Aggromi
61 Onepointtwentyone Gigawatts


World of Warcraft
90 Downlo 85 Gravetaxi 85 Ümad 85 Artemedis 85 Guthuros
Reply With Quote
  #7  
Unread 04-20-2011, 01:17 PM
lunarwtr's Avatar
lunarwtr lunarwtr is offline
The Undying
Interface Author - Click to view interfaces
 
Join Date: Feb 2011
Posts: 121
Quote:
Originally Posted by Digital_Utopia
It appears that UI element names start off at around 1029756 and end around 1372850 - of course there's nothing stating the structure or size of these elements, but there are 4 bytes of data before each name - which may be some form of ID.

Slightly off topic, this is my first time browsing this section, and can't help be a little interested by the Xbox/PS3 related strings.
My guess is that is simply a lookup table. Every few entries there is something like the name of a graphic resource. A couple of the other files have what look like embedded jpg type data. And immediately following the element names section look like embedded tga data.
__________________
Author of Lotro Compendium, Waypoint, and Lotro Plugin Compendium (LPC)
Reply With Quote
  #8  
Unread 04-20-2011, 11:39 PM
Digital_Utopia's Avatar
Digital_Utopia Digital_Utopia is offline
The Undying
Interface Author - Click to view interfaces
 
Join Date: Sep 2010
Posts: 207
Send a message via MSN to Digital_Utopia Send a message via Yahoo to Digital_Utopia
Quote:
Originally Posted by lunarwtr
My guess is that is simply a lookup table. Every few entries there is something like the name of a graphic resource. A couple of the other files have what look like embedded jpg type data. And immediately following the element names section look like embedded tga data.
If it's anything like the other dat files, there should be at least one section ahead of it that acts as a lookup table, and the graphics resources may or may not completely exist at that location. Ran across several "images" in other .dat files that would start off with the JFIF JPEG header, but then stop before it reached the footer - presumably the rest of it would be located somewhere else in the file. Unfortunately those split up files are the only stumbling block to figuring out the .dat format completely.

Anyway, my apologies for derailing the thread - it's just that .dat files have pretty much been my elusive prey off and on for the past 2+ years
__________________

Lord of the Rings Online
75 Fourohfour | 75 Artemedis | 60 Whiskeytango Foxtrot | 50 Mistah Boombastic | 56 Appetizer | 25 Aggromi
61 Onepointtwentyone Gigawatts


World of Warcraft
90 Downlo 85 Gravetaxi 85 Ümad 85 Artemedis 85 Guthuros
Reply With Quote
  #9  
Unread 10-17-2011, 01:48 PM
wackafoo wackafoo is offline
The Indomitable
 
Join Date: Aug 2009
Posts: 12
ALRIGHT the new pack is out for awhile and waited to get everyone used to it. Now lets see if anyone can do anything with the renown menu! I also seen that a money plugin was made. Im wondering if that can be used to make a dragable renown bar on the screen. Either way at this moment if anyone wants to watch their bar, that have to have a large panel up. I would really like to see that reduced or removed with only the bar showing. ALot of players would love this feature.
Reply With Quote
  #10  
Unread 10-17-2011, 02:26 PM
Garan's Avatar
Garan Garan is offline
The Undying
Interface Author - Click to view interfaces
 
Join Date: Oct 2010
Posts: 339
Quote:
Originally Posted by wackafoo
I also seen that a money plugin was made. Im wondering if that can be used to make a dragable renown bar on the screen.
Sorry, we don't have Lua access to character's Infamy/Reknown.
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


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


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