18 lines
456 B
Plaintext
18 lines
456 B
Plaintext
|
scriptName _00E_MQ11b_DancingNomadFailsafeSC extends ObjectReference
|
||
|
|
||
|
;failsafe for http://sureai.net:9898/browse/ERB-2202, Jespar's Ref wasn't disabled properly
|
||
|
|
||
|
Event OnTriggerEnter(ObjectReference akActionRef)
|
||
|
|
||
|
if akActionRef == PlayerREF && MQ11b.GetStage() == 5 && !bDone
|
||
|
_00E_MC_JesparREF.Disable()
|
||
|
bDone == true
|
||
|
endIf
|
||
|
|
||
|
EndEvent
|
||
|
|
||
|
bool bDone = false
|
||
|
|
||
|
Actor Property PlayerREF Auto
|
||
|
Actor Property _00E_MC_JesparREF Auto
|
||
|
Quest Property MQ11b Auto
|