Parzival2020
New member
Hi all, first post here, so forgive any common errors.
I am just getting in to messing with the game files and am wondering if it's possible to define what traders have for sale and how much they cost.
For example if I want the trader to sell things like concrete blocks and frames, is this possible?
I have been in to the Traders.xml and tried adding:
<item name="pouredConcreteBlock" count="1,3" prob="20"/>
to the all traders section and specifically to trader Joel
I then realised the the concrete block probably doesnt have a value set to it so added this to the items.xml
<item name="resourceConcreteMix">
<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="MresourceConcreteMix"/>
<property name="Weight" value="20"/>
<property name="Stacknumber" value="1000"/> <!-- STK resource -->
<property name="EconomicValue" value="125"/>
<property name="EconomicBundleSize" value="50"/>
<property name="Group" value="Resources"/>
</item>
But no dice. Am I missing something or is it just not possible?
I am just getting in to messing with the game files and am wondering if it's possible to define what traders have for sale and how much they cost.
For example if I want the trader to sell things like concrete blocks and frames, is this possible?
I have been in to the Traders.xml and tried adding:
<item name="pouredConcreteBlock" count="1,3" prob="20"/>
to the all traders section and specifically to trader Joel
I then realised the the concrete block probably doesnt have a value set to it so added this to the items.xml
<item name="resourceConcreteMix">
<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="MresourceConcreteMix"/>
<property name="Weight" value="20"/>
<property name="Stacknumber" value="1000"/> <!-- STK resource -->
<property name="EconomicValue" value="125"/>
<property name="EconomicBundleSize" value="50"/>
<property name="Group" value="Resources"/>
</item>
But no dice. Am I missing something or is it just not possible?