2021-10-05 22:15:58 +00:00
|
|
|
Scriptname _00E_MQ17_Temple_BlockDoorSC extends ObjectReference
|
|
|
|
|
|
|
|
Event OnLoad()
|
|
|
|
|
2024-01-10 14:08:24 +00:00
|
|
|
if MQ17.GetCurrentStageID() >= 70
|
2021-10-05 22:15:58 +00:00
|
|
|
Self.BlockActivation(True)
|
|
|
|
EndIf
|
|
|
|
|
|
|
|
EndEvent
|
|
|
|
|
|
|
|
Event OnActivate(ObjectReference akActionRef)
|
|
|
|
|
2024-01-10 14:08:24 +00:00
|
|
|
if akActionRef == Game.GetPlayer() && MQ17.GetCurrentStageID() > 5
|
2021-10-05 22:15:58 +00:00
|
|
|
_00E_BlockedMessage.Show()
|
|
|
|
EndIf
|
|
|
|
|
|
|
|
EndEvent
|
|
|
|
|
|
|
|
Quest Property MQ17 Auto
|
|
|
|
|
|
|
|
Message Property _00E_BlockedMessage Auto
|