Everything in the quest works well except this.
This is supposed to make it so that when the player takes a scroll from the other persons inventory it advances to stage 40.
Any help would be appreciated
Scriptname SSQNoteScript extends ObjectReference
Quest Property SSQ01 Auto
Event OnContainerChanged(ObjectReference newContainer, ObjectReference oldContainer)
if (newContainer == Game.GetPlayer())
SSQ01.SetObjectivedisplayed(40)
SSQ01.SetStage(40)
endif
EndEvent
