• Mods are now organized as resources. Use the Mods link above to browse for or submit a mod, tool, or prefab.

    The TFP Official Modding Forum Policy establishes the rules and guidelines for mod creators and mod users.

Starter Kit Help

Dunsirn

Refugee
I downloaded this mod for a starter kit and am able to customize the items, but I can't figure out how to change an item quality. For example I would like to change the iron tools to level 6 stone tools. Can anyone help with this?


<asb>
<append xpath="/items">
<item name="AbasiyanikStarterBundle">
<property name="CreativeMode" value="None"/>
<property name="DescriptionKey" value="AbasiyanikStarterBundleDesc"/>
<property name="ItemTypeIcon" value="bundle"/>
<property name="CustomIcon" value="cntGarageStorage"/>
<property name="HoldType" value="45"/>
<property name="Meshfile" value="@:Other/Items/Misc/sackPrefab.prefab"/>
<property name="DropMeshfile" value="@:Other/Items/Misc/sack_droppedPrefab.prefab"/>
<property name="Material" value="Mmetal"/>
<property name="Stacknumber" value="1"/>
<property name="Weight" value="0"/>
<property name="SellableToTrader" value="false"/>
<property name="Group" value="Special Items"/>
<property class="Action0">
<property name="Class" value="OpenBundle"/>
<property name="Delay" value="0"/>
<property name="Use_time" value="0"/>
<property name="Create_item" value="foodHoney,medicalSplint,meleeWpnBladeT1HuntingKnife,meleeToolPickT1IronPickaxe,meleeToolAxeT1IronFireaxe,meleeToolShovelT1IronShovel,drinkJarPureMineralWater,foodBaconAndEggs,gunHandgunT1Pistol,ammo9mmBulletBall,resourceRepairKit,resourceWood,medicalFirstAidBandage,toolCookingPot"/>
<property name="Create_item_count" value="2,1,1,1,1,1,5,5,1,100,5,1000,4,1"/>
</property>
</item>
</append>
</asb>
 
I haven't done anything with this lately, but in the past the way it worked was if an item has a quality level, then the corresponding Create_item_count specified the quality level. If it was something like ammo, it's a quantity. So, I'd try changing the iron pickaxe to the stone axe, and change the corresponding count value to 6.
Post automatically merged:

And to expand on that, if you wanted 2 stone axes for some reason (or some other item with a quality) you'd list it twice in Create_item.
 
You're welcome, and thanks for confirming it still works. And I'll just add another note for completeness. If you wanted a possible range of Levels, you would write the count like 4-6 for a possible range of T4 to T6.
 
Back
Top