Advertisement
Guest User

Untitled

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