Added in ACE3 v3.14.2

Medical Treatment Framework

1. Config Values

1.1 Vehicle Patient Seats

Defines the seats that will be prioritized when loading patients into vehicles. Uses moveInCargo indexes.

class CfgVehicles {
    class MyCar {
        ace_medical_treatment_patientSeats[] = {3,4};
    };
};

1.2 Patient Reverse Fill

When no patient seats are available, by default patients will be filled from the highest cargo index to the lowest. This can be changed to fill from the lowest to the highest.

class CfgVehicles {
    class MyCar {
        ace_medical_treatment_patientReverseFill = 0;
    };
};