23 lines
750 B
Plaintext
23 lines
750 B
Plaintext
Scriptname _00E_MQ11c_SC1_GTFOFailsaveSC extends ObjectReference
|
|
|
|
; Failsave for http://forum.sureai.net//tracker.php?p=8&t=10224 .
|
|
; For some reason, some players weren't kicked out by Ketaron on their
|
|
; first visit to his house, as scene MQ11c_SC1_KeshanEscortsPlayer
|
|
; failed to start for some reason. This script (placed on the
|
|
; triggerbox _00E_MQ11c_SC1_GTFOFailsaveTGBX) gives the scene another
|
|
; chance to start.
|
|
|
|
Event OnTriggerEnter(ObjectReference akActionRef)
|
|
|
|
if akActionRef == Game.GetPlayer() && MQ11c.GetStage() == 25
|
|
if !MQ11c_SC1_KeshanEscortsPlayer.IsPlaying()
|
|
MQ11c_SC1_KeshanEscortsPlayer.ForceStart()
|
|
endif
|
|
EndIf
|
|
|
|
EndEvent
|
|
|
|
Quest Property MQ11c Auto
|
|
|
|
Scene Property MQ11c_SC1_KeshanEscortsPlayer Auto
|