Files
DayZ-Epoch/SQF/dayz_code/Configs/CfgVehicles/Car/Mtvr.hpp
A Man e26fb24ab9 Fixing wrong cargo count of Refuel Trucks (#2021)
* Update Kamaz Refuel

* Update MTVR Refuel

* Update Ural Refuel

* Update V3S Refuel

* Wrong cargo count of Refuel Trucks
2018-08-13 08:23:20 +12:00

58 lines
1.4 KiB
C++

class MTVR : Truck {
crew = "";
typicalCargo[] = {};
class TransportMagazines {};
class TransportWeapons {};
};
class MTVR_base;
class MTVR_DES_EP1 : MTVR_base {
crew = "";
typicalCargo[] = {};
class TransportMagazines {};
class TransportWeapons {};
};
class MtvrRefuel;
class MtvrRefuel_base : MtvrRefuel
{
scope = private;
side = 4;
expansion = 1;
crew = "";
typicalCargo[] = {};
transportMaxWeapons = 50;
transportMaxMagazines = 200;
transportmaxbackpacks = 8;
class TransportMagazines {};
class TransportWeapons {};
};
class MtvrRefuel_DES_EP1_DZ : MtvrRefuel_base {
scope = public;
side = 2;
crew = "";
displayName = "MTVR (Fuel)";
typicalCargo[] = {};
hiddenSelectionsTextures[] = { "\CA\wheeled_E\MTVR\Data\MTVR_body_desert_co.paa", "\CA\wheeled_E\MTVR\Data\MTVR_body2_desert_co.paa", "\CA\wheeled_E\MTVR\Data\MTVR_interier_desert_co.paa", "\CA\wheeled_E\MTVR\Data\MTVR_Fuel_desert_CO.paa" };
class TransportMagazines{};
class TransportWeapons{};
transportFuel = 0; //Required to disable A2 built in auto refuel for fuel trucks
fuelCapacity = 10000;
};
class MtvrRefuel_DZ: MtvrRefuel {
scope = public;
side = 2;
crew = "";
typicalCargo[] = {};
hiddenSelections[] = {};
transportMaxWeapons = 50;
transportMaxMagazines = 200;
transportmaxbackpacks = 8;
class TransportMagazines{};
class TransportWeapons{};
transportFuel = 0; //Required to disable A2 built in auto refuel for fuel trucks
fuelCapacity = 10000;
};