2021-10-05 22:15:58 +00:00
|
|
|
Scriptname _00E_MQ11b_Door_Crypt_SC extends ObjectReference
|
|
|
|
|
|
|
|
Event OnInit()
|
|
|
|
|
|
|
|
Self.BlockActivation(True)
|
|
|
|
|
|
|
|
EndEvent
|
|
|
|
|
|
|
|
Event OnActivate(ObjectReference akActionRef)
|
|
|
|
|
|
|
|
if Self.IsActivationBlocked()
|
|
|
|
|
|
|
|
if akActionRef == PlayerREF
|
|
|
|
|
2024-01-10 14:08:24 +00:00
|
|
|
If MQ11b.GetCurrentStageID() >= 100
|
2021-10-05 22:15:58 +00:00
|
|
|
Self.BlockActivation(False)
|
|
|
|
Self.Activate(PlayerREF, True)
|
|
|
|
EndIf
|
|
|
|
|
|
|
|
EndIf
|
|
|
|
EndIf
|
|
|
|
|
|
|
|
EndEvent
|
|
|
|
|
|
|
|
Actor Property PlayerREF Auto
|
|
|
|
Quest Property MQ11b Auto
|