mirror of
https://github.com/EpochModTeam/DayZ-Epoch.git
synced 2025-12-13 19:52:38 +03:00
Merge branch 'master' of https://github.com/EpochModTeam/DayZ-Epoch
This commit is contained in:
@@ -14,7 +14,7 @@ class TrapBear : CA_Magazine
|
||||
class Build
|
||||
{
|
||||
text = $STR_ACTION_BUILD;
|
||||
script = "; [_id,'Build'] spawn player_build; r_action_count = r_action_count + 1;";
|
||||
script = "spawn player_build; r_action_count = r_action_count + 1;";
|
||||
require[] = {"ItemToolbox"};
|
||||
consume[] = {"TrapBear"};
|
||||
create = "BearTrap_DZ";
|
||||
|
||||
@@ -14,7 +14,7 @@ class ItemCamoNet : CA_Magazine
|
||||
class Build
|
||||
{
|
||||
text = $STR_BUILD_CAMONET;
|
||||
script = "; [_id,'Build'] spawn player_build; r_action_count = r_action_count + 1;";
|
||||
script = "spawn player_build; r_action_count = r_action_count + 1;";
|
||||
require[] = {"ItemToolbox"};
|
||||
consume[] = {"ItemCamoNet"};
|
||||
create = "CamoNet_DZ";
|
||||
|
||||
@@ -14,7 +14,7 @@ class ItemGenerator : CA_Magazine
|
||||
class Build
|
||||
{
|
||||
text = $STR_ACTION_BUILD;
|
||||
script = "; [_id,'Build'] spawn player_build; r_action_count = r_action_count + 1;";
|
||||
script = "spawn player_build; r_action_count = r_action_count + 1;";
|
||||
require[] = {"ItemToolbox"};
|
||||
consume[] = {"ItemGenerator"};
|
||||
create = "Generator_DZ";
|
||||
|
||||
@@ -14,7 +14,7 @@ class ItemSandbag : CA_Magazine
|
||||
class Build
|
||||
{
|
||||
text = $STR_ACTION_BUILD;
|
||||
script = "; [_id,'Build'] spawn player_build; r_action_count = r_action_count + 1;";
|
||||
script = "spawn player_build; r_action_count = r_action_count + 1;";
|
||||
require[] = {"ItemEtool"};
|
||||
consume[] = {"ItemSandbag"};
|
||||
create = "Sandbag1_DZ";
|
||||
|
||||
@@ -14,7 +14,7 @@ class ItemTankTrap : CA_Magazine
|
||||
class Build
|
||||
{
|
||||
text = $STR_ACTION_BUILD;
|
||||
script = "; [_id,'Build'] spawn player_build; r_action_count = r_action_count + 1;";
|
||||
script = "spawn player_build; r_action_count = r_action_count + 1;";
|
||||
require[] = {"ItemToolbox"};
|
||||
consume[] = {"ItemTankTrap"};
|
||||
create = "Hedgehog_DZ";
|
||||
|
||||
@@ -14,7 +14,7 @@ class ItemTent : CA_Magazine
|
||||
class Build
|
||||
{
|
||||
text = $STR_PITCH_TENT;
|
||||
script = "; [_id,'Build'] spawn player_build; r_action_count = r_action_count + 1;";
|
||||
script = "spawn player_build; r_action_count = r_action_count + 1;";
|
||||
require[] = {};
|
||||
consume[] = {"ItemTent"};
|
||||
create = "TentStorage";
|
||||
@@ -56,7 +56,7 @@ class ItemDomeTent : CA_Magazine
|
||||
class Build
|
||||
{
|
||||
text = $STR_PITCH_DOME_TENT;
|
||||
script = "; [_id,'Build'] spawn player_build; r_action_count = r_action_count + 1;";
|
||||
script = "spawn player_build; r_action_count = r_action_count + 1;";
|
||||
require[] = {};
|
||||
consume[] = {"ItemDomeTent"};
|
||||
create = "DomeTentStorage";
|
||||
@@ -92,7 +92,7 @@ class ItemDesertTent : CA_Magazine
|
||||
class Build
|
||||
{
|
||||
text = $STR_PITCH_DESERT_TENT;
|
||||
script = "; [_id,'Build'] spawn player_build; r_action_count = r_action_count + 1;";
|
||||
script = "spawn player_build; r_action_count = r_action_count + 1;";
|
||||
require[] = {};
|
||||
consume[] = {"ItemDesertTent"};
|
||||
create = "DesertTentStorage";
|
||||
|
||||
@@ -14,7 +14,7 @@ class ItemTrapTripwireCans : CA_Magazine
|
||||
class Build
|
||||
{
|
||||
text = $STR_ACTION_BUILD;
|
||||
script = "; [_id,'Build'] spawn player_build; r_action_count = r_action_count + 1;";
|
||||
script = "spawn player_build; r_action_count = r_action_count + 1;";
|
||||
require[] = {"ItemToolbox"};
|
||||
consume[] = {"ItemTrapTripwireCans"};
|
||||
create = "Trap_Cans";
|
||||
|
||||
@@ -14,7 +14,7 @@ class ItemWire : CA_Magazine
|
||||
class Build
|
||||
{
|
||||
text = $STR_ACTION_BUILD;
|
||||
script = "; [_id,'Build'] spawn player_build; r_action_count = r_action_count + 1;";
|
||||
script = "spawn player_build; r_action_count = r_action_count + 1;";
|
||||
require[] = {"ItemToolbox"};
|
||||
consume[] = {"ItemWire"};
|
||||
create = "Fort_RazorWire"; // 1.8.7 uses Wire_cat1
|
||||
|
||||
@@ -12,7 +12,7 @@ class ItemWorkBench : CA_Magazine
|
||||
class ItemActions {
|
||||
class Build {
|
||||
text = $STR_BLD_build_ItemWorkBench;//"place WorkBench"
|
||||
script = "; ['ItemWorkBench','Build'] spawn player_build; r_action_count = r_action_count + 1;";
|
||||
script = "spawn player_build; r_action_count = r_action_count + 1;";
|
||||
require[] = {};
|
||||
consume[] = {"ItemWorkBench"};
|
||||
create = "WorkBench";
|
||||
|
||||
@@ -10,6 +10,7 @@ class BearTrap_DZ : TrapItems {
|
||||
script = "beartrap"; // compiled script variable name (used by server side loop)
|
||||
initState = 0; // initial armed state
|
||||
singleUse = 0;
|
||||
nounderground = 0;
|
||||
|
||||
class Eventhandlers {
|
||||
init = "['init', _this select 0] spawn beartrap;";
|
||||
@@ -120,6 +121,7 @@ class TrapBearTrapFlare : TrapItems {
|
||||
armor = 400;
|
||||
displayName = $STR_ITEM_NAME_BEAR_TRAP_FLARE;
|
||||
vehicleClass = "Fortifications";
|
||||
nounderground = 0;
|
||||
|
||||
script = "beartrapflare"; // compiled script variable name (used by server side loop)
|
||||
initState = 1; // initial armed state
|
||||
@@ -169,6 +171,7 @@ class TrapBearTrapSmoke : TrapItems {
|
||||
armor = 400;
|
||||
displayName = $STR_ITEM_NAME_BEAR_TRAP_SMOKE;
|
||||
vehicleClass = "Fortifications";
|
||||
nounderground = 0;
|
||||
|
||||
script = "beartrapsmoke"; // compiled script variable name (used by server side loop)
|
||||
initState = 1; // initial armed state
|
||||
@@ -218,6 +221,7 @@ class Trap_Cans : TrapItems {
|
||||
armor = 400;
|
||||
displayName = $STR_ITEM_NAME_TRIPWIRE_CANS;
|
||||
vehicleClass = "Fortifications";
|
||||
nounderground = 0;
|
||||
|
||||
script = "tripcans"; // compiled script variable name (used by server side loop)
|
||||
initState = 1; // initial armed state
|
||||
@@ -267,6 +271,7 @@ class TrapTripwireFlare : TrapItems {
|
||||
armor = 400;
|
||||
displayName = $STR_ITEM_NAME_TRIPWIRE_FLARE;
|
||||
vehicleClass = "Fortifications";
|
||||
nounderground = 0;
|
||||
|
||||
script = "tripflare"; // compiled script variable name (used by server side loop)
|
||||
initState = 1; // initial armed state
|
||||
@@ -316,6 +321,7 @@ class TrapTripwireGrenade : TrapItems {
|
||||
armor = 400;
|
||||
displayName = $STR_ITEM_NAME_TRIPWIRE_GRENADE;
|
||||
vehicleClass = "Fortifications";
|
||||
nounderground = 0;
|
||||
|
||||
script = "tripgrenade"; // compiled script variable name (used by server side loop)
|
||||
initState = 1; // initial armed state
|
||||
@@ -365,6 +371,7 @@ class TrapTripwireSmoke : TrapItems {
|
||||
armor = 400;
|
||||
displayName = $STR_ITEM_NAME_TRIPWIRE_SMOKE;
|
||||
vehicleClass = "Fortifications";
|
||||
nounderground = 0;
|
||||
|
||||
script = "tripsmoke"; // compiled script variable name (used by server side loop)
|
||||
initState = 1; // initial armed state
|
||||
|
||||
@@ -15,7 +15,7 @@ class ItemEtool : ItemCore
|
||||
class Build
|
||||
{
|
||||
text = "Build Sandbag Fence";
|
||||
script = "; ['ItemEtool','Build'] spawn player_build; r_action_count = r_action_count + 1;";
|
||||
script = "spawn player_build; r_action_count = r_action_count + 1;";
|
||||
require[] = {"ItemEtool"};
|
||||
consume[] = {"ItemSandbag"};
|
||||
create = "Sandbag1_DZ";
|
||||
|
||||
@@ -16,7 +16,7 @@ class ItemShovel : ItemCore
|
||||
class Build
|
||||
{
|
||||
text = "Build Sandbag Fence";
|
||||
script = "; ['ItemShovel','Build'] spawn player_build; r_action_count = r_action_count + 1;";
|
||||
script = "spawn player_build; r_action_count = r_action_count + 1;";
|
||||
require[] = {"ItemShovel"};
|
||||
consume[] = {"ItemSandbag"};
|
||||
create = "Sandbag1_DZ";
|
||||
|
||||
Reference in New Issue
Block a user