enderalse/source/scripts/defaultonactivatenonplayerenablescript.psc

18 lines
348 B
Plaintext
Raw Normal View History

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