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.
 
 
 

17 lines
365 B

Scriptname _00E_MQ02ArkTrigger extends ObjectReference
Event OnTriggerEnter(ObjectReference akActionRef)
If (akActionRef == PlayerRef && !bDone)
Int curStage = MQ02.GetStage()
If curStage >= 140
bDone = True
If curStage < 160
MQ02.SetStage(160)
EndIf
EndIf
EndIf
EndEvent
bool bDone
Actor Property PlayerRef Auto
Quest Property MQ02 Auto