Got question,
I'm getting I think an incompatibility with Apocalypse Now mod for Advanced Engineering progression, since ApocNow changes the vanilla skill trees a bit. As a result, Oakraven's modlets which unlock crafting stations through Advanced Engineering don't unlock even if I max out the Advanced Engineering skill.
I'm trying to fix it but not familiar how 7Days XML works, are the values that need to be fixed in the progression.xml files?
The perk name in ApocNow seems ot be the same (it's still "perkAdvancedEngineering" from what I can tell) and that's the same thing used in the Oakraven modlet progression.xml.
Do I need to modify something in this file to edit the progression unlock?
<xml>
<append xpath="/progression/perks/perk[@name='perkAdvancedEngineering']">
<effect_group>
<passive_effect name="CraftingTier" operation="base_set" level="1,2,3,4,5" value="2,3,4,5,6" tags="PowerCell"/>
<passive_effect name="RecipeTagUnlocked" operation="base_set" level="1,5" value="1" tags="PowerCell"/>
<passive_effect name="CraftingTier" operation="base_set" level="1,2,3,4,5" value="2,3,4,5,6" tags="solarCell"/>
<passive_effect name="RecipeTagUnlocked" operation="base_set" level="1,5" value="1" tags="solarCell"/>
<passive_effect name="RecipeTagUnlocked" operation="base_set" level="2,5" value="1" tags="WorkbenchPowerCell"/>
<passive_effect name="RecipeTagUnlocked" operation="base_set" level="3,5" value="1" tags="OakGenerator,OakGenerator2,OakBlackBetty"/>
<passive_effect name="RecipeTagUnlocked" operation="base_set" level="4,5" value="1" tags="Oakbatterybank,Oakbatterybank2,ArramusSolarPower,ArramusTurretPower"/>
</effect_group>
</append>
</xml>
Or am I barking up the wrong tree? Alternately, I'm okay with removing the progression requirement altogether and just have it unlocked, since I have already earned the perk in my game.
*** EDIT ***
Nevermind figured it out. 7 Days just wants the crafting tiers to match up. Vanilla crafting tiers only go up to 5, ApocNow goes up to 10. Just need to change the level from 5 to 10, etc.
Have fixed it all thanks!