Advertisement
Guest User

Untitled

a guest
Feb 19th, 2017
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 23.34 KB | None | 0 0
  1. class CarShops {
  2. /*
  3. * ARRAY FORMAT:
  4. * 0: STRING (Classname)
  5. * 1: STRING (Condition)
  6. * FORMAT:
  7. * STRING (Conditions) - Must return boolean :
  8. * String can contain any amount of conditions, aslong as the entire
  9. * string returns a boolean. This allows you to check any levels, licenses etc,
  10. * in any combination. For example:
  11. * "call life_coplevel && license_civ_someLicense"
  12. * This will also let you call any other function.
  13. *
  14. * BLUFOR Vehicle classnames can be found here: https://community.bistudio.com/wiki/Arma_3_CfgVehicles_WEST
  15. * OPFOR Vehicle classnames can be found here: https://community.bistudio.com/wiki/Arma_3_CfgVehicles_EAST
  16. * Independent Vehicle classnames can be found here: https://community.bistudio.com/wiki/Arma_3_CfgVehicles_GUER
  17. * Civilian Vehicle classnames can be found here: https://community.bistudio.com/wiki/Arma_3_CfgVehicles_CIV
  18. */
  19. class civ_car {
  20. side = "civ";
  21. conditions = "";
  22. vehicles[] = {
  23. { "B_Quadbike_01_F", "" },
  24. { "C_Hatchback_01_F", "" },
  25. { "C_Offroad_01_F", "" },
  26. { "C_SUV_01_F", "" },
  27. { "C_Hatchback_01_sport_F", "" },
  28. { "shounka_harley_a3", "" },
  29. { "Mrshounka_raptor_civ", "" },
  30. { "C_Van_01_transport_F", "" }
  31. };
  32. };
  33.  
  34. class kart_shop {
  35. side = "civ";
  36. conditions = "";
  37. vehicles[] = {
  38. { "C_Kart_01_Blu_F", "" },
  39. { "C_Kart_01_Fuel_F", "" },
  40. { "C_Kart_01_Red_F", "" },
  41. { "C_Kart_01_Vrana_F", "" }
  42. };
  43. };
  44.  
  45. class civ_truck {
  46. side = "civ";
  47. conditions = "";
  48. vehicles[] = {
  49. { "C_Van_01_box_F", "" },
  50. { "I_Truck_02_transport_F", "" },
  51. { "I_Truck_02_covered_F", "" },
  52. { "B_Truck_01_transport_F", "" },
  53. { "O_Truck_03_transport_F", "" },
  54. { "O_Truck_03_covered_F", "" },
  55. { "B_Truck_01_box_F", "" },
  56. { "O_Truck_03_device_F", "" },
  57. { "C_Van_01_fuel_F", "" },
  58. { "I_Truck_02_fuel_F", "" },
  59. { "Jonzie_Superliner", "" },
  60. { "B_Truck_01_fuel_F", "" }
  61. };
  62. };
  63.  
  64. class civ_air {
  65. side = "civ";
  66. conditions = "";
  67. vehicles[] = {
  68. { "C_Heli_Light_01_civil_F", "" },
  69. { "B_Heli_Light_01_F", "" },
  70. { "O_Heli_Light_02_unarmed_F", "" }
  71. };
  72. };
  73.  
  74. class civ_ship {
  75. side = "civ";
  76. conditions = "";
  77. vehicles[] = {
  78. { "C_Rubberboat", "" },
  79. { "C_Boat_Civil_01_F", "" },
  80. { "B_SDV_01_F", "" }
  81. };
  82. };
  83.  
  84. class reb_car {
  85. side = "civ";
  86. conditions = "";
  87. vehicles[] = {
  88. { "B_Quadbike_01_F", "" },
  89. { "B_G_Offroad_01_F", "" },
  90. { "O_MRAP_02_F", "" },
  91. { "B_Heli_Light_01_stripped_F", "" },
  92. { "B_G_Offroad_01_armed_F", "" }
  93. };
  94. };
  95.  
  96. class med_shop {
  97. side = "med";
  98. conditions = "";
  99. vehicles[] = {
  100. { "C_Offroad_01_F", "" },
  101. { "I_Truck_02_medical_F", "" },
  102. { "O_Truck_03_medical_F", "" },
  103. { "B_Truck_01_medical_F", "" }
  104. };
  105. };
  106.  
  107. class med_air_hs {
  108. side = "med";
  109. conditions = "";
  110. vehicles[] = {
  111. { "B_Heli_Light_01_F", "" },
  112. { "O_Heli_Light_02_unarmed_F", "" }
  113. };
  114. };
  115.  
  116. class cop_car {
  117. side = "cop";
  118. conditions = "";
  119. vehicles[] = {
  120. { "C_Offroad_01_F", "" },
  121. { "C_SUV_01_F", "" },
  122. { "max_CrownVic_lapd", "" },
  123. { "C_Hatchback_01_sport_F", "call life_coplevel >= 1" },
  124. { "B_MRAP_01_F", "call life_coplevel >= 2" },
  125. { "B_MRAP_01_hmg_F", "call life_coplevel >= 3" }
  126. };
  127. };
  128.  
  129. class cop_air {
  130. side = "cop";
  131. conditions = "call life_coplevel >= 3";
  132. vehicles[] = {
  133. { "B_Heli_Light_01_F", "" },
  134. { "B_Heli_Transport_01_F", "call life_coplevel >= 4" }
  135. };
  136. };
  137.  
  138. class cop_ship {
  139. side = "cop";
  140. conditions = "";
  141. vehicles[] = {
  142. { "B_Boat_Transport_01_F", "" },
  143. { "C_Boat_Civil_01_police_F", "" },
  144. { "B_Boat_Armed_01_minigun_F", "call life_coplevel >= 3" },
  145. { "B_SDV_01_F", "" }
  146. };
  147. };
  148. };
  149.  
  150. class LifeCfgVehicles {
  151. /*
  152. * Vehicle Configs (Contains textures and other stuff)
  153. *
  154. * "price" is the price before any multipliers set in Master_Config are applied.
  155. *
  156. * Default Multiplier Values & Calculations:
  157. * Civilian [Purchase, Sell]: [1.0, 0.5]
  158. * Cop [Purchase, Sell]: [0.5, 0.5]
  159. * Medic [Purchase, Sell]: [0.75, 0.5]
  160. * ChopShop: Payout = price * 0.25
  161. * GarageSell: Payout = price * [0.5, 0.5, 0.5, -1]
  162. * Cop Impound: Payout = price * 0.1
  163. * Pull Vehicle from Garage: Cost = price * [1, 0.5, 0.75, -1] * [0.5, 0.5, 0.5, -1]
  164. * -- Pull Vehicle & GarageSell Array Explanation = [civ,cop,medic,east]
  165. *
  166. * 1: STRING (Condition)
  167. * Textures config follows { Texture Name, side, {texture(s)path}, Condition}
  168. * Texture(s)path follows this format:
  169. * INDEX 0: Texture Layer 0
  170. * INDEX 1: Texture Layer 1
  171. * INDEX 2: Texture Layer 2
  172. * etc etc etc
  173. *
  174. */
  175.  
  176. class Default {
  177. vItemSpace = -1;
  178. conditions = "";
  179. price = -1;
  180. textures[] = {};
  181. };
  182.  
  183. class I_Truck_02_medical_F {
  184. vItemSpace = 150;
  185. conditions = "";
  186. price = 25000;
  187. textures[] = {};
  188. };
  189.  
  190. class O_Truck_03_medical_F {
  191. vItemSpace = 200;
  192. conditions = "";
  193. price = 45000;
  194. textures[] = {};
  195. };
  196.  
  197. class B_Truck_01_medical_F {
  198. vItemSpace = 250;
  199. conditions = "";
  200. price = 60000;
  201. textures[] = {};
  202. };
  203.  
  204. class C_Rubberboat {
  205. vItemSpace = 45;
  206. conditions = "license_civ_boat";
  207. price = 5000;
  208. textures[] = { };
  209. };
  210.  
  211. class B_Heli_Transport_01_F {
  212. vItemSpace = 200;
  213. conditions = "license_cop_cAir";
  214. price = 200000;
  215. textures[] = {};
  216. };
  217.  
  218. class B_MRAP_01_hmg_F {
  219. vItemSpace = 100;
  220. conditions = "";
  221. price = 750000;
  222. textures[] = {
  223. { "Black", "cop", {
  224. "#(argb,8,8,3)color(0.05,0.05,0.05,1)",
  225. "#(argb,8,8,3)color(0.05,0.05,0.05,1)",
  226. "#(argb,8,8,3)color(0.05,0.05,0.05,1)"
  227. }, "" }
  228. };
  229. };
  230.  
  231. class B_Boat_Armed_01_minigun_F {
  232. vItemSpace = 175;
  233. conditions = "license_cop_cg";
  234. price = 75000;
  235. textures[] = { };
  236. };
  237.  
  238. class B_Boat_Transport_01_F {
  239. vItemSpace = 45;
  240. conditions = "license_cop_cg";
  241. price = 3000;
  242. textures[] = { };
  243. };
  244.  
  245. class O_Truck_03_transport_F {
  246. vItemSpace = 285;
  247. conditions = "license_civ_trucking";
  248. price = 200000;
  249. textures[] = { };
  250. };
  251.  
  252. class Jonzie_Superliner {
  253. vItemSpace = 250;
  254. conditions = "license_civ_trucking";
  255. price = 800000;
  256. textures[] = { };
  257. };
  258.  
  259. class O_Truck_03_device_F {
  260. vItemSpace = 350;
  261. conditions = "license_civ_trucking";
  262. price = 450000;
  263. textures[] = { };
  264. };
  265.  
  266. class Land_CargoBox_V1_F {
  267. vItemSpace = 5000;
  268. conditions = "";
  269. price = -1;
  270. textures[] = {};
  271. };
  272.  
  273. class Box_IND_Grenades_F {
  274. vItemSpace = 350;
  275. conditions = "";
  276. price = -1;
  277. textures[] = {};
  278. };
  279.  
  280. class B_supplyCrate_F {
  281. vItemSpace = 700;
  282. conditions = "";
  283. price = -1;
  284. textures[] = {};
  285. };
  286.  
  287. class B_G_Offroad_01_F {
  288. vItemSpace = 65;
  289. conditions = "";
  290. price = 12500;
  291. textures[] = { };
  292. };
  293.  
  294. class max_CrownVic_lapd {
  295. vItemSpace = 65;
  296. conditions = "";
  297. price = 12500;
  298. textures[] = { };
  299. };
  300.  
  301. class B_G_Offroad_01_armed_F {
  302. vItemSpace = 65;
  303. conditions = "license_civ_rebel";
  304. price = 750000;
  305. textures[] = { };
  306. };
  307.  
  308. class C_Boat_Civil_01_F {
  309. vItemSpace = 85;
  310. conditions = "license_civ_boat";
  311. price = 22000;
  312. textures[] = { };
  313. };
  314.  
  315. class C_Boat_Civil_01_police_F {
  316. vItemSpace = 85;
  317. conditions = "license_cop_cg";
  318. price = 20000;
  319. textures[] = { };
  320. };
  321.  
  322. class B_Truck_01_box_F {
  323. vItemSpace = 450;
  324. conditions = "license_civ_trucking";
  325. price = 350000;
  326. textures[] = { };
  327. };
  328.  
  329. class B_Truck_01_transport_F {
  330. vItemSpace = 325;
  331. conditions = "license_civ_trucking";
  332. price = 275000;
  333. textures[] = { };
  334. };
  335.  
  336. class O_MRAP_02_F {
  337. vItemSpace = 60;
  338. conditions = "license_civ_driver";
  339. price = 150000;
  340. textures[] = { };
  341. };
  342.  
  343. class Mrshounka_raptor_civ {
  344. vItemSpace = 60;
  345. conditions = "license_civ_driver";
  346. price = 80000;
  347. textures[] = { };
  348. };
  349.  
  350. class C_Offroad_01_F {
  351. vItemSpace = 65;
  352. conditions = "license_civ_driver";
  353. price = 12500;
  354. textures[] = {
  355. { "Red", "civ", {
  356. "\A3\soft_F\Offroad_01\Data\offroad_01_ext_co.paa",
  357. "\A3\soft_F\Offroad_01\Data\offroad_01_ext_co.paa"
  358. }, "" },
  359. { "Yellow", "civ", {
  360. "\A3\soft_F\Offroad_01\Data\offroad_01_ext_BASE01_CO.paa",
  361. "\A3\soft_F\Offroad_01\Data\offroad_01_ext_BASE01_CO.paa"
  362. }, "" },
  363. { "White", "civ", {
  364. "\A3\soft_F\Offroad_01\Data\offroad_01_ext_BASE02_CO.paa",
  365. "\A3\soft_F\Offroad_01\Data\offroad_01_ext_BASE02_CO.paa"
  366. }, "" },
  367. { "Blue", "civ", {
  368. "\A3\soft_F\Offroad_01\Data\offroad_01_ext_BASE03_CO.paa",
  369. "\A3\soft_F\Offroad_01\Data\offroad_01_ext_BASE03_CO.paa"
  370. }, "" },
  371. { "Dark Red", "civ", {
  372. "\A3\soft_F\Offroad_01\Data\offroad_01_ext_BASE04_CO.paa",
  373. "\A3\soft_F\Offroad_01\Data\offroad_01_ext_BASE04_CO.paa"
  374. }, "" },
  375. { "Blue / White", "civ", {
  376. "\A3\soft_F\Offroad_01\Data\offroad_01_ext_BASE05_CO.paa",
  377. "\A3\soft_F\Offroad_01\Data\offroad_01_ext_BASE05_CO.paa"
  378. }, "" },
  379. { "Taxi", "civ", {
  380. "#(argb,8,8,3)color(0.6,0.3,0.01,1)"
  381. }, "" },
  382. { "Police", "cop", {
  383. "#(ai,64,64,1)Fresnel(1.3,7)"
  384. }, "" }
  385. };
  386. };
  387.  
  388. class C_Kart_01_Blu_F {
  389. vItemSpace = 20;
  390. conditions = "license_civ_driver";
  391. price = 15000;
  392. textures[] = {};
  393. };
  394. /*
  395. To edit another information in this classes you can use this exemple.
  396. class C_Kart_01_Fuel_F : C_Kart_01_Blu_F{
  397. vItemSpace = 40;
  398. price = ;
  399. };
  400.  
  401. will modify the virtual space and the price of the vehicle, but other information such as license and textures will pick up the vehicle declare at : Vehicle {};
  402. */
  403. class C_Kart_01_Fuel_F : C_Kart_01_Blu_F{}; // Get all information of C_Kart_01_Blu_F
  404. class C_Kart_01_Red_F : C_Kart_01_Blu_F{};
  405. class C_Kart_01_Vrana_F : C_Kart_01_Blu_F{};
  406.  
  407. class C_Hatchback_01_sport_F {
  408. vItemSpace = 45;
  409. conditions = "license_civ_driver";
  410. price = 40000;
  411. textures[] = {
  412. { "Red", "civ", {
  413. "\a3\soft_f_gamma\Hatchback_01\data\hatchback_01_ext_sport01_co.paa"
  414. }, "" },
  415. { "Dark Blue", "civ", {
  416. "\a3\soft_f_gamma\Hatchback_01\data\hatchback_01_ext_sport02_co.paa"
  417. }, "" },
  418. { "Orange", "civ", {
  419. "\a3\soft_f_gamma\Hatchback_01\data\hatchback_01_ext_sport03_co.paa"
  420. }, "" },
  421. { "Black / White", "civ", {
  422. "\a3\soft_f_gamma\Hatchback_01\data\hatchback_01_ext_sport04_co.paa"
  423. }, "" },
  424. { "Beige", "civ", {
  425. "\a3\soft_f_gamma\Hatchback_01\data\hatchback_01_ext_sport05_co.paa"
  426. }, "" },
  427. { "Green", "civ", {
  428. "\a3\soft_f_gamma\Hatchback_01\data\hatchback_01_ext_sport06_co.paa"
  429. }, "" },
  430. { "Police", "cop", {
  431. "#(ai,64,64,1)Fresnel(1.3,7)"
  432. }, "" }
  433. };
  434. };
  435.  
  436. class B_Quadbike_01_F {
  437. vItemSpace = 25;
  438. conditions = "license_civ_driver";
  439. price = 2500;
  440. textures[] = {
  441. { "Brown", "cop", {
  442. "\A3\Soft_F\Quadbike_01\Data\Quadbike_01_co.paa"
  443. }, "" },
  444. { "Digi Desert", "reb", {
  445. "\A3\Soft_F\Quadbike_01\Data\quadbike_01_opfor_co.paa"
  446. }, "" },
  447. { "Black", "civ", {
  448. "\A3\Soft_F_beta\Quadbike_01\Data\quadbike_01_civ_black_co.paa"
  449. }, "" },
  450. { "Blue", "civ", {
  451. "\A3\Soft_F_beta\Quadbike_01\Data\quadbike_01_civ_blue_co.paa"
  452. }, "" },
  453. { "Red", "civ", {
  454. "\A3\Soft_F_beta\Quadbike_01\Data\quadbike_01_civ_red_co.paa"
  455. }, "" },
  456. { "White", "civ", {
  457. "\A3\Soft_F_beta\Quadbike_01\Data\quadbike_01_civ_white_co.paa"
  458. }, "" },
  459. { "Digi Green", "civ", {
  460. "\A3\Soft_F_beta\Quadbike_01\Data\quadbike_01_indp_co.paa"
  461. }, "" },
  462. { "Hunter Camo", "civ", {
  463. "\a3\soft_f_gamma\Quadbike_01\data\quadbike_01_indp_hunter_co.paa"
  464. }, "" },
  465. { "Rebel Camo", "reb", {
  466. "\a3\soft_f_gamma\Quadbike_01\data\quadbike_01_indp_hunter_co.paa"
  467. }, "" }
  468. };
  469. };
  470.  
  471. class I_Truck_02_covered_F {
  472. vItemSpace = 250;
  473. conditions = "license_civ_trucking";
  474. price = 100000;
  475. textures[] = {
  476. { "Orange", "civ", {
  477. "\A3\Soft_F_Beta\Truck_02\data\truck_02_kab_co.paa",
  478. "\a3\soft_f_beta\Truck_02\data\truck_02_kuz_co.paa"
  479. }, "" },
  480. { "Black", "cop", {
  481. "#(argb,8,8,3)color(0.05,0.05,0.05,1)"
  482. }, "" }
  483. };
  484. };
  485.  
  486. class I_Truck_02_transport_F {
  487. vItemSpace = 200;
  488. conditions = "license_civ_trucking";
  489. price = 75000;
  490. textures[] = {
  491. { "Orange", "civ", {
  492. "\A3\Soft_F_Beta\Truck_02\data\truck_02_kab_co.paa",
  493. "\a3\soft_f_beta\Truck_02\data\truck_02_kuz_co.paa"
  494. }, "" },
  495. { "Black", "cop", {
  496. "#(argb,8,8,3)color(0.05,0.05,0.05,1)"
  497. }, "" }
  498. };
  499. };
  500.  
  501. class O_Truck_03_covered_F {
  502. vItemSpace = 300;
  503. conditions = "license_civ_trucking";
  504. price = 250000;
  505. textures[] = {};
  506. };
  507.  
  508. class C_Hatchback_01_F {
  509. vItemSpace = 40;
  510. conditions = "license_civ_driver";
  511. price = 9500;
  512. textures[] = {
  513. { "Beige", "civ", {
  514. "\a3\soft_f_gamma\Hatchback_01\data\hatchback_01_ext_base01_co.paa"
  515. }, "" },
  516. { "Green", "civ", {
  517. "\a3\soft_f_gamma\Hatchback_01\data\hatchback_01_ext_base02_co.paa"
  518. }, "" },
  519. { "Blue", "civ", {
  520. "\a3\soft_f_gamma\Hatchback_01\data\hatchback_01_ext_base03_co.paa"
  521. }, "" },
  522. { "Dark Blue", "civ", {
  523. "\a3\soft_f_gamma\Hatchback_01\data\hatchback_01_ext_base04_co.paa"
  524. }, "" },
  525. { "Yellow", "civ", {
  526. "\a3\soft_f_gamma\Hatchback_01\data\hatchback_01_ext_base06_co.paa"
  527. }, "" },
  528. { "White", "civ", {
  529. "\a3\soft_f_gamma\Hatchback_01\data\hatchback_01_ext_base07_co.paa"
  530. }, "" },
  531. { "Grey", "civ", {
  532. "\a3\soft_f_gamma\Hatchback_01\data\hatchback_01_ext_base08_co.paa"
  533. }, "" },
  534. { "Black", "civ", {
  535. "\a3\soft_f_gamma\Hatchback_01\data\hatchback_01_ext_base09_co.paa"
  536. }, "" }
  537. };
  538. };
  539.  
  540. class C_SUV_01_F {
  541. vItemSpace = 50;
  542. conditions = "license_civ_driver";
  543. price = 30000;
  544. textures[] = {
  545. { "Dark Red", "civ", {
  546. "\a3\soft_f_gamma\SUV_01\Data\suv_01_ext_co.paa"
  547. }, "" },
  548. { "Silver", "civ", {
  549. "\a3\soft_f_gamma\SUV_01\Data\suv_01_ext_03_co.paa"
  550. }, "" },
  551. { "Orange", "civ", {
  552. "\a3\soft_f_gamma\SUV_01\Data\suv_01_ext_04_co.paa"
  553. }, "" },
  554. { "Police", "cop", {
  555. "\a3\soft_f_gamma\SUV_01\Data\suv_01_ext_02_co.paa"
  556. }, "" }
  557. };
  558. };
  559.  
  560. class C_Van_01_transport_F {
  561. vItemSpace = 100;
  562. conditions = "license_civ_driver";
  563. price = 45000;
  564. textures[] = {
  565. { "White", "civ", {
  566. "\a3\soft_f_gamma\Van_01\Data\van_01_ext_co.paa"
  567. }, "" },
  568. { "Red", "civ", {
  569. "\a3\soft_f_gamma\Van_01\Data\van_01_ext_red_co.paa"
  570. }, "" }
  571. };
  572. };
  573.  
  574. class C_Van_01_box_F {
  575. vItemSpace = 150;
  576. conditions = "license_civ_trucking";
  577. price = 60000;
  578. textures[] = {
  579. { "White", "civ", {
  580. "\a3\soft_f_gamma\Van_01\Data\van_01_ext_co.paa"
  581. }, "" },
  582. { "Red", "civ", {
  583. "\a3\soft_f_gamma\Van_01\Data\van_01_ext_red_co.paa"
  584. }, "" }
  585. };
  586. };
  587.  
  588. class B_MRAP_01_F {
  589. vItemSpace = 65;
  590. conditions = "";
  591. price = 30000;
  592. textures[] = {
  593. { "Black", "cop", {
  594. "#(argb,8,8,3)color(0.05,0.05,0.05,1)",
  595. "#(argb,8,8,3)color(0.05,0.05,0.05,1)"
  596. }, "" }
  597. };
  598. };
  599.  
  600. class shounka_harley_a3 {
  601. vItemSpace = 20;
  602. conditions = "license_civ_driver";
  603. price = 300000;
  604. textures[] = {};
  605. };
  606.  
  607. class B_Heli_Light_01_stripped_F {
  608. vItemSpace = 90;
  609. conditions = "";
  610. price = 275000;
  611. textures[] = {
  612. { "Rebel Digital", "reb", {
  613. "\a3\air_f\Heli_Light_01\Data\Skins\heli_light_01_ext_digital_co.paa"
  614. }, "" }
  615. };
  616. };
  617.  
  618. class B_Heli_Light_01_F {
  619. vItemSpace = 90;
  620. conditions = "license_civ_pilot || {license_cop_cAir} || {license_med_mAir}";
  621. price = 245000;
  622. textures[] = {
  623. { "Police", "cop", {
  624. "\a3\air_f\Heli_Light_01\Data\heli_light_01_ext_ion_co.paa"
  625. }, "" },
  626. { "Sheriff", "civ", {
  627. "\a3\air_f\Heli_Light_01\Data\Skins\heli_light_01_ext_sheriff_co.paa"
  628. }, "" },
  629. { "Civ Blue", "civ", {
  630. "\a3\air_f\Heli_Light_01\Data\heli_light_01_ext_blue_co.paa"
  631. }, "" },
  632. { "Civ Red", "civ", {
  633. "\a3\air_f\Heli_Light_01\Data\heli_light_01_ext_co.paa"
  634. }, "" },
  635. { "Blueline", "civ", {
  636. "\a3\air_f\Heli_Light_01\Data\Skins\heli_light_01_ext_blueline_co.paa"
  637. }, "" },
  638. { "Elliptical", "civ", {
  639. "\a3\air_f\Heli_Light_01\Data\Skins\heli_light_01_ext_elliptical_co.paa"
  640. }, "" },
  641. { "Furious", "civ", {
  642. "\a3\air_f\Heli_Light_01\Data\Skins\heli_light_01_ext_furious_co.paa"
  643. }, "" },
  644. { "Jeans Blue", "civ", {
  645. "\a3\air_f\Heli_Light_01\Data\Skins\heli_light_01_ext_jeans_co.paa"
  646. }, "" },
  647. { "Speedy Redline", "civ", {
  648. "\a3\air_f\Heli_Light_01\Data\Skins\heli_light_01_ext_speedy_co.paa"
  649. }, "" },
  650. { "Sunset", "civ", {
  651. "\a3\air_f\Heli_Light_01\Data\Skins\heli_light_01_ext_sunset_co.paa"
  652. }, "" },
  653. { "Vrana", "civ", {
  654. "\a3\air_f\Heli_Light_01\Data\Skins\heli_light_01_ext_vrana_co.paa"
  655. }, "" },
  656. { "Waves Blue", "civ", {
  657. "\a3\air_f\Heli_Light_01\Data\Skins\heli_light_01_ext_wave_co.paa"
  658. }, "" },
  659. { "Rebel Digital", "reb", {
  660. "\a3\air_f\Heli_Light_01\Data\Skins\heli_light_01_ext_digital_co.paa"
  661. }, "" },
  662. { "Digi Green", "reb", {
  663. "\a3\air_f\Heli_Light_01\Data\heli_light_01_ext_indp_co.paa"
  664. }, "" },
  665. { "EMS White", "med", {
  666. "#(argb,8,8,3)color(1,1,1,0.8)"
  667. }, "" }
  668. };
  669. };
  670.  
  671. class C_Heli_Light_01_civil_F : B_Heli_Light_01_F {
  672. vItemSpace = 75;
  673. price = 245000;
  674. };
  675.  
  676. class O_Heli_Light_02_unarmed_F {
  677. vItemSpace = 210;
  678. conditions = "license_civ_pilot || {license_med_mAir}";
  679. price = 750000;
  680. textures[] = {
  681. { "Black", "cop", {
  682. "\a3\air_f\Heli_Light_02\Data\heli_light_02_ext_co.paa"
  683. }, "" },
  684. { "White / Blue", "civ", {
  685. "\a3\air_f\Heli_Light_02\Data\heli_light_02_ext_civilian_co.paa"
  686. }, "" },
  687. { "Digi Green", "civ", {
  688. "\a3\air_f\Heli_Light_02\Data\heli_light_02_ext_indp_co.paa"
  689. }, "" },
  690. { "Desert Digi", "reb", {
  691. "\a3\air_f\Heli_Light_02\Data\heli_light_02_ext_opfor_co.paa"
  692. }, "" },
  693. { "EMS White", "med", {
  694. "#(argb,8,8,3)color(1,1,1,0.8)"
  695. }, "" }
  696. };
  697. };
  698.  
  699. class B_SDV_01_F {
  700. vItemSpace = 50;
  701. conditions = "license_civ_boat || {license_cop_cg}";
  702. price = 150000;
  703. textures[] = {};
  704. };
  705.  
  706. class C_Van_01_fuel_F {
  707. vItemSpace = 20;
  708. vFuelSpace = 19500;
  709. conditions = "license_civ_trucking";
  710. price = 120000;
  711. textures[] = {
  712. { "White", "civ", {
  713. "\A3\soft_f_gamma\Van_01\data\van_01_ext_co.paa",
  714. "\A3\soft_f_gamma\Van_01\data\van_01_tank_co.paa"
  715. }, "" },
  716. { "Red", "civ", {
  717. "\A3\soft_f_gamma\Van_01\data\van_01_ext_red_co.paa",
  718. "\A3\soft_f_gamma\Van_01\data\van_01_tank_red_co.paa"
  719. }, "" }
  720. };
  721. };
  722.  
  723. class I_Truck_02_fuel_F {
  724. vItemSpace = 40;
  725. vFuelSpace = 42000;
  726. conditions = "license_civ_trucking";
  727. price = 200000;
  728. textures[] = {
  729. { "White", "civ", {
  730. "\A3\Soft_F_Beta\Truck_02\data\truck_02_kab_co.paa",
  731. "\A3\Soft_F_Beta\Truck_02\data\truck_02_fuel_co.paa"
  732. }, "" }
  733. };
  734. };
  735.  
  736. class B_Truck_01_fuel_F {
  737. vItemSpace = 50;
  738. vFuelSpace = 50000;
  739. conditions = "license_civ_trucking";
  740. price = 250000;
  741. textures[] = {};
  742. };
  743. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement