Files
DayZ-Epoch/SQF/dayz_code/Configs/CfgVehicles/Blood_Trail_DZ.hpp
A Man d9b9874532 Change scope and type of configs from name to numbers
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.
2020-05-29 02:04:06 +02:00

27 lines
619 B
C++

class Blood_Trail : House {
scope = 0;
displayName = "";
accuracy = 0.1; // accuracy needed to recognize type of this target
vehicleClass = "DayZ Epoch Buildings";
model = "";
nameSound = "";
animated = false;
simulation = "house";
cost = 0;
armor = 300;
ladders[] = {};
placement = "slope";
};
class Blood_Trail_DZ : Blood_Trail {
scope = 2;
animated = 0;
destrType = "DestructNo";
mapSize = 2;
accuracy = 0.2;
icon = "\ca\data\data\Unknown_object.paa";
armor = 50;
displayName = "Blood Trail";
vehicleClass = "DayZ Epoch Buildings";
model = "\z\addons\dayz_communityassets\models\blood.p3d";
};