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
Equipable Layers
Moderator: POL Developer
Re: Equipable Layers
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.
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
Thank you for your reply, i checked on config/armzone.cfg and noticed that there are 3 layers for leg/feetDevGIB 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.
Code: Select all
ArmorZone
{
Name Legs/feet
Chance 14
Layer 4
Layer 3
Layer 24
}
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
}
Thanks for helping me so far.
Re: Equipable Layers
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.
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
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!