• 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.

Add quest tier to challenge

pristn

Refugee
Hi everybody. Is it possible to add a quest level to the quest challenge? Right now, any difficulty tier counts to achievement.

<challenge name="questComplete" title_key="challengeQuestComplete" icon="ui_game_symbol_quest" group="Traders"
short_description_key="challengeQuestCompleteShort" description_key="challengeQuestCompleteDesc"
reward_text_key="challenge_reward_2000xp" reward_event="challenge_reward_2000">
<objective type="QuestComplete" count="2" difficulty="2" biome="pine_forest"/>
</challenge>

The biome is working, but Tier is not working, I don't understand which command to use.
" tier, QuestTier, difficulty" is not working
 
without studding to much. I think best bet I would be to look at is if you can make your own "ChallengeStatAward" and see if you can find a way to use the AwardChallenge action on achieving your specific tiered quest. until another way is can be found.

eg
in Challenges.xml
<objective type="ChallengeStatAwarded" challenge_stat="QuestLevelComplete" stat_text_key="Text" count="1"/>

and then find somewhere to add (hopefully quests.xml allows them)
<triggered_effect trigger="something" action="AwardChallenge" challenge_stat="QuestLevelComplete" count="1">
 
Back
Top