Ancient76 Posted May 10, 2018 Share Posted May 10, 2018 I need to kill actor after the quest is finished. Let's say 5 days after. Basically when i visit his home 5 days later, he should be dead. Can it be done? Link to comment Share on other sites More sharing options...
Evangela Posted May 10, 2018 Share Posted May 10, 2018 (edited) Yes, it can be done but it depends on what you know how to do. I would call RegisterForSingleUpdateGameTime(120.0) in the quest stage that is set to complete the quest but doesn't stop it. Then in the quest script, I'd call OnUpdateGameTime(), like this: Event OnUpdateGameTime() (thisActor.GetReference() as Actor).Kill() thisQuest.Stop() EndEvent Edited May 10, 2018 by Rasikko Link to comment Share on other sites More sharing options...
Ancient76 Posted May 10, 2018 Author Share Posted May 10, 2018 That's basically like a quest update? Link to comment Share on other sites More sharing options...
Recommended Posts