• If you have a mod, tool or prefab, please use the Resources section. Click Mods at the top of the forums.

mod remove command not working... perplexed

Iceburg71

New member
For loot.xml, i am trying to use the following command that worked in a19 (had to change the group name.

    <remove xpath="/lootcontainers/lootgroup[@name='groupCarWeaponsTools']/property[@name='resourceRepairKit']"/>

not sure why.  any help appreciated.  I don't see anything, but I am probably missing something really simple....

 
Yup... it's          ]/item[@name='resourceRepairKit']"/> . . . . . . .   not 'property'  @name=     

I have kicked my a** SO many times for stuff even simpler than this.   😂

 
Last edited by a moderator:
I am having a similar issue trying to remover the 500 steel cubes from airdrops... 

<remove xpath="/lootcontainers/lootgroup[@name='groupAirDropT5Bundles']/itemgroup[@name='groupQuestSteelShapes']"/>

any ideas?

 
I am having a similar issue trying to remover the 500 steel cubes from airdrops... 

<remove xpath="/lootcontainers/lootgroup[@name='groupAirDropT5Bundles']/itemgroup[@name='groupQuestSteelShapes']"/>

any ideas?


Should be

Code:
<remove xpath="/lootcontainers/lootgroup[@name='groupAirDropT5Bundles']/item[@group='groupQuestSteelShapes']"/>
 
Back
Top