1
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.

26 lines
475 B

scriptName dweSpiderCenturionPipeScript extends ObjectReference
import debug
import utility
;****************************************
auto State Listening
Event onActivate(objectReference triggerRef)
Actor myActor = triggerRef as Actor
if (myActor.getState() != "Waiting")
gotoState("done")
playAnimation("exit")
endif
endEvent
endState
;****************************************
State done
;do nothing
endState
;****************************************