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.
 
 
 

21 lines
625 B

ScriptName defaultSetAVOnLoad extends Actor
{Default script that lives on an actor. When the actor loads, sets an Actor Value. Defaults to Aggression=1}
string property sActorVariable = "Aggression" auto
{By default, this property is set to Aggression. Set which actor variable to set as a string}
float property fActorVariable auto
{By default this property is set to 1. Set what you want the actor variable to be changed to}
auto State waiting
Event OnLoad()
self.SetActorValue(sActorVariable, fACtorVariable)
self.evaluatePackage()
goToState("allDone")
endEvent
endState
State allDone
;do nothing
endState