Advertisement
Guest User

Untitled

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