4
Fork 0
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

22 lines
759 B

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.GetCurrentStageID() == 25
if !MQ11c_SC1_KeshanEscortsPlayer.IsPlaying()
MQ11c_SC1_KeshanEscortsPlayer.ForceStart()
endif
EndIf
EndEvent
Quest Property MQ11c Auto
Scene Property MQ11c_SC1_KeshanEscortsPlayer Auto