ENG51INE Posted January 20, 2014 Report Share Posted January 20, 2014 I edited my LAToFireStation script to reflect the new mod I made. All the vehicles go to the stations and pull into their spots... however... after parking, they immediately say "no room in fire station, vehicle returned to base" and drive away. I have tried resizing the virtual objects, and that does not work. Any ideas? Quote Link to comment Share on other sites More sharing options...
nbrown8568 Posted January 28, 2014 Report Share Posted January 28, 2014 You have to make sure it is also added to the LA Firestation script also. Norm. Quote Link to comment Share on other sites More sharing options...
Guest Posted January 28, 2014 Report Share Posted January 28, 2014 Make sure you have this at the bottom of you script and the actor lists are defined correctly: if(l1.GetNumActors() > 0)Vector TurnTo = l1.GetActor(0)->GetPosition(); if(l2.GetNumActors() > 0)Vector Park = l2.GetActor(0)->GetPosition(); v.PushActionMove(ACTION_APPEND, Park);v.PushActionTurnTo(ACTION_APPEND, TurnTo);v.PushActionWait(ACTION_APPEND, 1.0f); Quote Link to comment Share on other sites More sharing options...