18 lines
479 B
Plaintext
18 lines
479 B
Plaintext
|
Scriptname _00E_MQ09a_TempleFailsaveSC extends ObjectReference
|
||
|
|
||
|
Event OnTriggerEnter(ObjectReference akActionRef)
|
||
|
|
||
|
If !bDone && akActionRef == PlayerREF
|
||
|
If (MQ09a.GetStage() >= 140 && MQ09a.GetStage() < 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
|