Advertisement
Guest User

Untitled

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