lelcat Posted August 26, 2016 Share Posted August 26, 2016 I am trying to start a quest by picking up a holotape. Created the quest and a basic 0 stage. Then added a defaultrefoncontainerchangedto script to the holotape and set the appropriate quest and stage. But it won't work ingame. Link to comment Share on other sites More sharing options...
TummaSuklaa Posted August 26, 2016 Share Posted August 26, 2016 (edited) Default scripts are confusing.. I'd use a different approach. Add the player to an alias to a dummy quest and add this script(untested) to the alias. Quest property QuestYouWantToStart auto Holotape property TapeToListenFor auto Event OnAliasInit() AddInventoryEventFilter(TapeToListenFor) EndEvent Event OnItemAdded(Form akBaseItem, int aiItemCount, ObjectReference akItemReference, ObjectReference akSourceContainer) if akBaseItem == TapeToListenFor QuestYouWantToStart.Start() ; Note: The first stage will be the current stage. RemoveInventoryEventFilter(TapeToListenFor) GetOwningQuest().Stop() else ; some error occured EndIf EndEvent Edited August 26, 2016 by TummaSuklaa Link to comment Share on other sites More sharing options...
Recommended Posts