mirror of
https://github.com/EpochModTeam/DayZ-Epoch.git
synced 2026-02-04 15:22:53 +03:00
Add Metal Drawbridge
Model made by @Helion4
This commit is contained in:
@@ -219,6 +219,50 @@ class cinder_gate_kit_locked: CA_Magazine
|
||||
};
|
||||
};
|
||||
|
||||
class metal_drawbridge_kit: CA_Magazine
|
||||
{
|
||||
scope = 2;
|
||||
count = 1;
|
||||
type = 256;
|
||||
displayName = $STR_EPOCH_METALDRAWBRIDGE;
|
||||
descriptionShort = $STR_EPOCH_METALDRAWBRIDGE_DESC;
|
||||
model = "\z\addons\dayz_epoch\models\supply_crate.p3d";
|
||||
picture = "\z\addons\dayz_epoch\pictures\equip_wooden_crate_ca.paa";
|
||||
|
||||
class ItemActions
|
||||
{
|
||||
class Build
|
||||
{
|
||||
text = $STR_ACTIONS_BUILD;
|
||||
script = "spawn player_build;";
|
||||
require[] = {"ItemToolbox"};
|
||||
create = "Metal_Drawbridge_DZ";
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
class metal_drawbridge_kit_locked: CA_Magazine
|
||||
{
|
||||
scope = 2;
|
||||
count = 1;
|
||||
type = 256;
|
||||
displayName = $STR_EPOCH_METALDRAWBRIDGELOCKED;
|
||||
descriptionShort = $STR_EPOCH_METALDRAWBRIDGELOCKED_DESC;
|
||||
model = "\z\addons\dayz_epoch\models\supply_crate.p3d";
|
||||
picture = "\z\addons\dayz_epoch\pictures\equip_wooden_crate_ca.paa";
|
||||
|
||||
class ItemActions
|
||||
{
|
||||
class Build
|
||||
{
|
||||
text = $STR_ACTIONS_BUILD;
|
||||
script = "spawn player_build;";
|
||||
require[] = {"ItemToolbox"};
|
||||
create = "Metal_DrawbridgeLocked_DZ";
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
|
||||
class ItemWoodFloor: CA_Magazine
|
||||
{
|
||||
|
||||
@@ -133,6 +133,19 @@ class ItemRSJ: CA_Magazine
|
||||
picture = "\z\addons\dayz_buildings\equip\item_rsj.paa";
|
||||
model = "z\addons\dayz_buildings\models\rsj.p3d";
|
||||
descriptionShort = $STR_BLD_desc_ItemRSJ;//"Steel RSJ Support Beam"
|
||||
|
||||
class ItemActions
|
||||
{
|
||||
class Crafting
|
||||
{
|
||||
text = $STR_EPOCH_ACTION_CRAFT_BRIDGE;
|
||||
script = ";['Crafting','CfgMagazines', _id] spawn player_craftItem;";
|
||||
neednearby[] = {"workshop","fire"};
|
||||
requiretools[] = {"ItemToolbox","ItemCrowbar","ItemSledge"};
|
||||
output[] = {{"metal_drawbridge_kit",1}};
|
||||
input[] = {{"ItemRSJ",6},{"metal_floor_kit",2}};
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
class equip_1inch_metal_pipe : CA_Magazine
|
||||
|
||||
Reference in New Issue
Block a user