• If you have a mod, tool or prefab, please use the Resources section. Click Mods at the top of the forums.

Custom quests from trader

BFT2020 said:
This quest starts by reading a note with it on it, but you turn it in to the trader when you complete it.  Similar objectives to your quest, but mine starts differently.  That is where I think the issue is with your quest.  Maybe add this to the code:

        <objective type="RandomGotoNPC" phase="1">
            <property name="completion_distance" value="20"/>
            <property name="distance" value="350-600"/>
            <property name="nav_object" value="quest" />
        </objective>

        <objective type="RallyPoint">
            <property name="start_mode" value="Create"/>
            <property name="phase" value="2"/>
            <property name="nav_object" value="rally" />
        </objective>




This adds a rally to the quest which will change it slightly (so now a floating yellow exclamation point).  This is from the buried supplies quests.  I don't think this creates the object underground (that is done in phase 3). 

Thinking, I would add those in front of your fetchkeep objectives (and now make it phase 3 and advanced the other steps accordingly).  I probably would reduce the property "distance" (from 350-600) to something closer so you activate the rally marker outside of the trader protection area. 
So I added the

    <objective type="RandomGotoNPC" phase="1">
            <property name="completion_distance" value="20"/>
            <property name="distance" value="80-100"/>
            <property name="nav_object" value="quest" />
        </objective>

which for ME, gives me a quest starting point of about 88m -- but if anyone else tries it, it wants to start the quest 2.1km away... ??? SO Confused

 
Also, using

Gather Supplies ([DECEA3]{rally.distance} {rally.direction}[-])
Gather Supplies ([DECEA3]{quest.distance} {quest.direction}[-])
Gather Supplies ([DECEA3]{goto.distance} {goto.direction}[-])
Gather Supplies ([DECEA3]{treasure.distance} {treasure.direction}[-])

in the localization file, just shows...

Gather Supplies ( word word )
instead of
Gather Supplies (86 m N)
 

 
Still stuck on
"which for ME, gives me a quest starting point of about 88m -- but if anyone else tries it, it wants to start the quest 2.1km away... ??? SO Confused "

That is also the case with the 12 note quests you find or buy from the trader. They give ME the proper distance, but everyone else, same spot, 2.1km away.

 
Back
Top