//BlockadeRunner_B //script for the troopers that vader2 spawns. state Base { Conditions { if Message "PhaseD" == 2 goto SetLocator1 if Message "PhaseD" == 3 goto SetLocator2 if Message "PhaseD" == 4 goto SetLocator3 if AlwaysTrue == 1 goto SetLocator3 } Actions { KeepWeaponOut DontPush } } state SetLocator1 { Conditions { } Actions { GetLocatorFromGroup "name=Baddy1" SetState "GoToLocator" } } state SetLocator2 { Conditions { } Actions { GetLocatorFromGroup "name=Baddy2" SetState "GoToLocator" } } state SetLocator3 { Conditions { } Actions { GetLocatorFromGroup "name=Baddy3" SetState "GoToLocator" } } state GoToLocator { Conditions { } Actions { GoToLocator DontPush "FALSE" SetState "Update" } } state Update { ReferenceScript { Script=Chatting Source=Global ReturnState=Update Conditions { } } Conditions { } Actions { FollowPlayer } }