Scriptname AAs2hTFCEnableDecimusScript extends ReferenceAlias {Enables Decimus after acquiring the journal} Book Property MS01MargretJournal AutoReferenceAlias Property Alias_Decimus AutoEvent OnInit()AddInventoryEventFilter(MS01MargretJournal)EndEvent Event OnItemAdded(Form akBaseItem, int aiItemCount, ObjectReference akItemReference, ObjectReference akSourceContainer)If (akBaseItem == MS01MargretJournal)Alias_Decimus.GetReference().Enable()GetOwningQuest().SetStage(10)EndIfEndEvent
Just like the script from MS01 that this is based off of, this one is attached to the alias "player" within my quest and refers to the unique actor: Player. When I pick up the book MS01 updates it's quest, but mine doesn't do anything at all. I don't understand why this isn't working when it's pretty much a copy of the vanilla quest. Anyone have any ideas what I'm doing wrong?