Skip to content

Commit f7541ef

Browse files
committed
Added NATO Rhino MGS
1 parent 369d2af commit f7541ef

File tree

2 files changed

+10
-2
lines changed

2 files changed

+10
-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: { //WASP (Stealth)
127+
[38, "B_AFV_Wheeled_01_cannon_F"] execVM "dialog\spawnVehicle.sqf";
128+
};
129+
case 39: { //WASP (Stealth)
130+
[42, "B_AFV_Wheeled_01_up_cannon_F"] execVM "dialog\spawnVehicle.sqf";
131+
};
126132
};
127133
vehic = nil;
128134
publicVariable "commandpointsblu1";

0 commit comments

Comments
 (0)