Legs and Longs :P
Legs and Longs :P
i cant use platemail leggings with longs or short pants..
can somebody help me?
can somebody help me?
Sounds like it's a layers issue.
The issue is because your pants and plate mail leggings are set to equip to the same layer. Layer assignments are in the tiledata.mul file. I can't remember all the details but EA/OSI made changes to these assignments with the release of certain versions. This is what caused the issue.
I doubt the problem is or can be fixed in your scripts.
The issue is because your pants and plate mail leggings are set to equip to the same layer. Layer assignments are in the tiledata.mul file. I can't remember all the details but EA/OSI made changes to these assignments with the release of certain versions. This is what caused the issue.
I doubt the problem is or can be fixed in your scripts.
Armor 0x1411
{
Name PlatemailLegs
Desc Platemail Legs
AR 25
Coverage Legs/Feet
VendorSellsFor 218
VendorBuysFor 109
MaxHP 70
strrequired 85
equipscript ::skilladvancerequip
unequipscript ::skilladvancerunequip
DestroyScript ::maindestroy
CProp DefaultDex i-3
CProp MagicPenalty i7
}
///////////////
Armor 0x1539
{
Name longpants
Desc Long Pants
AR 2
Coverage Legs/feet
VendorSellsFor 34
VendorBuysFor 17
Maxhp 70
equipscript ::skilladvancerequip
unequipscript ::skilladvancerunequip
DestroyScript ::maindestroy
}
////////////
Armor 0x152E
{
Name shortpants
Desc Short Pants
AR 2
Coverage Legs/feet
VendorSellsFor 24
VendorBuysFor 12
Maxhp 70
equipscript ::skilladvancerequip
unequipscript ::skilladvancerunequip
DestroyScript ::maindestroy
}
{
Name PlatemailLegs
Desc Platemail Legs
AR 25
Coverage Legs/Feet
VendorSellsFor 218
VendorBuysFor 109
MaxHP 70
strrequired 85
equipscript ::skilladvancerequip
unequipscript ::skilladvancerunequip
DestroyScript ::maindestroy
CProp DefaultDex i-3
CProp MagicPenalty i7
}
///////////////
Armor 0x1539
{
Name longpants
Desc Long Pants
AR 2
Coverage Legs/feet
VendorSellsFor 34
VendorBuysFor 17
Maxhp 70
equipscript ::skilladvancerequip
unequipscript ::skilladvancerunequip
DestroyScript ::maindestroy
}
////////////
Armor 0x152E
{
Name shortpants
Desc Short Pants
AR 2
Coverage Legs/feet
VendorSellsFor 24
VendorBuysFor 12
Maxhp 70
equipscript ::skilladvancerequip
unequipscript ::skilladvancerunequip
DestroyScript ::maindestroy
}
Pierce might be right. You could try running the UOConvert utility again on your tiledata file. It sounds like POL is using data from a different tiledata file than the one in your client. Run the "starthere.bat" file. There's the option under the "RealmGen" menu to create "tiles.cfg". try doing that and see if your pants/longs/plate issue is fixed.
The uoconvert program is part of Pol 96/97. You'll find it inside the main directory. If you are using Pol 95 or lower you don't need that.
If you are using Pol 96 or higher simple type (command prompt pol directory):
uoconvert tiles
copy tiles.cfg config
The uoconvert will convert your tiledata.mul from the directory you choose inside the pol.cfg into a file named tiles.cfg which you copy to the config directory. You need to restart the server if it's running.
If you are using Pol 96 or higher simple type (command prompt pol directory):
uoconvert tiles
copy tiles.cfg config
The uoconvert will convert your tiledata.mul from the directory you choose inside the pol.cfg into a file named tiles.cfg which you copy to the config directory. You need to restart the server if it's running.
You could take a look inside your tiledata.mul using InsideUO or mulpatcher, to be sure that the layers are correct.
The pants should be 4 and the legs should be 24. In both programs you find these values named as "quality".
If that's the case, i only can think of some possible mistakes:
- Tiledata Server is not the same as the tiledata client
- The char has not the required STR to equip the plate legs (85 in your case, like you showed with the itemdesc)
- something within the "skilladvancerequip" script will not allow this combination
The pants should be 4 and the legs should be 24. In both programs you find these values named as "quality".
If that's the case, i only can think of some possible mistakes:
- Tiledata Server is not the same as the tiledata client
- The char has not the required STR to equip the plate legs (85 in your case, like you showed with the itemdesc)
- something within the "skilladvancerequip" script will not allow this combination