//DeathStarRescue_A ReferenceScript { Script=GeneralParty Source=Global ReturnState=Base Conditions { } } state Base { Conditions { if CategoryIs "Jedi" == 1 goto JediUpdate if CategoryIs "Astromech" == 1 goto DroidUpdate if CategoryIs "Protocol" == 1 goto DroidUpdate if PreviousResult == 0 goto NormalUpdate } Actions { } } state JediUpdate { Conditions { } Actions { FollowPlayer "0.75" } } state DroidUpdate { Conditions { } Actions { FollowPlayer "1.75" } } state NormalUpdate { Conditions { } Actions { FollowPlayer "1.25" } }