Nutulator Posted August 29, 2016 Share Posted August 29, 2016 How would I end a quest after a timer has expired? Let's say I have a stage which has the fragment 'kmyQuest.Stop()" running on it, when this stage is set I want it to wait 10 seconds before it actually ends the quest. How would I do this? Thanks. Link to comment Share on other sites More sharing options...
StuykGaming Posted August 30, 2016 Share Posted August 30, 2016 You could just use Utility.Wait since it's such a minor amount of time. ; Do Some Stuff Utility.Wait(10) kmyQuest.Stop() debug.Trace("Quest Stopped") Link to comment Share on other sites More sharing options...
Nutulator Posted August 30, 2016 Author Share Posted August 30, 2016 Works perfectly--thanks a lot! Link to comment Share on other sites More sharing options...
Recommended Posts