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.
 
 
 

14 lines
293 B

Scriptname _00E_EnableTharielScript extends ObjectReference
Actor Property PlayerREF Auto
ObjectReference Property Thariel Auto
int doOnce
Event OnTriggerEnter(ObjectReference akActionRef)
If akActionRef == PlayerREF
if doOnce == 0
Thariel.Enable()
DoOnce = 1
EndIf
endif
EndEvent