|
2 | 2 | File: custom.sqf |
3 | 3 | Author: KP Liberation Dev Team - https://github.com/KillahPotatoes |
4 | 4 | Date: 2017-10-07 |
5 | | - Last Update: 2020-05-25 |
| 5 | + Last Update: 2024-11-16 |
6 | 6 | License: MIT License - http://www.opensource.org/licenses/MIT |
7 | 7 |
|
8 | 8 | Description: |
@@ -33,10 +33,11 @@ KPLIB_b_fobBuilding = "Land_Cargo_HQ_V1_F"; // This |
33 | 33 | KPLIB_b_fobBox = "B_Slingload_01_Cargo_F"; // This is the FOB as a container. |
34 | 34 | KPLIB_b_fobTruck = "B_Truck_01_box_F"; // This is the FOB as a vehicle. |
35 | 35 | KPLIB_b_arsenal = "B_supplyCrate_F"; // This is the virtual arsenal as portable supply crates. |
36 | | -KPLIB_b_mobileRespawn = "B_Truck_01_medical_F"; // This is the mobile respawn (and medical) truck. |
| 36 | +KPLIB_b_mobileRespawn = ["B_Truck_01_medical_F", "C_Boat_Civil_01_F", "I_Heli_light_03_unarmed_F"]; // Array of three mobile respawns: Truck, Boat, Helicopter. |
37 | 37 | KPLIB_b_potato01 = "B_Heli_Transport_03_unarmed_F"; // This is Potato 01, a multipurpose mobile respawn as a helicopter. |
38 | 38 | KPLIB_b_crewUnit = "B_crew_F"; // This defines the crew for vehicles. |
39 | 39 | KPLIB_b_heliPilotUnit = "B_Helipilot_F"; // This defines the pilot for helicopters. |
| 40 | +KPLIB_b_crewStatic = "B_Soldier_F"; // This defines the crew for static weapons and light vehicles |
40 | 41 | KPLIB_b_addHeli = "B_Heli_Light_01_F"; // These are the additional helicopters which spawn on the Freedom or at Chimera base. |
41 | 42 | KPLIB_b_addBoat = "B_Boat_Transport_01_F"; // These are the boats which spawn at the stern of the Freedom. |
42 | 43 | KPLIB_b_logiTruck = "B_Truck_01_transport_F"; // These are the trucks which are used in the logistic convoy system. |
@@ -314,7 +315,9 @@ KPLIB_b_objectsDeco = [ |
314 | 315 |
|
315 | 316 | KPLIB_b_vehSupport = [ |
316 | 317 | [KPLIB_b_arsenal,100,200,0], |
317 | | - [KPLIB_b_mobileRespawn,200,0,100], |
| 318 | + [(KPLIB_b_mobileRespawn select 0),150,0,100], |
| 319 | + [(KPLIB_b_mobileRespawn select 1),200,0,100], |
| 320 | + [(KPLIB_b_mobileRespawn select 2),300,0,100], |
318 | 321 | [KPLIB_b_fobBox,300,500,0], |
319 | 322 | [KPLIB_b_fobTruck,300,500,75], |
320 | 323 | [KPLIB_b_smallStorage,0,0,0], |
|
0 commit comments