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.
 
 
 

18 lines
348 B

scriptName defaultOnActivateNonPlayerEnableScript extends ObjectReference
import game
import debug
import utility
ObjectReference Property RefToBeEnabled auto
auto State WaitingToBeActivated
EVENT onActivate(ObjectReference triggerRef)
RefToBeEnabled.enable()
gotoState("Activated")
endEVENT
EndState
State Activated
;Do nothing
EndState