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.
 
 
 

22 lines
654 B

ScriptName _00E_MQ13c_SC06_CrystalActSphereSC Extends ObjectReference
;-- Variables ---------------------------------------
;-- Properties --------------------------------------
Quest Property MQ13c Auto
Scene Property MQ13c_SC06_TravelToGearTower Auto
;-- Functions ---------------------------------------
; Skipped compiler generated GetState
; Skipped compiler generated GotoState
Event OnActivate(ObjectReference akActionRef)
If (akActionRef == Game.GetPlayer() as ObjectReference) && MQ13c.GetStage() == 80
If MQ13c_SC06_TravelToGearTower.IsActionComplete(8)
MQ13c.SetStage(85)
Self.Disable(False)
EndIf
EndIf
EndEvent