//CruiserF ReferenceScript { Script=Jedi 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" UseForce "name=handle1" } } state UseHandle2 { Conditions { if PlayerUsingForce "handle1" == 0 goto Base } Actions { GoToLocator "name" "Handle2" UseForce "name=handle2" } }