Hey everyone! I'm having an issue with a script I'm trying to run. I searched for running a script once, and from what I found out, the best way to this is to run the script as quest. So I followed the tutorials(created a quest, added the script to the quest, and so on), but after testing it seems like the script doesn't work. I do get the debug message, but the script doesn't do what is suppose to. Here is my script:
Scriptname ModCompanionsQuestReset extends Quest
CompanionsStoryQuest property C00 auto
Event OnInit()
C00.Stop()
Utility.Wait(10.0)
Debug.Notification("ModCompanionsQuestReset is initialized")
EndEvent
I would appreciate any help with this.