LindayWolf Posted January 24, 2013 Share Posted January 24, 2013 Hello guy,I hope you can help me with a little problem. I currently try to create a little quest for my mod, but i have to two problems.1. How can i make Quests repeatable? Is it possible to reset or restart a quest? or go back to certain stages? 2. Iam searching for a condition or script for a conversation, so that the topic is only selectable, if the player has more than 5 "coins" in the inventory I hope you can help me Greetings Linday Wolf Link to comment Share on other sites More sharing options...
kromey Posted January 24, 2013 Share Posted January 24, 2013 1. On the Quest Data tab, there's a checkbox for Run Once; uncheck that to allow the quest to be repeatable. You may also need to check the box for Allow Quest Stages to be Repeated I believe (not certain, that one might only matter if you expect to repeat stages in a given execution of the quest). 2. The condition function you want is GetGold; run it on the player, use the > (or >= if you mean "at least 5" rather than "more than 5") operator, and set the value to 5. Link to comment Share on other sites More sharing options...
littleork Posted January 24, 2013 Share Posted January 24, 2013 Hello guy,I hope you can help me with a little problem. I currently try to create a little quest for my mod, but i have to two problems.1. How can i make Quests repeatable? Is it possible to reset or restart a quest? or go back to certain stages? 2. Iam searching for a condition or script for a conversation, so that the topic is only selectable, if the player has more than 5 "coins" in the inventory I hope you can help me Greetings Linday Wolf 1. The way I do it, is that at the end of the quest, I use myquest.stop() myquest.start() myquest being the name of your quest id 2.in the dialog box; condition box ,search getitemcount , select gold001 and >= 5 ( make sure that it is on target, not subject) Link to comment Share on other sites More sharing options...
Recommended Posts