2021-10-05 22:15:58 +00:00
|
|
|
Scriptname _00E_MQ09a_TempleFailsaveSC extends ObjectReference
|
|
|
|
|
|
|
|
Event OnTriggerEnter(ObjectReference akActionRef)
|
|
|
|
|
|
|
|
If !bDone && akActionRef == PlayerREF
|
2024-01-10 14:08:24 +00:00
|
|
|
If (MQ09a.GetCurrentStageID() >= 140 && MQ09a.GetCurrentStageID() < 155) && !MQ08_IntoTheDeep_SceneTempleInside.IsPlaying()
|
2021-10-05 22:15:58 +00:00
|
|
|
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
|