Is it possible to pre-load vehicles with objects for ALiVE logistics, for example adding an ammo crate into a truck?
Is it possible to pre-load vehicles with objects for ALiVE logistics, for example adding an ammo crate into a truck?
You can run an init line on every unit spawned from the Virtual AI module (IIRC).
Have it run a script that puts the ammo crate on the vehicles you want.
[ALiVE_SYS_LOGISTICS, "fillContainer", [_vehicle,_payload]] call ALiVE_fnc_Logistics;
_vehicle is an object
_payload is an array of objects (f.e. ammo-boxes)
(thanks HH)