4
Fork 0
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

30 lines
727 B

Scriptname _00E_FS_NQ11_RecipeSC extends ObjectReference
Event OnContainerChanged(ObjectReference akNewContainer, ObjectReference akOldContainer)
If !bDoneFirstObjective && akNewContainer == PlayerREF && akOldContainer == FS_Theriantrophist_AlchemistCorpse
bDoneFirstObjective = true
FS_NQ11.SetObjectiveCompleted(5)
FS_NQ11.SetObjectiveDisplayed(7)
EndIf
EndEvent
Event OnRead()
If !bDone && FS_NQ11.GetStage() == 5
bDone = true
FS_NQ11.SetStage(10)
FS_NQ11.SetObjectiveCompleted(7)
FS_NQ11.SetObjectiveDisplayed(10)
EndIf
EndEvent
bool bDone = false
bool bDoneFirstObjective = false
Quest Property FS_NQ11 Auto
Actor Property PlayerREF Auto
Actor Property FS_Theriantrophist_AlchemistCorpse Auto