AI land vehicle patrols

Matt L

OpenDayZ Rockstar!
I added Urals and other large vehicles into my patrol system, was wondering if anyone knew how to make it so every space in the vehicle is filled with AI so attacking a ural is more difficult than attacking a lada or humvee.

Sidenote, vehicles also seem to be perma locked, anyone know how to change that?
 
Look into "\spawn_functions\spawn_vehPatrol.sqf" find:

to unlock the vehicles for player:

PHP:
_vehicle setVehicleLock "LOCKED";
and comment it out:
Code:
//_vehicle setVehicleLock "LOCKED";

to fill the cargo seats:
look for:
Code:
#define MAX_CARGO_COUNT 3
and change it to your wish, how many units should be in the cargo seats, driver and gunner exclusive
 
Back
Top