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