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.
 
 
 

25 lines
570 B

Scriptname _00E_MQ07a_DoorBellSC extends ObjectReference
Event OnActivate(ObjectReference akActionRef)
If (MQ07a.GetStage() == 55)
If (GameHour.GetValue() > 20) || (GameHour.GetValue() < 6)
_00E_BellGong_02M.Play(Self)
MQ07a.SetStage(60)
Else
_00E_MQ07_sWaitUntilNightfall.Show()
EndIf
Else
_00E_MQ07_sNothingHappens.Show()
EndIf
EndEvent
Quest Property MQ07a Auto
GlobalVariable Property GameHour Auto
Sound Property _00E_BellGong_02M Auto
Message Property _00E_MQ07_sWaitUntilNightfall Auto
Message Property _00E_MQ07_sNothingHappens Auto