//CruiserF ReferenceScript { Script=FreePlayDefend Source=Global ReturnState=Base Conditions { } } state Base { Conditions { if PlayerUsingForce "handle1" == 1 goto UseHandle2 if PlayerUsingForce "handle2" == 1 goto UseHandle1 } Actions { FollowPlayer "0.75" } } state UseHandle1 { Conditions { if PlayerUsingForce "handle2" == 0 goto Base } Actions { GoToLocator "name" "Handle1" CycleCharacter "time=0.5" "Catagory=Jedi" UseForce "name=handle1" } } state UseHandle2 { Conditions { if PlayerUsingForce "handle1" == 0 goto Base } Actions { GoToLocator "name" "Handle2" CycleCharacter "time=0.5" "Catagory=Jedi" UseForce "name=handle2" } }