Skip to content

Commit 2d82f94

Browse files
committed
Merge remote-tracking branch 'refs/remotes/origin/livonia' into dev
2 parents a9b48e4 + 7a4de3a commit 2d82f94

114 files changed

Lines changed: 20487 additions & 435 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

addons/overthrow_main.pbo

398 KB
Binary file not shown.

addons/overthrow_main/CfgFunctions.hpp

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -129,6 +129,7 @@ class CfgFunctions
129129
class respawnHandler {};
130130
class keyHandler {};
131131
class taggedHandler {};
132+
class EnemyDamagedHandler {};
132133
};
133134

134135
class UI
@@ -184,6 +185,7 @@ class CfgFunctions
184185
class jobsDialog {};
185186
class craftDialog {};
186187
class uploadData {};
188+
class logisticsDialog {};
187189
};
188190

189191
class Display
@@ -197,6 +199,7 @@ class CfgFunctions
197199
class displayJobDetails {};
198200
class displayCraftItem {};
199201
class factoryRefresh {};
202+
class displayLogisticDetails {};
200203
};
201204

202205
/*
@@ -236,6 +239,7 @@ class CfgFunctions
236239
class takeLegit {};
237240
class warehouseTake {};
238241
class recover {};
242+
class storeAll {};
239243

240244
/* Port */
241245
class exportAll {};
@@ -265,6 +269,7 @@ class CfgFunctions
265269
class transferFunds {};
266270
class hireEmployee {};
267271
class fireEmployee {};
272+
class setVehicleWaypoint {};
268273

269274
/* Jobs */
270275
class setJobWaypoint {};
@@ -296,6 +301,8 @@ class CfgFunctions
296301
class playSound {};
297302
class canPlace {};
298303
class vehicleCanMove {};
304+
class unflipVehicle {};
305+
class triggerBattle {};
299306

300307
};
301308

@@ -466,6 +473,7 @@ class CfgFunctions
466473
class squadGetOut {};
467474
class squadGetInMyVehicle {};
468475
class orderStopAndFace {};
476+
class landAndCleanupHelicopter {};
469477
};
470478

471479
/*

addons/overthrow_main/CfgVehicles.hpp

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,11 @@
1616
displayName = "Salvage"; \
1717
statement = "_target spawn OT_fnc_salvageWreck"; \
1818
}; \
19+
class OT_Unflip { \
20+
condition = "!(canMove _target) && (alive _target) && ((vehicle player) isEqualTo player)"; \
21+
displayName = "Unflip"; \
22+
statement = "_target call OT_fnc_unflipVehicle"; \
23+
}; \
1924
}; \
2025
};
2126

@@ -110,7 +115,7 @@ class CfgVehicles {
110115
class ACE_Actions {
111116
class ACE_MainActions {
112117
class OT_InteractionActions {
113-
condition = "(alive _target) && (!isplayer _target) && !(side _target isEqualTo west) && (!(_player getVariable ['ot_tute',true]) || !(_player getVariable ['OT_tute_inProgress', false]))";
118+
condition = "(alive _target) && (!isplayer _target) && !(side _target isEqualTo west)";
114119
selection = "pelvis";
115120
distance = 4;
116121
displayName = "Talk";

addons/overthrow_main/campaign/description.ext

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,5 +47,15 @@ class Campaign
4747
{
4848
template = "OverthrowSpAltis.Altis";
4949
};
50+
51+
class Malden: MissionDefault
52+
{
53+
template = "OverthrowSpMalden.Malden";
54+
};
55+
56+
class Livonia: MissionDefault
57+
{
58+
template = "OverthrowSpLivonia.Enoch";
59+
};
5060
};
5161
};

addons/overthrow_main/campaign/missions/OverthrowMpAltis.Altis/initVar.sqf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ OT_vehTypes_civignore = ["C_Hatchback_01_F","C_Hatchback_01_sport_F",OT_vehType_
6868
OT_illegalHeadgear = ["H_MilCap_gen_F","H_Beret_gen_F","H_HelmetB_TI_tna_F"];
6969
OT_illegalVests = ["V_TacVest_gen_F"];
7070

71-
OT_clothes_locals = ["U_C_Man_casual_5_F","U_C_Poloshirt_burgundy","U_I_C_Soldier_Bandit_1_F"];
71+
OT_clothes_locals = ["U_I_C_Soldier_Bandit_2_F","U_I_C_Soldier_Bandit_3_F","U_C_Poor_1","U_C_Poor_2","U_C_Poor_shorts_1","U_C_Poor_shorts_2","U_C_Poloshirt_blue","U_C_Poloshirt_burgundy","U_C_Poloshirt_redwhite","U_C_Poloshirt_stripped"];
7272
OT_clothes_expats = ["U_I_C_Soldier_Bandit_5_F","U_C_Poloshirt_blue","U_C_Poloshirt_burgundy","U_C_Poloshirt_redwhite","U_C_Poloshirt_salmon","U_C_Poloshirt_stripped","U_C_Man_casual_6_F","U_C_Man_casual_4_F","U_C_Man_casual_5_F"];
7373
OT_clothes_tourists = [];
7474
OT_clothes_priest = "U_C_Man_casual_2_F";

0 commit comments

Comments
 (0)