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.
 
 
 

26 lines
647 B

Scriptname _00E_FS_NQ11_RecipeChymikumSC extends ObjectReference
Event OnContainerChanged(ObjectReference akNewContainer, ObjectReference akOldContainer)
If !bDoneFirstObjective && akNewContainer == PlayerREF && akOldContainer == FS_Theriantrophist_AlchemistCorpse
bDoneFirstObjective = true
FS_NQ11.SetObjectiveDisplayed(8)
EndIf
EndEvent
Event OnRead()
If !bDone
bDone = true
FS_NQ11.SetObjectiveCompleted(8)
FS_NQ11.SetObjectiveDisplayed(15)
EndIf
EndEvent
bool bDone = false
bool bDoneFirstObjective = false
Quest Property FS_NQ11 Auto
Actor Property PlayerREF Auto
Actor Property FS_Theriantrophist_AlchemistCorpse Auto