This commit is contained in:
[VB]AWOL
2013-09-02 12:16:05 -05:00
parent 44bab797b6
commit 44eebbd432
45 changed files with 927 additions and 842 deletions

View File

@@ -2368,12 +2368,12 @@ class CfgMagazines {
class ItemActions {
class Crafting
{
text = "Craft Cinder Block Wall";
text = "Craft Half Wall";
script = "spawn player_craftItem;";
neednearby[] = {"workshop"};
requiretools[] = {"ItemToolbox"};
output[] = {{"cinder_wall_kit",1}};
input[] = {{"CinderBlocks",3}};
input[] = {{"CinderBlocks",3},{"MortarBucket",1}};
};
};
@@ -2395,7 +2395,7 @@ class CfgMagazines {
count = 1;
type = 256;
displayName = "Plywood Pack";
model = "\dayz_equip\models\plywood_pack.p3d";
model = "\z\addons\dayz_epoch\models\plywood_pack.p3d";
picture = "\z\addons\dayz_epoch\pictures\equip_plywood_pack_CA.paa";
descriptionShort = "Plywood in a stack";
weight = 12;
@@ -2547,9 +2547,6 @@ class CfgMagazines {
descriptionShort = "$STR_EQUIP_DESC_30";
};
// Skins
class SkinBase: CA_Magazine
{

View File

@@ -438,8 +438,8 @@ class CfgLoot {
"ItemComboLock"
},
{
0.14,
0.12,
0.1,
0.1,
0.09,
0.11,
0.09,
@@ -447,11 +447,11 @@ class CfgLoot {
0.06,
0.06,
0.06,
0.12,
0.1,
0.06,
0.01,
0.01,
0.01
0.03,
0.07
}
};

View File

@@ -1608,12 +1608,12 @@ class CfgVehicles {
scope = 2;
destrType = "DestructBuilding";
cost = 100;
offset[] = {0,4,0};
model="\z\addons\dayz_epoch\models\Cinder_Wall_Half.p3d";
offset[] = {0,1.5,0};
model="\z\addons\dayz_epoch\models\cinder_wall_half.p3d";
icon = "\ca\data\data\Unknown_object.paa";
mapSize = 2;
armor = 800;
displayName = "Cinder Block Wall 1/2";
armor = 1600;
displayName = "Half Cinder Block Wall";
vehicleClass = "Fortifications";
upgradeBuilding[] = {"CinderWall_DZ",{{"CinderBlocks",4},{"MortarBucket",1}}};
maintainBuilding[] = {{"MortarBucket",1}};
@@ -1624,11 +1624,11 @@ class CfgVehicles {
scope = 2;
destrType = "DestructBuilding";
cost = 100;
offset[] = {0,4,0};
model="\z\addons\dayz_epoch\models\Cinder_Wall.p3d";
offset[] = {0,1.5,0};
model="\z\addons\dayz_epoch\models\cinder_wall_full.p3d";
icon = "\ca\data\data\Unknown_object.paa";
mapSize = 2;
armor = 800;
armor = 1600;
displayName = "Cinder Block Wall";
vehicleClass = "Fortifications";
maintainBuilding[] = {{"MortarBucket",1}};
@@ -1850,7 +1850,7 @@ class CfgVehicles {
destrType = "DestructNo";
cost = 100;
offset[] = {0,1.5,0};
model="\z\addons\dayz_epoch\models\Cinder_Wall_Half_ghost.p3d";
model="\z\addons\dayz_epoch\models\cinder_wall_half_ghost.p3d";
icon = "\ca\data\data\Unknown_object.paa";
mapSize = 2;
armor = 1000;
@@ -1863,7 +1863,7 @@ class CfgVehicles {
destrType = "DestructNo";
cost = 100;
offset[] = {0,1.5,0};
model="\z\addons\dayz_epoch\models\Cinder_Wall_ghost.p3d";
model="\z\addons\dayz_epoch\models\cinder_wall_full_ghost.p3d";
icon = "\ca\data\data\Unknown_object.paa";
mapSize = 2;
armor = 1000;

View File

@@ -149,7 +149,7 @@ class RscDisplayMain : RscStandardDisplay
class DAYZ_Version : CA_Version
{
idc = -1;
text = "DayZ Epoch 1.0.2";
text = "DayZ Epoch 1.0.2.1";
y = "(SafeZoneH + SafeZoneY) - (1 - 0.95)";
};
delete CA_TitleMainMenu;