Lady's wearing incorrect armour?

Users who are viewing this thread

Max2150

Regular
Using the module system I have changed the Lady's to wear faction appropriate clothing.
Code:
["kingdom_8_lady_11","Lady Zhenji","Zhenji",tf_hero|tf_female|tf_unmoveable_in_party_window,0,reserved,fac_kingdom_8, [      itm_china_rich_female_robe_2,       itm_leather_boots],     def_attrib|level(2),wp(50),knows_common|knows_riding_2, 0x000000003010334177da73471932c6ea00000000001d86820000000000000000],

This is just an example of one of the Lady's. However, in game a few of them are wearing their original dresses, and this Lady is wearing a hat in my game.
Anyone got any ideas what's going on.

https://ibb.co/mK7dWK

Thanks - Max
 
Max2150 said:
Using the module system I have changed the Lady's to wear faction appropriate clothing.
Code:
["kingdom_8_lady_11","Lady Zhenji","Zhenji",tf_hero|tf_female|tf_unmoveable_in_party_window,0,reserved,fac_kingdom_8, [      itm_china_rich_female_robe_2,       itm_leather_boots],     def_attrib|level(2),wp(50),knows_common|knows_riding_2, 0x000000003010334177da73471932c6ea00000000001d86820000000000000000],

This is just an example of one of the Lady's. However, in game a few of them are wearing their original dresses, and this Lady is wearing a hat in my game.
Anyone got any ideas what's going on.

  you're getting tripped up by a script called from within script_initialize_aristocracy called  script_add_lady_items
It is adding/changing clothes right over your changes, so comment out this line:

                    (call_script, "script_add_lady_items", ":cur_lady"),
 
Oh Thank you so much! You hero, I was getting quite frustrated trying to work this out.

Thank you for the reply and the help :smile:
 
Back
Top Bottom