Equipable Layers

Here you can post threads requesting help on the official POL Ultima Online Emulator Core 095. Note: Core 095 is no longer officially supported.

Moderator: POL Developer

Post Reply
Cygnet
New User
Posts: 13
Joined: Thu Mar 19, 2020 5:51 pm

Equipable Layers

Post by Cygnet »

Hello yall, i know its and old core, but, im working on it, already have a small playerbase and im ok with it, tbh, i need some help. Got and old Fantasia Distro, modded to warshard, and ppl who got pant mod, cant wear while wearing plates. i've already removed the "layer" prop from itemdesc and it won't work, someone still remember how to?

ty, cygnet
DevGIB
Grandmaster Poster
Posts: 248
Joined: Mon Feb 06, 2006 6:12 am

Re: Equipable Layers

Post by DevGIB »

You need to modify the tile data and set the items you want on a different layer.
There is probably a chance you'll find online someone whose already done it and released the tile data, otherwise its a fairly easy change.
From there you need to distribute the file to your player base.
Cygnet
New User
Posts: 13
Joined: Thu Mar 19, 2020 5:51 pm

Re: Equipable Layers

Post by Cygnet »

DevGIB wrote: Sat Mar 21, 2020 5:00 pm You need to modify the tile data and set the items you want on a different layer.
There is probably a chance you'll find online someone whose already done it and released the tile data, otherwise its a fairly easy change.
From there you need to distribute the file to your player base.
Thank you for your reply, i checked on config/armzone.cfg and noticed that there are 3 layers for leg/feet

Code: Select all

ArmorZone
{
   	Name    	Legs/feet
    	Chance  	14
   	Layer   	4
   	Layer   	3
    Layer   	24
}
tried to use layer 24, now once i wear the plate over the shortpants, platemaillegs won't apear on papperdoll lmao.

Changed the shortpants in tiles.cfg too, also the tiledata.mul with ou fiddler.

Code: Select all

tile 0x152e
{
    Desc short pants
    UoFlags 0x08400000
	layer 24
    Height 1
    Weight 2
    Movable 1
    Equippable 1
}

tile 0x152f
{
    Desc short pants
    UoFlags 0x00400002
    Layer 24
    Height 1
    Weight 2
    Movable 1
    Equippable 1
}
any idea where to go from here? lmao.

Thanks for helping me so far.
DevGIB
Grandmaster Poster
Posts: 248
Joined: Mon Feb 06, 2006 6:12 am

Re: Equipable Layers

Post by DevGIB »

Leg Armour should be layer 24 not the shorts.
I think it might draw the gump from lowest number first. so 1 would be covered by 3 and 3 by 24 etc.
Cygnet
New User
Posts: 13
Joined: Thu Mar 19, 2020 5:51 pm

Re: Equipable Layers

Post by Cygnet »

DevGIB wrote: Sat Mar 28, 2020 5:42 am Leg Armour should be layer 24 not the shorts.
I think it might draw the gump from lowest number first. so 1 would be covered by 3 and 3 by 24 etc.
Did as you, and worked like a charm, edited with UOFiddler, seted pants as fours and platemail legs as 24, then, covare leg/feed for platemail legs and worked, i can wear pants, AFTER i wear platemail legs, not sure why about these, thinking about disabling the the armour flag in tiledata, what do you say?

thank you!
Post Reply