Page 1 of 1

Equipable Layers

Posted: Fri Mar 20, 2020 2:21 pm
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

Re: Equipable Layers

Posted: Sat Mar 21, 2020 5:00 pm
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.

Re: Equipable Layers

Posted: Sun Mar 22, 2020 10:14 am
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.

Re: Equipable Layers

Posted: Sat Mar 28, 2020 5:42 am
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.

Re: Equipable Layers

Posted: Mon Mar 30, 2020 7:24 pm
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!