So... wanted to get it working for lastest dlc so took a look and extracted the file using XRCatTool and it isn't too complicated Testing it right now as I type this comment...
So far it seems to work (at least with the ToA faction so should work with the rest)
Here what I did:
under the line 161 <include_actions ref="AddCraddleFactions"/> I added <include_actions ref="AddToAFactions"/> <include_actions ref="AddHEFactions"/> <include_actions ref="AddTimelinesFactions"/>
And after that after the new line 224 (aka 221+3 added) </library> I added
Ok would like an update version for ToA. I just tried to copy the setup and add the lines for ToA but for some reason there is not faction to tie to. Go back to hit my head on a wall for a bit. Not sure how to work around this to add it myself.
Maybe someone can help me cause I can't seem to find this information in game because my factions relations are too good with everyone right but but how much does it cost to raise faction.
For example I am thinking of war with the Godrealm. If I tank my faction down to -30, how much will it cost me to repair it back to -15 to get a ceasefire back in place and -9 to be able to use their docks?
Very good for those boarding missions:), tho i plan to eliminate SCA and Hatikva, so i guess i will have to give Argon manager this option at some point, or mine:P
18 comments
Testing it right now as I type this comment...
So far it seems to work (at least with the ToA faction so should work with the rest)
Here what I did:
under the line 161 <include_actions ref="AddCraddleFactions"/> I added
<include_actions ref="AddToAFactions"/>
<include_actions ref="AddHEFactions"/>
<include_actions ref="AddTimelinesFactions"/>
And after that after the new line 224 (aka 221+3 added) </library> I added
<library name="AddToAFactions">
<actions>
<do_if value="@md.Setup_DLC_Pirate.Setup != null">
<append_to_list name="$validFactions" exact="@faction.loanshark"/>
<append_to_list name="$validFactions" exact="@faction.scavenger"/>
</do_if>
</actions>
</library>
<library name="AddHEFactions">
<actions>
<do_if value="@md.Setup_DLC_Boron.Setup != null">
<append_to_list name="$validFactions" exact="@faction.boron"/>
</do_if>
</actions>
</library>
<library name="AddTimelinesFactions">
<actions>
<do_if value="@md.Setup_DLC_Timelines.Setup != null">
<append_to_list name="$validFactions" exact="@faction.kaori"/>
</do_if>
</actions>
</library>
</cues>
</library>
So this properly add the DLC faction if you have the DLC...
For example I am thinking of war with the Godrealm. If I tank my faction down to -30, how much will it cost me to repair it back to -15 to get a ceasefire back in place and -9 to be able to use their docks?
Thanks