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.
 
 
 

29 lines
609 B

Scriptname _00E_NQ03_PotionSC extends ObjectReference
Event OnInit()
Self.BlockActivation(True)
EndEvent
Event OnActivate(ObjectReference akActionRef)
If akActionRef == Game.GetPlayer()
If NQ03.GetCurrentStageID() == 10
NQ03.SpawnAurathief()
ElseIf (NQ03.GetCurrentStageID() == 15) || (NQ03.GetCurrentStageID() == 20)
NQ03.ShowMessageBox()
EndIf
EndIf
EndEvent
Event OnEquipped(Actor akActor)
If akActor == Game.GetPlayer() && NQ03.GetCurrentStageID() == 20
NQ03.ShowMessageBox()
EndIf
EndEvent
_00E_NQ03_Functions Property NQ03 Auto