Skip to content

Commit ca3c40a

Browse files
committed
Merged development
1 parent 2ba636b commit ca3c40a

File tree

3 files changed

+11
-2
lines changed

3 files changed

+11
-2
lines changed

source/dialog/request.sqf

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ ctrlSetText [1000, format["%1",commandpointsblu1]];
44
ctrlSetText [1001, format["%1",zoneundercontrolblu]];
55
ctrlSetText [1002, format["%1",WARCOM_blufor_ap]];
66

7-
// UNITS
7+
// UNITS
88
_index = lbAdd [2100, "Rifleman(2CP)"]; // 0
99
_index = lbAdd [2100, "Grenadier(3CP)"]; // 1
1010
_index = lbAdd [2100, "Automatic Rifleman(3CP)"]; // 2
@@ -21,7 +21,7 @@ _index = lbAdd [2100, "Explosive specialist(4CP)"]; // 12
2121

2222
lbSetCurSel [2100, 0];
2323

24-
// SQUADS
24+
// SQUADS
2525
_index0 = lbAdd [2101, "Fireteam(8CP)"]; // 0
2626
_index0 = lbAdd [2101, "Rifle Squad(16CP)"]; // 1
2727
_index0 = lbAdd [2101, "Weapons Squad(18CP)"]; // 2
@@ -75,6 +75,8 @@ _index1 = lbAdd [2102, "Blackfish Vehicle (45CP)"]; // 34
7575
_index1 = lbAdd [2102, "Blackfish Armed (60CP)"]; // 35
7676
_index1 = lbAdd [2102, "Black Wasp II (50CP)"]; // 36
7777
_index1 = lbAdd [2102, "Black Wasp II (Stealth) (60CP)"]; // 37
78+
_index1 = lbAdd [2102, "Rhino MGS (40CP)"]; // 38
79+
_index1 = lbAdd [2102, "Rhino MGS UP (42CP)"]; // 39
7880
lbSetCurSel [2102, 0];
7981

8082
// Supports !!! CHECK TO ADD AT INIT

source/dialog/request_vehicle.sqf

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -123,6 +123,12 @@ switch (_index) do {
123123
case 37: { //WASP (Stealth)
124124
[60, "B_Plane_Fighter_01_Stealth_F"] execVM "dialog\spawnVehicle.sqf";
125125
};
126+
case 38: { //Rhino (Stealth)
127+
[38, "B_AFV_Wheeled_01_cannon_F"] execVM "dialog\spawnVehicle.sqf";
128+
};
129+
case 39: { //Rhino UP (Stealth)
130+
[42, "B_AFV_Wheeled_01_up_cannon_F"] execVM "dialog\spawnVehicle.sqf";
131+
};
126132
};
127133
vehic = nil;
128134
publicVariable "commandpointsblu1";

source/missions/missions/sabotage/mission.sqf

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ str(_markername2) setMarkerAlpha 0.3;
2525

2626
// create TOWER
2727
_tower = createVehicle ["Land_dp_transformer_F", _MissionPos, [], 0, "NONE"];
28+
_tower addEventHandler ["HandleDamage", {0}];
2829
_tower addaction ["Sabotage", "missions\missions\sabotage\success.sqf",[_missionPos,_mission_name,_markername,_markername2]];
2930

3031
// TASK AND NOTIFICATION

0 commit comments

Comments
 (0)