We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4af62b6 commit da73215Copy full SHA for da73215
source/dialog/spawnVehicle.sqf
@@ -7,6 +7,19 @@ if (commandpointsblu1 >= _requiredPoints) then {
7
_spawnPos = (getpos hq_blu1) findEmptyPosition [40, 120, _vehicleType];
8
_spawnPos = [(_spawnPos select 0), _spawnPos select 1];
9
vehic = _vehicleType createVehicle _spawnPos;
10
+
11
+ if(unitIsUAV vehic) then {
12
+ createVehicleCrew vehic;
13
+ };
14
15
+ if(vehic isKindOf "Tank") then {
16
17
18
19
+ if(vehic isKindOf "Wheeled_APC") then {
20
21
22
23
hint "Vehicle ready !";
24
} else {
25
hint "Not enough command points";
0 commit comments