• Mods are now organized as resources. Use the Mods link above to browse for or submit a mod, tool, or prefab.

    The TFP Official Modding Forum Policy establishes the rules and guidelines for mod creators and mod users.

Have quest select POI from list?

kampnkarl

Refugee
Is it possible to use the GotoPOI objective to select a random poi from a list? Or possibly something like [contains(@name, 'book')]

I'm trying to make a challenge/quest to send you to a random or nearest book store.

<objective type="GotoPOISDX, SCore" value="5-50000" phase="1">
                    <property name="completion_distance" value="50" />
                    <property name="PrefabName" value="[contains]" />  <!--random POI here-->
                    <property name="nav_object" value="go_to_trader" />
 </objective>

This bit of code is a snippet from Darkness Falls.

 
Darkness Falls uses SCore, which adds that functionality. In vanilla, the last time I tried (A18 or 19), it would just send you to a trader regardless of what POI you tried to send someone to.

 
Back
Top