mirror of
https://github.com/EpochModTeam/DayZ-Epoch.git
synced 2025-12-14 20:13:13 +03:00
This got discussed earlier. Since epoch got merged with DayZ Mod we have a different name for the scope and type of configs. A proper config should use numbers for those entries. This is the same how arma configs are written. The basicDefines.hpp has all the needed information stored. Also, this removes the weight entries from the magazines since we have them in a separate folder, so admins can edit them.
31 lines
682 B
C++
31 lines
682 B
C++
class PBX;
|
|
class PBX_DZE: PBX {
|
|
scope = 2;
|
|
displayname = $STR_VEH_NAME_PBX;
|
|
vehicleClass = "DayZ Epoch Vehicles";
|
|
crew = "";
|
|
typicalCargo[] = {};
|
|
class TransportMagazines {};
|
|
class TransportWeapons {};
|
|
transportMaxWeapons = 5;
|
|
transportMaxMagazines = 50;
|
|
transportMaxBackpacks = 1;
|
|
fuelCapacity = 20;
|
|
supplyRadius = 2;
|
|
};
|
|
|
|
class Zodiac;
|
|
class Zodiac_DZE: Zodiac {
|
|
scope = 2;
|
|
displayname = $STR_VEH_NAME_CRRC;
|
|
vehicleClass = "DayZ Epoch Vehicles";
|
|
crew = "";
|
|
typicalCargo[] = {};
|
|
class TransportMagazines {};
|
|
class TransportWeapons {};
|
|
transportMaxWeapons = 5;
|
|
transportMaxMagazines = 50;
|
|
transportMaxBackpacks = 1;
|
|
fuelCapacity = 20;
|
|
supplyRadius = 2;
|
|
}; |