mirror of
https://github.com/EpochModTeam/DayZ-Epoch.git
synced 2025-12-20 10:26:28 +03:00
Add 2 new cargo truck version
This adds 2 new versions of cargo trucks. A truck for items and a truck for weapons. Also setting the supplyRadius for every refuel, reammo and repair truck to 0. Just to be sure.
This commit is contained in:
@@ -41,6 +41,7 @@ class MtvrRefuel_DES_EP1_DZ : MtvrRefuel_base {
|
||||
class TransportWeapons{};
|
||||
transportFuel = 0; //Required to disable A2 built in auto refuel for fuel trucks
|
||||
fuelCapacity = 10000;
|
||||
supplyRadius = 0;
|
||||
};
|
||||
|
||||
class MtvrRefuel_DZ: MtvrRefuel {
|
||||
@@ -57,4 +58,39 @@ class MtvrRefuel_DZ: MtvrRefuel {
|
||||
class TransportWeapons{};
|
||||
transportFuel = 0; //Required to disable A2 built in auto refuel for fuel trucks
|
||||
fuelCapacity = 10000;
|
||||
supplyRadius = 0;
|
||||
};
|
||||
|
||||
class MtvrRepair;
|
||||
class MtvrRepair_DZE: MtvrRepair {
|
||||
scope = public;
|
||||
side = 2;
|
||||
crew = "";
|
||||
displayName = $STR_VEH_NAME_MTVR_AMMO;
|
||||
typicalCargo[] = {};
|
||||
hiddenSelections[] = {};
|
||||
transportMaxWeapons = 25;
|
||||
transportMaxMagazines = 300;
|
||||
transportmaxbackpacks = 8;
|
||||
class TransportMagazines{};
|
||||
class TransportWeapons{};
|
||||
transportRepair = 0;
|
||||
supplyRadius = 0;
|
||||
};
|
||||
|
||||
class MtvrReammo;
|
||||
class MtvrReammo_DZE: MtvrReammo {
|
||||
scope = public;
|
||||
side = 2;
|
||||
crew = "";
|
||||
displayName = $STR_VEH_NAME_MTVR_WEAPONS;
|
||||
typicalCargo[] = {};
|
||||
hiddenSelections[] = {};
|
||||
transportMaxWeapons = 75;
|
||||
transportMaxMagazines = 100;
|
||||
transportmaxbackpacks = 8;
|
||||
class TransportMagazines{};
|
||||
class TransportWeapons{};
|
||||
transportAmmo = 0;
|
||||
supplyRadius = 0;
|
||||
};
|
||||
Reference in New Issue
Block a user