Trader Quest changes I would like.

*Trader POI Quest for POI's in each BIO not to repeat the same POI until all POI's have been quested.

This way you will explore every building in a BIO and won't get rewarded for doing the same POI until you've done everyone in the BIO.

*Be able to mark the Quest you want to go to using the map interphase
*Be able to tell on map when hovering over Quest marker which Trader the Quest is from. Could be as simple as a line or dotted line from Quest Marker to Trader.
 
I'd just like an option that one trader would only offer a quest once per POI. So if you did a clear quest in one POI you need to search a fetch quest for that POI at another trader. I have a mod that I don't even know whether it's working in the actual version that just prevents the same quest type being offered by one trader in a same POI for a specified number of days (also even don't know whether ingame or realtime days).

XML:
<configs>
    <append xpath="/blocks">
        <block name="ResetPOIsConfig">
            <property name="Extends" value="terrDesertGround"/>
            <property name="CreativeMode" value="None"/>
            <property name="Tier1Cooldown" value="365"/>
            <property name="Tier2Cooldown" value="365"/>
            <property name="Tier3Cooldown" value="365"/>
            <property name="Tier4Cooldown" value="365"/>
            <property name="Tier5Cooldown" value="365"/>
            <property name="Tier6Cooldown" value="365"/>
        </block>
    </append>
</configs>
 
Would be hard to accomplish for higher tiers, but they certainly could do this for lower tiers (1-3, maybe 4). The problem is sometimes the POI variety isn't as high in smaller towns and I think there is a max quest distance from any given trader (I'm not 100% certain on that last bit).
 
I'd just like an option that one trader would only offer a quest once per POI. So if you did a clear quest in one POI you need to search a fetch quest for that POI at another trader. I have a mod that I don't even know whether it's working in the actual version that just prevents the same quest type being offered by one trader in a same POI for a specified number of days (also even don't know whether ingame or realtime days).

XML:
<configs>
    <append xpath="/blocks">
        <block name="ResetPOIsConfig">
            <property name="Extends" value="terrDesertGround"/>
            <property name="CreativeMode" value="None"/>
            <property name="Tier1Cooldown" value="365"/>
            <property name="Tier2Cooldown" value="365"/>
            <property name="Tier3Cooldown" value="365"/>
            <property name="Tier4Cooldown" value="365"/>
            <property name="Tier5Cooldown" value="365"/>
            <property name="Tier6Cooldown" value="365"/>
        </block>
    </append>
</configs>
Where would I put this XML to try it?
 
Back
Top