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

Is there a way I can add more than one "RepairTools" value to an item?

LastTugBoat243

New member
I'm trying to make a mod that adds multiple items for repairing weapons. But I can only change the "RepairTool" value out for a different one not add any more.

<configs>

<append xpath="/items/item[@name='gunHandgunT1Pistol']">
    <property name="RepairTools" value="resource_gunCleaningKit"/>  
</append>

<item name="resource_gunCleaningKit">
        <property name="HoldType" value="45"/>
        <property name="Tags" value="junk"/>
        <property name="Meshfile" value="#Other/Items?Misc/sackPrefab.prefab"/>
        <property name="DropMeshfile" value="#Other/Items?Misc/sack_droppedPrefab.prefab"/>
        <property name="Material" value="Msteel"/>
        <property name="Stacknumber" value="25"/> <!-- STK resourceRepairKit -->
        <property name="EconomicValue" value="186"/>
        <property name="RepairTime" value="3"/>
        <property name="RepairAmount" value="225"/>
        <property name="Group" value="Resources"/>
    </item>

</configs>

Is it only possible to have a single "RepairTools" value for an item?

image.png

 
Last edited by a moderator:
Back
Top