diff --git a/MPMissions/DayZ_Epoch_11.Chernarus/R3F_Realism/R3F_Tired/R3F_TIRED_Configuration.cfg b/MPMissions/DayZ_Epoch_11.Chernarus/R3F_Realism/R3F_Tired/R3F_TIRED_Configuration.cfg
index 38b366999..1df4528a9 100644
--- a/MPMissions/DayZ_Epoch_11.Chernarus/R3F_Realism/R3F_Tired/R3F_TIRED_Configuration.cfg
+++ b/MPMissions/DayZ_Epoch_11.Chernarus/R3F_Realism/R3F_Tired/R3F_TIRED_Configuration.cfg
@@ -9,23 +9,46 @@ along with this program. If not, see .
*****************************************************************************/
//Uncomment to write in arma.rpt a csv file for excel to trace some graphics
-//#define R3F_TIRED_CSV_EXPORT
+// #define R3F_TIRED_CSV_EXPORT
//Uncomment to show some informations in game
-//#define R3F_TIRED_DEBUG
+#define R3F_TIRED_DEBUG
//adjustment player weight with helmet jacket Rangers Light equipment (not weapons)
#define R3F_TIRED_WEIGHT_PLAYER_EMPTY 90
//Predefined models for an easy setting
// uncomment only one setting
-#define R3F_TIRED_SET_MODE_EASY
+// #define R3F_TIRED_SET_MODE_EASY
+#define R3F_TIRED_SET_MODE_UBEREASY
//#define R3F_TIRED_SET_MODE_NORMAL
//#define R3F_TIRED_SET_MODE_HARD
//adjustment weight * speed player
#define R3F_TIRED_WEIGHT_SPEED_RATIO 1
+
+#ifdef R3F_TIRED_SET_MODE_UBEREASY
+
+ // adjustment onset threshold blackout effect
+ #define R3F_TIRED_BLACKOUT_LEVEL 100000
+
+ // adjustment player attitude * weight (stand up, down, crouch)
+ #define R3F_TIRED_DOWN_LEVEL 0.9
+ #define R3F_TIRED_KNEE_LEVEL 0.6
+ #define R3F_TIRED_UP_LEVEL 0.5
+
+ #define R3F_TIRED_WEIGHT_CLIMB_FACTOR 20
+
+ //adjustment threshold weight agravante factor
+ #define R3F_TIRED_WEIGHT_LEVEL1 40
+ #define R3F_TIRED_WEIGHT_LEVEL2 50
+ #define R3F_TIRED_WEIGHT_LEVEL3 60
+
+ #define R3F_TIRED_SHORTNESS_THRESHOLD 0.8
+ #define R3F_TIRED_UNCONSCIOUSNESS_DURATION 1
+#endif
+
#ifdef R3F_TIRED_SET_MODE_EASY
// adjustment onset threshold blackout effect
@@ -91,10 +114,10 @@ along with this program. If not, see .
#endif
// ratio of threshold weight
-#define R3F_TIRED_WEIGHT_RATIO1 0.6 /* for weight < 10 kg */
-#define R3F_TIRED_WEIGHT_RATIO2 0.7 /* for weight 10 à 20 kg */
-#define R3F_TIRED_WEIGHT_RATIO3 1.2 /* for weight 20 à 30 kg */
-#define R3F_TIRED_WEIGHT_RATIO4 1.4 /* for weight > 30 kg */
+#define R3F_TIRED_WEIGHT_RATIO1 0.3 /* for weight < 10 kg */
+#define R3F_TIRED_WEIGHT_RATIO2 0.4 /* for weight 10 à 20 kg */
+#define R3F_TIRED_WEIGHT_RATIO3 0.6 /* for weight 20 à 30 kg */
+#define R3F_TIRED_WEIGHT_RATIO4 0.7 /* for weight > 30 kg */
// activation / deactivation unit recup loss over time (true / false)
@@ -102,7 +125,7 @@ along with this program. If not, see .
// adjustment recovery rate
#define R3F_TIRED_TIME_RECOVERING 100
-#define R3F_TIRED_RATIO_RECOVERING 180
+#define R3F_TIRED_RATIO_RECOVERING 360
#define R3F_TIRED_WITH_VANISH true
diff --git a/MPMissions/DayZ_Epoch_11.Chernarus/R3F_Realism/R3F_Weight/R3F_CfgWeight.h b/MPMissions/DayZ_Epoch_11.Chernarus/R3F_Realism/R3F_Weight/R3F_CfgWeight.h
index 3255ac22c..111b108b2 100644
--- a/MPMissions/DayZ_Epoch_11.Chernarus/R3F_Realism/R3F_Weight/R3F_CfgWeight.h
+++ b/MPMissions/DayZ_Epoch_11.Chernarus/R3F_Realism/R3F_Weight/R3F_CfgWeight.h
@@ -1213,6 +1213,24 @@ class CfgWeight
weight = 0.1;
};
+ class ItemBandage
+ {
+ weight = 0.005;
+ };
+
+ class Hatchet_Swing
+ {
+ weight = 0;
+ };
+ class Crowbar_Swing
+ {
+ weight = 0;
+ };
+
+ class ItemVault
+ {
+ weight = 100;
+ };
class PartWoodPile
{
@@ -1234,6 +1252,10 @@ class CfgWeight
{
weight = 15;
};
+ class ItemGenerator
+ {
+ weight = 30;
+ };
class PartGeneric
{
weight = 5;
@@ -1266,6 +1288,54 @@ class CfgWeight
{
weight = 2.5;
};
+ class ItemGoldBar
+ {
+ weight = 0.02;
+ };
+ class ItemGoldBar10oz
+ {
+ weight = 0.2;
+ };
+ class ItemSilverBar
+ {
+ weight = 0.02;
+ };
+ class ItemSilverBar10oz
+ {
+ weight = 0.2;
+ };
+ class ItemBronzeBar
+ {
+ weight = 0.02;
+ };
+ class ItemCopperBar
+ {
+ weight = 0.02;
+ };
+ class ItemCopperBar10oz
+ {
+ weight = 0.2;
+ };
+ class ItemAluminumBar
+ {
+ weight = 0.02;
+ };
+ class ItemTinBar
+ {
+ weight = 0.02;
+ };
+ class BoltSteel
+ {
+ weight = 0.02;
+ };
+ class BoltSteel4pack
+ {
+ weight = 0.08;
+ };
+ class TrashTinCan
+ {
+ weight = 0.003;
+ };
};
};
\ No newline at end of file
diff --git a/MPMissions/DayZ_Epoch_11.Chernarus/dynamic_vehicle.sqf b/MPMissions/DayZ_Epoch_11.Chernarus/dynamic_vehicle.sqf
index 1956773a6..0a3042a67 100644
--- a/MPMissions/DayZ_Epoch_11.Chernarus/dynamic_vehicle.sqf
+++ b/MPMissions/DayZ_Epoch_11.Chernarus/dynamic_vehicle.sqf
@@ -42,7 +42,7 @@ AllowedVehiclesList = [
["SUV_Charcoal",1],
["SUV_Blue",1],
["UH1H_DZ",2],
- ["Mi17_Civilian",3],
+ ["Mi17_Civilian_DZ",3],
["Mi17_DZ",1],
["LandRover_CZ_EP1",2],
["HMMWV_Ambulance",2],
diff --git a/MPMissions/DayZ_Epoch_11.Chernarus/mission.sqf b/MPMissions/DayZ_Epoch_11.Chernarus/mission.sqf
index 7c2250f54..1c63c845e 100644
--- a/MPMissions/DayZ_Epoch_11.Chernarus/mission.sqf
+++ b/MPMissions/DayZ_Epoch_11.Chernarus/mission.sqf
@@ -227,9 +227,9 @@ if (true) then
_this = _group_1 createUnit ["RU_Functionary1", [11453.513, 11372.992, -3.0517578e-005], [], 0, "CAN_COLLIDE"];
_unit_12 = _this;
_this setDir 135.79054;
- _this setVehicleInit "this allowDammage false;"; _this disableAI 'FSM'; _this disableAI 'MOVE'; _this disableAI 'AUTOTARGET'; _this disableAI 'TARGET';
+ _this setVehicleInit "this allowDammage false;"; _this disableAI 'FSM'; _this disableAI 'MOVE'; _this disableAI 'AUTOTARGET'; _this disableAI 'TARGET'; _this setBehaviour "CARELESS";
_this setUnitAbility 0.60000002;
- _this setBehaviour "CARELESS";
+ if (false) then {_group_1 selectLeader _this;};
};
_unit_13 = objNull;
@@ -238,20 +238,20 @@ if (true) then
_this = _group_1 createUnit ["Profiteer4", [11462.399, 11365.393, -9.1552734e-005], [], 0, "CAN_COLLIDE"];
_unit_13 = _this;
_this setDir -104.7984;
- _this setVehicleInit "this allowDammage false;"; _this disableAI 'FSM'; _this disableAI 'MOVE'; _this disableAI 'AUTOTARGET'; _this disableAI 'TARGET';
+ _this setVehicleInit "this allowDammage false;"; _this disableAI 'FSM'; _this disableAI 'MOVE'; _this disableAI 'AUTOTARGET'; _this disableAI 'TARGET'; _this setBehaviour "CARELESS";
_this setUnitAbility 0.60000002;
- _this setBehaviour "CARELESS";
+ if (false) then {_group_1 selectLeader _this;};
};
_unit_17 = objNull;
if (true) then
{
- _this = _group_1 createUnit ["RU_Villager3", [9761.8506, 1751.7081, 8.1777573e-005], [], 0, "CAN_COLLIDE"];
+ _this = _group_1 createUnit ["RU_Villager3", [9793.833, 1745.8711, 1.5802879], [], 0, "CAN_COLLIDE"];
_unit_17 = _this;
- _this setDir 13.985736;
- _this setVehicleInit "this allowDammage false;"; _this disableAI 'FSM'; _this disableAI 'MOVE'; _this disableAI 'AUTOTARGET'; _this disableAI 'TARGET';
+ _this setDir -47.862301;
+ _this setVehicleInit "this allowDammage false;"; _this disableAI 'FSM'; _this disableAI 'MOVE'; _this disableAI 'AUTOTARGET'; _this disableAI 'TARGET'; _this setBehaviour "CARELESS";
_this setUnitAbility 0.60000002;
- _this setBehaviour "CARELESS";
+ if (false) then {_group_1 selectLeader _this;};
};
_vehicle_73 = objNull;
@@ -350,9 +350,9 @@ if (true) then
_this = _group_1 createUnit ["Worker3", [4063.1077, 11683.607, 0.22387695], [], 0, "CAN_COLLIDE"];
_unit_56 = _this;
_this setDir 160.21169;
- _this setVehicleInit "this allowDammage false;"; _this disableAI 'FSM'; _this disableAI 'MOVE'; _this disableAI 'AUTOTARGET'; _this disableAI 'TARGET';
+ _this setVehicleInit "this allowDammage false;"; _this disableAI 'FSM'; _this disableAI 'MOVE'; _this disableAI 'AUTOTARGET'; _this disableAI 'TARGET'; _this setBehaviour "CARELESS";
_this setUnitAbility 0.60000002;
- _this setBehaviour "CARELESS";
+ if (false) then {_group_1 selectLeader _this;};
};
_unit_57 = objNull;
@@ -361,9 +361,9 @@ if (true) then
_this = _group_1 createUnit ["CIV_EuroMan01_EP1", [4076.4761, 11689.335, -0.038146973], [], 0, "CAN_COLLIDE"];
_unit_57 = _this;
_this setDir 167.6983;
- _this setVehicleInit "this allowDammage false;"; _this disableAI 'FSM'; _this disableAI 'MOVE'; _this disableAI 'AUTOTARGET'; _this disableAI 'TARGET';
+ _this setVehicleInit "this allowDammage false;"; _this disableAI 'FSM'; _this disableAI 'MOVE'; _this disableAI 'AUTOTARGET'; _this disableAI 'TARGET'; _this setBehaviour "CARELESS";
_this setUnitAbility 0.60000002;
- _this setBehaviour "CARELESS";
+ if (true) then {_group_1 selectLeader _this;};
};
_unit_58 = objNull;
@@ -372,9 +372,9 @@ if (true) then
_this = _group_1 createUnit ["RU_WorkWoman5", [4082.1348, 11678.401, 0.54440308], [], 0, "CAN_COLLIDE"];
_unit_58 = _this;
_this setDir 248.47894;
- _this setVehicleInit "this allowDammage false;"; _this disableAI 'FSM'; _this disableAI 'MOVE'; _this disableAI 'AUTOTARGET'; _this disableAI 'TARGET';
+ _this setVehicleInit "this allowDammage false;"; _this disableAI 'FSM'; _this disableAI 'MOVE'; _this disableAI 'AUTOTARGET'; _this disableAI 'TARGET'; _this setBehaviour "CARELESS";
_this setUnitAbility 0.60000002;
- _this setBehaviour "CARELESS";
+ if (false) then {_group_1 selectLeader _this;};
};
_unit_59 = objNull;
@@ -383,9 +383,9 @@ if (true) then
_this = _group_1 createUnit ["Woodlander3", [4052.4563, 11664.327, -0.51617432], [], 0, "CAN_COLLIDE"];
_unit_59 = _this;
_this setDir 394.84546;
- _this setVehicleInit "this allowDammage false;"; _this disableAI 'FSM'; _this disableAI 'MOVE'; _this disableAI 'AUTOTARGET'; _this disableAI 'TARGET';
+ _this setVehicleInit "this allowDammage false;"; _this disableAI 'FSM'; _this disableAI 'MOVE'; _this disableAI 'AUTOTARGET'; _this disableAI 'TARGET'; _this setBehaviour "CARELESS";
_this setUnitAbility 0.60000002;
- _this setBehaviour "CARELESS";
+ if (false) then {_group_1 selectLeader _this;};
};
_unit_60 = objNull;
@@ -394,9 +394,9 @@ if (true) then
_this = _group_1 createUnit ["CIV_EuroMan02_EP1", [4071.261, 11688.006, 0.33944702], [], 0, "CAN_COLLIDE"];
_unit_60 = _this;
_this setDir 159.16132;
- _this setVehicleInit "this allowDammage false;"; _this disableAI 'FSM'; _this disableAI 'MOVE'; _this disableAI 'AUTOTARGET'; _this disableAI 'TARGET';
+ _this setVehicleInit "this allowDammage false;"; _this disableAI 'FSM'; _this disableAI 'MOVE'; _this disableAI 'AUTOTARGET'; _this disableAI 'TARGET'; _this setBehaviour "CARELESS";
_this setUnitAbility 0.60000002;
- _this setBehaviour "CARELESS";
+ if (false) then {_group_1 selectLeader _this;};
};
_unit_61 = objNull;
@@ -405,9 +405,9 @@ if (true) then
_this = _group_1 createUnit ["RU_Functionary1", [4041.0911, 11671.566, 0.38604736], [], 0, "CAN_COLLIDE"];
_unit_61 = _this;
_this setDir 452.00577;
- _this setVehicleInit "this allowDammage false;"; _this disableAI 'FSM'; _this disableAI 'MOVE'; _this disableAI 'AUTOTARGET'; _this disableAI 'TARGET';
+ _this setVehicleInit "this allowDammage false;"; _this disableAI 'FSM'; _this disableAI 'MOVE'; _this disableAI 'AUTOTARGET'; _this disableAI 'TARGET'; _this setBehaviour "CARELESS";
_this setUnitAbility 0.60000002;
- _this setBehaviour "CARELESS";
+ if (false) then {_group_1 selectLeader _this;};
};
_unit_62 = objNull;
@@ -416,9 +416,9 @@ if (true) then
_this = _group_1 createUnit ["Dr_Hladik_EP1", [4045.4316, 11679.76, 0.4241333], [], 0, "CAN_COLLIDE"];
_unit_62 = _this;
_this setDir 504.14603;
- _this setVehicleInit "this allowDammage false;"; _this disableAI 'FSM'; _this disableAI 'MOVE'; _this disableAI 'AUTOTARGET'; _this disableAI 'TARGET';
+ _this setVehicleInit "this allowDammage false;"; _this disableAI 'FSM'; _this disableAI 'MOVE'; _this disableAI 'AUTOTARGET'; _this disableAI 'TARGET'; _this setBehaviour "CARELESS";
_this setUnitAbility 0.60000002;
- _this setBehaviour "CARELESS";
+ if (false) then {_group_1 selectLeader _this;};
};
_vehicle_92 = objNull;
@@ -774,10 +774,10 @@ if (true) then
_vehicle_205 = objNull;
if (true) then
{
- _this = createVehicle ["Land_Misc_Well_C_EP1", [4086.7544, 11665.94, -6.1035156e-005], [], 0, "CAN_COLLIDE"];
+ _this = createVehicle ["Land_Misc_Well_C_EP1", [4071.5081, 11660.099, -6.1035156e-005], [], 0, "CAN_COLLIDE"];
_vehicle_205 = _this;
- _this setDir -162.20102;
- _this setPos [4086.7544, 11665.94, -6.1035156e-005];
+ _this setDir -116.7886;
+ _this setPos [4071.5081, 11660.099, -6.1035156e-005];
};
_vehicle_206 = objNull;
@@ -1227,9 +1227,9 @@ if (true) then
_this = _group_1 createUnit ["RU_Functionary1", [9761.8955, 1759.4219, 2.0980835e-005], [], 0, "CAN_COLLIDE"];
_unit_73 = _this;
_this setDir 92.75209;
- _this setVehicleInit "this allowDammage false;"; _this disableAI 'FSM'; _this disableAI 'MOVE'; _this disableAI 'AUTOTARGET'; _this disableAI 'TARGET';
+ _this setVehicleInit "this allowDammage false;"; _this disableAI 'FSM'; _this disableAI 'MOVE'; _this disableAI 'AUTOTARGET'; _this disableAI 'TARGET'; _this setBehaviour "CARELESS";
_this setUnitAbility 0.60000002;
- _this setBehaviour "CARELESS";
+ if (false) then {_group_1 selectLeader _this;};
};
_vehicle_412 = objNull;
@@ -1246,9 +1246,9 @@ if (true) then
_this = _group_1 createUnit ["Woodlander1", [11450.503, 11353.635, -9.1552734e-005], [], 0, "CAN_COLLIDE"];
_unit_74 = _this;
_this setDir -48.52689;
- _this setVehicleInit "this allowDammage false;"; _this disableAI 'FSM'; _this disableAI 'MOVE'; _this disableAI 'AUTOTARGET'; _this disableAI 'TARGET';
+ _this setVehicleInit "this allowDammage false;"; _this disableAI 'FSM'; _this disableAI 'MOVE'; _this disableAI 'AUTOTARGET'; _this disableAI 'TARGET'; _this setBehaviour "CARELESS";
_this setUnitAbility 0.60000002;
- _this setBehaviour "CARELESS";
+ if (false) then {_group_1 selectLeader _this;};
};
_unit_75 = objNull;
@@ -1257,9 +1257,9 @@ if (true) then
_this = _group_1 createUnit ["RU_WorkWoman1", [11454.922, 11355.044, 0.94462103], [], 0, "CAN_COLLIDE"];
_unit_75 = _this;
_this setDir -47.533646;
- _this setVehicleInit "this allowDammage false;"; _this disableAI 'FSM'; _this disableAI 'MOVE'; _this disableAI 'AUTOTARGET'; _this disableAI 'TARGET';
+ _this setVehicleInit "this allowDammage false;"; _this disableAI 'FSM'; _this disableAI 'MOVE'; _this disableAI 'AUTOTARGET'; _this disableAI 'TARGET'; _this setBehaviour "CARELESS";
_this setUnitAbility 0.60000002;
- _this setBehaviour "CARELESS";
+ if (false) then {_group_1 selectLeader _this;};
};
_unit_78 = objNull;
@@ -1268,9 +1268,9 @@ if (true) then
_this = _group_1 createUnit ["Rocker4", [11456.184, 11359.277], [], 0, "CAN_COLLIDE"];
_unit_78 = _this;
_this setDir -52.978313;
- _this setVehicleInit "this allowDammage false;"; _this disableAI 'FSM'; _this disableAI 'MOVE'; _this disableAI 'AUTOTARGET'; _this disableAI 'TARGET';
+ _this setVehicleInit "this allowDammage false;"; _this disableAI 'FSM'; _this disableAI 'MOVE'; _this disableAI 'AUTOTARGET'; _this disableAI 'TARGET'; _this setBehaviour "CARELESS";
_this setUnitAbility 0.60000002;
- _this setBehaviour "CARELESS";
+ if (false) then {_group_1 selectLeader _this;};
};
_unit_79 = objNull;
@@ -1279,9 +1279,9 @@ if (true) then
_this = _group_1 createUnit ["RU_Citizen3", [11451.024, 11370.598, 3.0517578e-005], [], 0, "CAN_COLLIDE"];
_unit_79 = _this;
_this setDir 125.74001;
- _this setVehicleInit "this allowDammage false;"; _this disableAI 'FSM'; _this disableAI 'MOVE'; _this disableAI 'AUTOTARGET'; _this disableAI 'TARGET';
+ _this setVehicleInit "this allowDammage false;"; _this disableAI 'FSM'; _this disableAI 'MOVE'; _this disableAI 'AUTOTARGET'; _this disableAI 'TARGET'; _this setBehaviour "CARELESS";
_this setUnitAbility 0.60000002;
- _this setBehaviour "CARELESS";
+ if (false) then {_group_1 selectLeader _this;};
};
_unit_82 = objNull;
@@ -1290,9 +1290,9 @@ if (true) then
_this = _group_1 createUnit ["Doctor", [11455.903, 11376.358], [], 0, "CAN_COLLIDE"];
_unit_82 = _this;
_this setDir 107.12319;
- _this setVehicleInit "this allowDammage false;"; _this disableAI 'FSM'; _this disableAI 'MOVE'; _this disableAI 'AUTOTARGET'; _this disableAI 'TARGET';
+ _this setVehicleInit "this allowDammage false;"; _this disableAI 'FSM'; _this disableAI 'MOVE'; _this disableAI 'AUTOTARGET'; _this disableAI 'TARGET'; _this setBehaviour "CARELESS";
_this setUnitAbility 0.60000002;
- _this setBehaviour "CARELESS";
+ if (false) then {_group_1 selectLeader _this;};
};
_unit_84 = objNull;
@@ -1301,9 +1301,9 @@ if (true) then
_this = _group_1 createUnit ["TK_CIV_Takistani04_EP1", [6330.3633, 7796.9907, 0.98069924], [], 0, "CAN_COLLIDE"];
_unit_84 = _this;
_this setDir 390.10486;
- _this setVehicleInit "this allowDammage false;"; _this disableAI 'FSM'; _this disableAI 'MOVE'; _this disableAI 'AUTOTARGET'; _this disableAI 'TARGET';
+ _this setVehicleInit "this allowDammage false;"; _this disableAI 'FSM'; _this disableAI 'MOVE'; _this disableAI 'AUTOTARGET'; _this disableAI 'TARGET'; _this setBehaviour "CARELESS";
_this setUnitAbility 0.60000002;
- _this setBehaviour "CARELESS";
+ if (false) then {_group_1 selectLeader _this;};
};
_vehicle_417 = objNull;
@@ -1585,9 +1585,9 @@ if (true) then
_this = _group_1 createUnit ["RU_Functionary1", [6338.0688, 7792.0171], [], 0, "CAN_COLLIDE"];
_unit_89 = _this;
_this setDir 356.23874;
- _this setVehicleInit "this allowDammage false;"; _this disableAI 'FSM'; _this disableAI 'MOVE'; _this disableAI 'AUTOTARGET'; _this disableAI 'TARGET';
+ _this setVehicleInit "this allowDammage false;"; _this disableAI 'FSM'; _this disableAI 'MOVE'; _this disableAI 'AUTOTARGET'; _this disableAI 'TARGET'; _this setBehaviour "CARELESS";
_this setUnitAbility 0.60000002;
- _this setBehaviour "CARELESS";
+ if (false) then {_group_1 selectLeader _this;};
};
_unit_90 = objNull;
@@ -1596,9 +1596,9 @@ if (true) then
_this = _group_1 createUnit ["RU_Citizen4", [13530.905, 6356.7388, 1.7166138e-005], [], 0, "CAN_COLLIDE"];
_unit_90 = _this;
_this setDir 102.75758;
- _this setVehicleInit "this allowDammage false;"; _this disableAI 'FSM'; _this disableAI 'MOVE'; _this disableAI 'AUTOTARGET'; _this disableAI 'TARGET';
+ _this setVehicleInit "this allowDammage false;"; _this disableAI 'FSM'; _this disableAI 'MOVE'; _this disableAI 'AUTOTARGET'; _this disableAI 'TARGET'; _this setBehaviour "CARELESS";
_this setUnitAbility 0.60000002;
- _this setBehaviour "CARELESS";
+ if (false) then {_group_1 selectLeader _this;};
};
_unit_91 = objNull;
@@ -1607,9 +1607,9 @@ if (true) then
_this = _group_1 createUnit ["RU_Citizen1", [4360.6211, 2260.9841, 3.8146973e-006], [], 0, "CAN_COLLIDE"];
_unit_91 = _this;
_this setDir 196.69872;
- _this setVehicleInit "this allowDammage false;"; _this disableAI 'FSM'; _this disableAI 'MOVE'; _this disableAI 'AUTOTARGET'; _this disableAI 'TARGET';
+ _this setVehicleInit "this allowDammage false;"; _this disableAI 'FSM'; _this disableAI 'MOVE'; _this disableAI 'AUTOTARGET'; _this disableAI 'TARGET'; _this setBehaviour "CARELESS";
_this setUnitAbility 0.60000002;
- _this setBehaviour "CARELESS";
+ if (false) then {_group_1 selectLeader _this;};
};
_vehicle_513 = objNull;
@@ -1635,9 +1635,9 @@ if (true) then
_this = _group_1 createUnit ["Pilot_EP1", [6333.5981, 7803.4365, 3.0517578e-005], [], 0, "CAN_COLLIDE"];
_unit_94 = _this;
_this setDir 116.04359;
- _this setVehicleInit "this allowDammage false;"; _this disableAI 'FSM'; _this disableAI 'MOVE'; _this disableAI 'AUTOTARGET'; _this disableAI 'TARGET';
+ _this setVehicleInit "this allowDammage false;"; _this disableAI 'FSM'; _this disableAI 'MOVE'; _this disableAI 'AUTOTARGET'; _this disableAI 'TARGET'; _this setBehaviour "CARELESS";
_this setUnitAbility 0.60000002;
- _this setBehaviour "CARELESS";
+ if (false) then {_group_1 selectLeader _this;};
};
_unit_95 = objNull;
@@ -1646,9 +1646,9 @@ if (true) then
_this = _group_1 createUnit ["Rita_Ensler_EP1", [6344.8325, 7801.4595, 0.88001078], [], 0, "CAN_COLLIDE"];
_unit_95 = _this;
_this setDir -50.756989;
- _this setVehicleInit "this allowDammage false;"; _this disableAI 'FSM'; _this disableAI 'MOVE'; _this disableAI 'AUTOTARGET'; _this disableAI 'TARGET';
+ _this setVehicleInit "this allowDammage false;"; _this disableAI 'FSM'; _this disableAI 'MOVE'; _this disableAI 'AUTOTARGET'; _this disableAI 'TARGET'; _this setBehaviour "CARELESS";
_this setUnitAbility 0.60000002;
- _this setBehaviour "CARELESS";
+ if (false) then {_group_1 selectLeader _this;};
};
_vehicle_520 = objNull;
@@ -1688,9 +1688,9 @@ if (true) then
_vehicle_527 = objNull;
if (true) then
{
- _this = createVehicle ["Land_Fire_barrel", [6334.3848, 7794.292, 6.1035156e-005], [], 0, "CAN_COLLIDE"];
+ _this = createVehicle ["Land_Fire_barrel", [6334.418, 7794.2651, 6.1035156e-005], [], 0, "CAN_COLLIDE"];
_vehicle_527 = _this;
- _this setPos [6334.3848, 7794.292, 6.1035156e-005];
+ _this setPos [6334.418, 7794.2651, 6.1035156e-005];
};
_vehicle_529 = objNull;
@@ -1737,4 +1737,71 @@ if (true) then
_this setPos [6338.7021, 7790.1528, 9.1552734e-005];
};
+_vehicle_538 = objNull;
+if (true) then
+{
+ _this = createVehicle ["Info_Board_EP1", [11448.093, 11367.7, -3.0517578e-005], [], 0, "CAN_COLLIDE"];
+ _vehicle_538 = _this;
+ _this setDir -50.8032;
+ _this setPos [11448.093, 11367.7, -3.0517578e-005];
+};
+
+_vehicle_541 = objNull;
+if (true) then
+{
+ _this = createVehicle ["Info_Board_EP1", [4087.8096, 11663.525, -6.1035156e-005], [], 0, "CAN_COLLIDE"];
+ _vehicle_541 = _this;
+ _this setDir 472.88873;
+ _this setPos [4087.8096, 11663.525, -6.1035156e-005];
+};
+
+_vehicle_544 = objNull;
+if (true) then
+{
+ _this = createVehicle ["Info_Board_EP1", [6340.9106, 7795.6055, 3.0517578e-005], [], 0, "CAN_COLLIDE"];
+ _vehicle_544 = _this;
+ _this setDir 484.11816;
+ _this setPos [6340.9106, 7795.6055, 3.0517578e-005];
+};
+
+_vehicle_546 = objNull;
+if (true) then
+{
+ _this = createVehicle ["Land_Fire_barrel", [9762.1563, 1764.0287, 0.00026082993], [], 0, "CAN_COLLIDE"];
+ _vehicle_546 = _this;
+ _this setPos [9762.1563, 1764.0287, 0.00026082993];
+};
+
+_vehicle_548 = objNull;
+if (true) then
+{
+ _this = createVehicle ["Land_Fire_barrel", [4358.5767, 2260.3745, -2.8610229e-006], [], 0, "CAN_COLLIDE"];
+ _vehicle_548 = _this;
+ _this setPos [4358.5767, 2260.3745, -2.8610229e-006];
+};
+
+_vehicle_550 = objNull;
+if (true) then
+{
+ _this = createVehicle ["Land_Fire_barrel", [13533.103, 6358.1616, -8.5830688e-006], [], 0, "CAN_COLLIDE"];
+ _vehicle_550 = _this;
+ _this setPos [13533.103, 6358.1616, -8.5830688e-006];
+};
+
+_vehicle_556 = objNull;
+if (true) then
+{
+ _this = createVehicle ["HeliHCivil", [4069.3032, 11672.41, 6.1035156e-005], [], 0, "CAN_COLLIDE"];
+ _vehicle_556 = _this;
+ _this setPos [4069.3032, 11672.41, 6.1035156e-005];
+};
+
+_vehicle_557 = objNull;
+if (true) then
+{
+ _this = createVehicle ["HeliHCivil", [11472.364, 11357.452, 3.0517578e-005], [], 0, "CAN_COLLIDE"];
+ _vehicle_557 = _this;
+ _this setPos [11472.364, 11357.452, 3.0517578e-005];
+};
+
processInitCommands;
diff --git a/MPMissions/DayZ_Epoch_11.Chernarus/mission.sqm b/MPMissions/DayZ_Epoch_11.Chernarus/mission.sqm
index 31cd76f54..52b4e48cc 100644
--- a/MPMissions/DayZ_Epoch_11.Chernarus/mission.sqm
+++ b/MPMissions/DayZ_Epoch_11.Chernarus/mission.sqm
@@ -1298,7 +1298,7 @@ class Mission
expDesactiv="TitleText[""Now leaving trader city Klen"",""PLAIN DOWN""]; placevault = true;";
class Effects
{
- soundDet="arabian_market_2";
+ soundDet="arabian_market_1";
};
};
class Item2
@@ -1314,7 +1314,7 @@ class Mission
expDesactiv="TitleText[""Now leaving trader city Stary"",""PLAIN DOWN""]; placevault = true;";
class Effects
{
- soundDet="arabian_market_3";
+ soundDet="arabian_market_1";
};
};
};
diff --git a/MPMissions/DayZ_Epoch_11.Chernarus/server_traders.sqf b/MPMissions/DayZ_Epoch_11.Chernarus/server_traders.sqf
index 3c617a4c5..4fa8b2eff 100644
--- a/MPMissions/DayZ_Epoch_11.Chernarus/server_traders.sqf
+++ b/MPMissions/DayZ_Epoch_11.Chernarus/server_traders.sqf
@@ -35,12 +35,12 @@ menu_Rocker4 = [
// Parts Traders
menu_Woodlander3 = [
- [["Car Parts",21],["Building Supplies",22]],
+ [["Vehicle Parts",21],["Building Supplies",22]],
[],
"friendly"
];
menu_Woodlander1 = [
- [["Car Parts",2121],["Building Supplies",2222]],
+ [["Vehicle Parts",2121],["Building Supplies",2222]],
[],
"friendly"
];
@@ -49,26 +49,20 @@ menu_Woodlander1 = [
menu_RU_WorkWoman1 = [
[["Food and Drinks",51],["Backpacks",52],["Toolbelt Items",53],["Clothes",54]],
[
- ["ItemCopperBar","ItemSodaEmpty",1,3,"buy","Empty Soda Cans","Copper Bar",103],
- ["ItemCopperBar","TrashTinCan",1,3,"buy","Empty Tin Cans","Copper Bar",102],
["ItemCopperBar","TrashJackDaniels",1,1,"buy","Empty Wiskey Bottle","Copper Bar",101]
],
"friendly"
];
menu_RU_WorkWoman5 = [
- [["Food and Drinks",5151],["Backpacks",5252],["Toolbelt",5353],["Clothes",5454]],
+ [["Food and Drinks",5151],["Backpacks",5252],["Toolbelt Items",5353],["Clothes",5454]],
[
- ["ItemCopperBar","ItemSodaEmpty",1,3,"buy","Empty Soda Cans","Copper Bar",103],
- ["ItemCopperBar","TrashTinCan",1,3,"buy","Empty Tin Cans","Copper Bar",102],
["ItemCopperBar","TrashJackDaniels",1,1,"buy","Empty Wiskey Bottle","Copper Bar",101]
],
"friendly"
];
menu_Rita_Ensler_EP1 = [
- [["Food and Drinks",515151],["Backpacks",525252],["Toolbelt",535353],["Clothes",545454]],
+ [["Food and Drinks",515151],["Backpacks",525252],["Toolbelt Items",535353],["Clothes",545454]],
[
- ["ItemCopperBar","ItemSodaEmpty",1,3,"buy","Empty Soda Cans","Copper Bar",103],
- ["ItemCopperBar","TrashTinCan",1,3,"buy","Empty Tin Cans","Copper Bar",102],
["ItemCopperBar","TrashJackDaniels",1,1,"buy","Empty Wiskey Bottle","Copper Bar",101]
],
"friendly"
@@ -93,12 +87,12 @@ menu_Pilot_EP1 = [
];
// Auto Traders
menu_Worker3 = [
- [["Cars",41],["Trucks Unarmed",42],["SUV",466],["Buses and Vans",467],["Offroad",43],["Helicopter Unarmed",44],["Military Unarmed",45]],
+ [["Cars",41],["Trucks Unarmed",42],["SUV",466],["Buses and Vans",467],["Bikes and ATV",43],["Helicopter Unarmed",44],["Military Unarmed",45]],
[],
"friendly"
];
menu_Profiteer4 = [
- [["Trucks Armed",422],["Utility",46],["Helicopter Armed",444],["Military Armed",455],["Fuel Trucks",47],["Heavy Armor Unarmed",48]],
+ [["Trucks Armed",422],["UAZ",46],["Helicopter Armed",444],["Military Armed",455],["Fuel Trucks",47],["Heavy Armor Unarmed",48]],
[],
"friendly"
];
@@ -119,10 +113,19 @@ menu_Doctor = [
menu_RU_Functionary1 = [
[["Vaults",411]],
[
- ["ItemSilverBar","ItemCopperBar",1,6,"buy","Copper","Silver",103],
- ["ItemCopperBar","ItemSilverBar",6,1,"buy","Silver","Copper",102],
- ["ItemGoldBar","ItemSilverBar",1,6,"buy","Silver","Gold",101],
- ["ItemSilverBar","ItemGoldBar",6,1,"buy","Gold","Silver",100]
+
+ ["ItemTinBar","ItemAluminumBar",1,2,"buy","Aluminum","Tin",108],
+ ["ItemAluminumBar","ItemTinBar",2,1,"buy","Tin","Aluminum",107],
+
+ ["ItemCopperBar","ItemTinBar",1,2,"buy","Tin","Copper",106],
+ ["ItemTinBar","ItemCopperBar",2,1,"buy","Copper","Tin",105],
+
+ ["ItemSilverBar","ItemCopperBar10oz",1,1,"buy","10oz Copper","Silver",104],
+ ["ItemCopperBar10oz","ItemSilverBar",1,1,"buy","Silver","10oz Copper",103],
+
+ ["ItemGoldBar","ItemSilverBar10oz",1,3,"buy","10oz Silver","Gold",102],
+ ["ItemSilverBar10oz","ItemGoldBar",3,1,"buy","Gold","10oz Silver",101]
+
],
"neutral"
];