//Party - makes ewok creature always keep weapon out //Tatooine_E state Base { Conditions { if IamA "wicket" == 1 goto Wicket if AlwaysTrue == 1 goto Ref } Actions { } } state Wicket { Conditions { } Actions { KeepWeaponOut SetState Ref } } state Ref { ReferenceScript { Script=GeneralParty Source=Global ReturnState=Base Conditions { if PlayerOnObject "throne" == 0 } } Conditions { if PlayerOnObject "throne" == 1 and if FreePlay == 1 goto UseForce } Actions { FollowPlayer "1" } } state UseForce { Conditions { if PlayerOnObject "throne" == 0 goto Ref } Actions { GoToLocator "name" "use_force" "0.5" UseForce "throne" } }