Scriptname _00E_MQ09a_TempleFailsaveSC extends ObjectReference  

Event OnTriggerEnter(ObjectReference akActionRef)

	If !bDone && akActionRef == PlayerREF
		If (MQ09a.GetCurrentStageID() >= 140 && MQ09a.GetCurrentStageID() < 155) && !MQ08_IntoTheDeep_SceneTempleInside.IsPlaying()
			bDone = True
			MQ08_IntoTheDeep_SceneTempleInside.ForceStart()
		EndIf
	EndIf

EndEvent

bool bDone

Actor Property PlayerREF Auto
Quest Property MQ09a Auto
Scene Property MQ08_IntoTheDeep_SceneTempleInside Auto