Nutulator Posted August 29, 2016 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.
StuykGaming Posted August 30, 2016 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")
Recommended Posts