Advertisement
Guest User

Untitled

a guest
Jan 1st, 2019
161
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 37.85 KB | None | 0 0
  1. lass 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.  
  20. class civ_car {
  21. side = "civ";
  22. conditions = "license_civ_driver || {license_civ_rebel}";
  23. vehicles[] = {
  24. { "B_Quadbike_01_F", "" },
  25. { "C_Hatchback_01_F", "" },
  26. { "C_Offroad_01_F", "" },
  27. { "C_SUV_01_F", "" },
  28. { "C_Hatchback_01_sport_F", "" },
  29. { "C_Van_01_transport_F", "" },
  30. { "C_Van_02_vehicle_F", "" },
  31. { "C_Van_02_service_F", "" },
  32. { "C_Offroad_02_unarmed_F", "" } //Apex DLC
  33. };
  34. };
  35.  
  36. class civ_air {
  37. side = "civ";
  38. conditions = "license_civ_pilot || {license_civ_rebel}";
  39. vehicles[] = {
  40. { "B_Heli_Light_01_F", "" },
  41. { "C_Heli_Light_01_civil_F", "" },
  42. { "C_Plane_Civil_01_F", "" },
  43. { "O_Heli_Light_02_unarmed_F", "" },
  44. { "B_Heli_Transport_03_unarmed_F", "" },
  45. { "O_Heli_Transport_04_F", "" },
  46. { "O_Heli_Transport_04_bench_F", "" },
  47. { "O_Heli_Transport_04_covered_F", "" }
  48. };
  49. };
  50.  
  51. class civ_truck {
  52. side = "civ";
  53. conditions = "license_civ_trucking || {license_civ_rebel}";
  54. vehicles[] = {
  55. { "C_Van_01_box_F", "" },
  56. { "I_Truck_02_transport_F", "" },
  57. { "I_Truck_02_covered_F", "" },
  58. { "O_Truck_03_transport_F", "" },
  59. { "B_Truck_01_transport_F", "" },
  60. { "O_Truck_03_covered_F", "" },
  61. { "B_Truck_01_box_F", "" },
  62. { "O_Truck_03_device_F", "" },
  63. { "C_Van_01_fuel_F", "" },
  64. { "I_Truck_02_fuel_F", "" },
  65. { "B_Truck_01_fuel_F", "" }
  66. };
  67. };
  68.  
  69. class civ_ship {
  70. side = "civ";
  71. conditions = "license_civ_boat || {license_civ_rebel}";
  72. vehicles[] = {
  73. { "C_Rubberboat", "" },
  74. { "C_Boat_Civil_01_F", "" },
  75. { "B_SDV_01_F", "" },
  76. { "C_Boat_Transport_02_F", "" }, //Apex DLC
  77. { "C_Scooter_Transport_01_F", "" } //Apex DLC
  78. };
  79. };
  80.  
  81. class kart_shop {
  82. side = "civ";
  83. conditions = "license_civ_driver";
  84. vehicles[] = {
  85. { "C_Kart_01_Blu_F", "" },
  86. { "C_Kart_01_Fuel_F", "" },
  87. { "C_Kart_01_Red_F", "" },
  88. { "C_Kart_01_Vrana_F", "" }
  89. };
  90. };
  91.  
  92. class reb_car {
  93. side = "civ";
  94. conditions = "license_civ_rebel";
  95. vehicles[] = {
  96. { "C_SUV_01_F", "" },
  97. { "B_G_Offroad_01_F", "" },
  98. { "O_MRAP_02_F", "" },
  99. { "I_MRAP_03_F", "" },
  100. { "B_G_Offroad_01_armed_F", "" },
  101. { "O_T_LSV_02_unarmed_F", "" },
  102. { "O_T_LSV_02_armed_F", "" }
  103. };
  104. };
  105.  
  106. class reb_air {
  107. side = "civ";
  108. conditions = "license_civ_rebel";
  109. vehicles[] = {
  110. { "B_Heli_Light_01_stripped_F", "" },
  111. { "I_Heli_Transport_02_F", "" }
  112. };
  113. };
  114.  
  115. class merco_car {
  116. side = "civ";
  117. conditions = "license_civ_merco";
  118. vehicles[] = {
  119. { "I_MRAP_03_F", "" }
  120. };
  121. };
  122.  
  123. class merco_air {
  124. side = "civ";
  125. conditions = "license_civ_merco";
  126. vehicles[] = {
  127. { "B_Heli_Light_01_stripped_F", "" },
  128. { "O_Heli_Attack_02_F", "" },
  129. { "I_Heli_Transport_02_F", "" }
  130. };
  131. };
  132.  
  133. class med_shop {
  134. side = "med";
  135. conditions = "";
  136. vehicles[] = {
  137. { "C_Offroad_01_F", "" },
  138. { "C_Van_01_box_F", "" },
  139. { "C_SUV_01_F", "" },
  140. { "C_Hatchback_01_sport_F", "" },
  141. { "B_MRAP_01_F", "" },
  142. { "C_Van_02_medevac_F", "" }
  143. };
  144. };
  145.  
  146. class med_air_hs {
  147. side = "med";
  148. conditions = "";
  149. vehicles[] = {
  150. { "B_Heli_Light_01_stripped_F", "" },
  151. { "O_Heli_Light_02_unarmed_F", "" }
  152. };
  153. };
  154.  
  155. class cop_car {
  156. side = "cop";
  157. conditions = "";
  158. vehicles[] = {
  159. { "C_Offroad_01_F", "" },
  160. { "B_T_LSV_01_unarmed_F", "" },
  161. //{ "C_Hatchback_01_F", "call life_coplevel >= 1" },
  162. { "C_SUV_01_F", "call life_coplevel >= 1" },
  163. { "C_Hatchback_01_sport_F", "call life_coplevel >= 1" },
  164. { "B_T_LSV_01_armed_F", "call life_coplevel >= 6" },
  165. { "B_MRAP_01_F", "call life_coplevel >= 4" },
  166. { "B_MRAP_01_hmg_F", "call life_coplevel >= 7" },
  167. { "I_MRAP_03_F", "call life_coplevel >= 5" }
  168. };
  169. };
  170.  
  171. class cop_air {
  172. side = "cop";
  173. conditions = "call life_coplevel >= 1";
  174. vehicles[] = {
  175. { "B_Heli_Light_01_F", "call life_coplevel >= 2" },
  176. { "B_Heli_Transport_01_F", "call life_coplevel >= 6" },
  177. { "I_Heli_light_03_unarmed_F", "call life_coplevel >= 4" }
  178. };
  179. };
  180.  
  181. class cop_ship {
  182. side = "cop";
  183. conditions = "";
  184. vehicles[] = {
  185. { "B_Boat_Transport_01_F", "" },
  186. { "C_Boat_Civil_01_police_F", "" },
  187. { "C_Boat_Transport_02_F", "" },
  188. { "B_Boat_Armed_01_minigun_F", "call life_coplevel >= 4" },
  189. { "B_SDV_01_F", "" }
  190. };
  191. };
  192. };
  193.  
  194. class LifeCfgVehicles {
  195. /*
  196. Vehicle Configs (Contains textures and other stuff)
  197.  
  198. "price" is the price before any multipliers set in Master_Config are applied.
  199.  
  200. Default Multiplier Values & Calculations:
  201. Civilian [Purchase, Sell]: [1.0, 0.5]
  202. Cop [Purchase, Sell]: [0.5, 0.5]
  203. Medic [Purchase, Sell]: [0.75, 0.5]
  204. ChopShop: Payout = price * 0.25
  205. GarageSell: Payout = price * [0.5, 0.5, 0.5, -1]
  206. Cop Impound: Payout = price * 0.1
  207. Pull Vehicle from Garage: Cost = price * [1, 0.5, 0.75, -1] * [0.5, 0.5, 0.5, -1]
  208. -- Pull Vehicle & GarageSell Array Explanation = [civ,cop,medic,east]
  209.  
  210. 1: STRING (Condition)
  211. Textures config follows { Texture Name, side, {texture(s)path}, Condition}
  212. Texture(s)path follows this format:
  213. INDEX 0: Texture Layer 0
  214. INDEX 1: Texture Layer 1
  215. INDEX 2: Texture Layer 2
  216. etc etc etc
  217.  
  218. */
  219.  
  220. class Default {
  221. vItemSpace = -1;
  222. conditions = "";
  223. price = -1;
  224. textures[] = {};
  225. };
  226.  
  227. // Apex DLC
  228. class C_Boat_Transport_02_F {
  229. vItemSpace = 100;
  230. conditions = "";
  231. price = 10000;
  232. textures[] = {
  233. { "Civilian", "civ", {
  234. "\A3\Boat_F_Exp\Boat_Transport_02\Data\Boat_Transport_02_exterior_civilian_CO.paa"
  235. }, ""
  236. },
  237. { "Noir", "cop", {
  238. "\A3\Boat_F_Exp\Boat_Transport_02\Data\Boat_Transport_02_exterior_CO.paa"
  239. }, ""
  240. }
  241. };
  242. };
  243.  
  244. // Apex DLC
  245. class C_Offroad_02_unarmed_F {
  246. vItemSpace = 65;
  247. conditions = "";
  248. price = 25000;
  249. textures[] = {
  250. { "Noir", "civ", {
  251. "\A3\Soft_F_Exp\Offroad_02\Data\offroad_02_ext_black_co.paa"
  252. }, ""
  253. },
  254. { "Blue", "civ", {
  255. "\A3\Soft_F_Exp\Offroad_02\Data\offroad_02_ext_blue_co.paa"
  256. }, ""
  257. },
  258. { "Green", "civ", {
  259. "\A3\Soft_F_Exp\Offroad_02\Data\offroad_02_ext_green_co.paa"
  260. }, ""
  261. },
  262. { "Orange", "civ", {
  263. "\A3\Soft_F_Exp\Offroad_02\Data\offroad_02_ext_orange_co.paa"
  264. }, ""
  265. },
  266. { "Red", "civ", {
  267. "\A3\Soft_F_Exp\Offroad_02\Data\offroad_02_ext_red_co.paa"
  268. }, ""
  269. },
  270. { "White", "civ", {
  271. "\A3\Soft_F_Exp\Offroad_02\Data\offroad_02_ext_white_co.paa"
  272. }, ""
  273. }
  274. };
  275. };
  276.  
  277. class I_Heli_Transport_02_F {
  278. vItemSpace = 100;
  279. conditions = "";
  280. price = 3500000;
  281. textures[] = { };
  282. };
  283.  
  284. class B_Heli_Transport_03_unarmed_F {
  285. vItemSpace = 100;
  286. conditions = "";
  287. price = 3000000;
  288. textures[] = {
  289. /*{ "Armée", "cop", {
  290. "textures\armee\v\huron1.jpg",
  291. "textures\armee\v\huron2.jpg"
  292. }, ""
  293. },*/
  294. };
  295. };
  296.  
  297. class O_Heli_Transport_04_F {
  298. vItemSpace = 300;
  299. conditions = "";
  300. price = 3200000;
  301. textures[] = { };
  302. };
  303.  
  304. class O_Heli_Transport_04_bench_F {
  305. vItemSpace = 100;
  306. conditions = "";
  307. price = 4000000;
  308. textures[] = { };
  309. };
  310.  
  311. class O_Heli_Transport_04_covered_F {
  312. vItemSpace = 100;
  313. conditions = "";
  314. price = 5000000;
  315. textures[] = { };
  316. };
  317.  
  318. // Apex DLC
  319. class C_Plane_Civil_01_F {
  320. vItemSpace = 200;
  321. conditions = "";
  322. price = 500000;
  323. textures[] = {
  324. { "Racing (Tan Interior)", "civ", {
  325. "A3\Air_F_Exp\Plane_Civil_01\Data\btt_ext_01_Racer_co.paa",
  326. "A3\Air_F_Exp\Plane_Civil_01\Data\btt_ext_02_Racer_co.paa",
  327. "A3\Air_F_Exp\Plane_Civil_01\Data\btt_int_01_tan_co.paa",
  328. "A3\Air_F_Exp\Plane_Civil_01\Data\btt_int_02_tan_co.paa"
  329. }, ""
  330. },
  331. { "Racing", "civ", {
  332. "A3\Air_F_Exp\Plane_Civil_01\Data\btt_ext_01_Racer_co.paa",
  333. "A3\Air_F_Exp\Plane_Civil_01\Data\btt_ext_02_Racer_co.paa",
  334. "A3\Air_F_Exp\Plane_Civil_01\Data\btt_int_01_co.paa",
  335. "A3\Air_F_Exp\Plane_Civil_01\Data\btt_int_02_co.paa"
  336. }, ""
  337. },
  338. { "Red Line (Tan Interior)", "civ", {
  339. "A3\Air_F_Exp\Plane_Civil_01\Data\btt_ext_01_RedLine_co.paa",
  340. "A3\Air_F_Exp\Plane_Civil_01\Data\btt_ext_02_RedLine_co.paa",
  341. "A3\Air_F_Exp\Plane_Civil_01\Data\btt_int_01_tan_co.paa",
  342. "A3\Air_F_Exp\Plane_Civil_01\Data\btt_int_02_tan_co.paa"
  343. }, ""
  344. },
  345. { "Red Line", "civ", {
  346. "A3\Air_F_Exp\Plane_Civil_01\Data\btt_ext_01_RedLine_co.paa",
  347. "A3\Air_F_Exp\Plane_Civil_01\Data\btt_ext_02_RedLine_co.paa",
  348. "A3\Air_F_Exp\Plane_Civil_01\Data\btt_int_01_co.paa",
  349. "A3\Air_F_Exp\Plane_Civil_01\Data\btt_int_02_co.paa"
  350. }, ""
  351. },
  352. { "Tribal (Tan Interior)", "civ", {
  353. "A3\Air_F_Exp\Plane_Civil_01\Data\btt_ext_01_Tribal_co.paa",
  354. "A3\Air_F_Exp\Plane_Civil_01\Data\btt_ext_02_Tribal_co.paa",
  355. "A3\Air_F_Exp\Plane_Civil_01\Data\btt_int_01_tan_co.paa",
  356. "A3\Air_F_Exp\Plane_Civil_01\Data\btt_int_02_tan_co.paa"
  357. }, ""
  358. },
  359. { "Tribal", "civ", {
  360. "A3\Air_F_Exp\Plane_Civil_01\Data\btt_ext_01_Tribal_co.paa",
  361. "A3\Air_F_Exp\Plane_Civil_01\Data\btt_ext_02_Tribal_co.paa",
  362. "A3\Air_F_Exp\Plane_Civil_01\Data\btt_int_01_co.paa",
  363. "A3\Air_F_Exp\Plane_Civil_01\Data\btt_int_02_co.paa"
  364. }, ""
  365. },
  366. { "Blue Wave (Tan Interior)", "civ", {
  367. "A3\Air_F_Exp\Plane_Civil_01\Data\btt_ext_01_Wave_co.paa",
  368. "A3\Air_F_Exp\Plane_Civil_01\Data\btt_ext_02_Wave_co.paa",
  369. "A3\Air_F_Exp\Plane_Civil_01\Data\btt_int_01_tan_co.paa",
  370. "A3\Air_F_Exp\Plane_Civil_01\Data\btt_int_02_tan_co.paa"
  371. }, ""
  372. },
  373. { "Blue Wave", "civ", {
  374. "A3\Air_F_Exp\Plane_Civil_01\Data\btt_ext_01_Wave_co.paa",
  375. "A3\Air_F_Exp\Plane_Civil_01\Data\btt_ext_02_Wave_co.paa",
  376. "A3\Air_F_Exp\Plane_Civil_01\Data\btt_int_01_co.paa",
  377. "A3\Air_F_Exp\Plane_Civil_01\Data\btt_int_02_co.paa"
  378. }, ""
  379. }
  380. };
  381. };
  382.  
  383. // Apex DLC
  384. class C_Scooter_Transport_01_F {
  385. vItemSpace = 30;
  386. conditions = "";
  387. price = 150000;
  388. textures[] = {
  389. { "Noir", "civ", {
  390. "\A3\Boat_F_Exp\Scooter_Transport_01\Data\Scooter_Transport_01_Black_CO.paa",
  391. "\A3\Boat_F_Exp\Scooter_Transport_01\Data\Scooter_Transport_01_VP_Black_CO.paa"
  392. }, ""
  393. },
  394. { "Blue", "civ", {
  395. "\A3\Boat_F_Exp\Scooter_Transport_01\Data\Scooter_Transport_01_Blue_co.paa",
  396. "\A3\Boat_F_Exp\Scooter_Transport_01\Data\Scooter_Transport_01_VP_Blue_co.paa"
  397. }, ""
  398. },
  399. { "Grey", "civ", {
  400. "\A3\Boat_F_Exp\Scooter_Transport_01\Data\Scooter_Transport_01_Grey_co.paa",
  401. "\A3\Boat_F_Exp\Scooter_Transport_01\Data\Scooter_Transport_01_VP_Grey_co.paa"
  402. }, ""
  403. },
  404. { "Green", "civ", {
  405. "\A3\Boat_F_Exp\Scooter_Transport_01\Data\Scooter_Transport_01_Lime_co.paa",
  406. "\A3\Boat_F_Exp\Scooter_Transport_01\Data\Scooter_Transport_01_VP_Lime_co.paa"
  407. }, ""
  408. },
  409. { "Red", "civ", {
  410. "\A3\Boat_F_Exp\Scooter_Transport_01\Data\Scooter_Transport_01_Red_CO.paa",
  411. "\A3\Boat_F_Exp\Scooter_Transport_01\Data\Scooter_Transport_01_VP_CO.paa"
  412. }, ""
  413. },
  414. { "White", "civ", {
  415. "\A3\Boat_F_Exp\Scooter_Transport_01\Data\Scooter_Transport_01_CO.paa",
  416. "\A3\Boat_F_Exp\Scooter_Transport_01\Data\Scooter_Transport_01_VP_CO.paa"
  417. }, ""
  418. },
  419. { "Yellow", "civ", {
  420. "\A3\Boat_F_Exp\Scooter_Transport_01\Data\Scooter_Transport_01_Yellow_CO.paa",
  421. "\A3\Boat_F_Exp\Scooter_Transport_01\Data\Scooter_Transport_01_VP_Yellow_CO.paa"
  422. }, ""
  423. }
  424. };
  425. };
  426.  
  427. // Apex DLC
  428. class O_T_LSV_02_unarmed_F {
  429. vItemSpace = 100;
  430. conditions = "";
  431. price = 1000000;
  432. textures[] = {
  433. { "Arid", "civ", {
  434. "\A3\Soft_F_Exp\LSV_02\Data\CSAT_LSV_01_arid_CO.paa",
  435. "\A3\Soft_F_Exp\LSV_02\Data\CSAT_LSV_02_arid_CO.paa",
  436. "\A3\Soft_F_Exp\LSV_02\Data\CSAT_LSV_03_arid_CO.paa"
  437. }, ""
  438. },
  439. { "Noir", "civ", {
  440. "\A3\Soft_F_Exp\LSV_02\Data\CSAT_LSV_01_black_CO.paa",
  441. "\A3\Soft_F_Exp\LSV_02\Data\CSAT_LSV_02_black_CO.paa",
  442. "\A3\Soft_F_Exp\LSV_02\Data\CSAT_LSV_03_black_CO.paa"
  443. }, ""
  444. },
  445. { "Green Hex", "civ", {
  446. "\A3\Soft_F_Exp\LSV_02\Data\CSAT_LSV_01_ghex_CO.paa",
  447. "\A3\Soft_F_Exp\LSV_02\Data\CSAT_LSV_02_ghex_CO.paa",
  448. "\A3\Soft_F_Exp\LSV_02\Data\CSAT_LSV_03_ghex_CO.paa"
  449. }, ""
  450. }
  451. };
  452. };
  453.  
  454. // Apex DLC
  455. class O_T_LSV_02_armed_F {
  456. vItemSpace = 60;
  457. conditions = "";
  458. price = 6000000;
  459. textures[] = { };
  460. };
  461.  
  462. // Apex DLC
  463. class B_T_LSV_01_unarmed_F {
  464. vItemSpace = 10;
  465. conditions = "";
  466. price = 400000;
  467. textures[] = {
  468. /*{ "Armée", "cop", {
  469. "textures\armee\v\prowler.jpg"
  470. }, ""
  471. }*/
  472. };
  473. };
  474.  
  475. // Apex DLC
  476. class B_T_LSV_01_armed_F {
  477. vItemSpace = 100;
  478. conditions = "";
  479. price = 700000;
  480. textures[] = { };
  481. };
  482.  
  483. class C_Rubberboat {
  484. vItemSpace = 45;
  485. conditions = "";
  486. price = 50000;
  487. textures[] = { };
  488. };
  489.  
  490. class B_Heli_Transport_01_F {
  491. vItemSpace = 10;
  492. conditions = "";
  493. price = 1500000;
  494. textures[] = {
  495. { "Gendarmerie", "cop", {
  496. "textures\gendarmerie\gign_Ghost.jpg"
  497. }, ""
  498. }
  499. };
  500. };
  501.  
  502. class I_Heli_light_03_unarmed_F {
  503. vItemSpace = 10;
  504. conditions = "";
  505. price = 1500000;
  506. textures[] = {
  507. { "Police", "cop", {
  508. "textures\gendarmerie\hellcat_gendarmerie.jpg"
  509. }, ""
  510. }
  511. };
  512. };
  513. class B_T_VTOL_01_infantry_F {
  514. vItemSpace = 10;
  515. conditions = "";
  516. price = 5000000;
  517. textures[] = {
  518. /*{ "Armée", "cop", {
  519. "textures\armee\v\blackfish1.jpg",
  520. "textures\armee\v\blackfish2.jpg",
  521. "textures\armee\v\blackfish3.jpg",
  522. "textures\armee\v\blackfish4.jpg"
  523. }, ""
  524. }*/
  525. };
  526. };
  527. class B_Heli_Attack_01_F {
  528. vItemSpace = 10;
  529. conditions = "";
  530. price = 4500000;
  531. textures[] = {
  532. { "Police", "cop", {
  533. "textures\police\v\blackfoot.jpg"
  534. }, ""
  535. }
  536. };
  537. };
  538. class B_Heli_Transport_03_F {
  539. vItemSpace = 300;
  540. conditions = "";
  541. price = 3500000;
  542. textures[] = {
  543. { "Police", "cop", {
  544. "textures\police\v\huron_f.jpg",
  545. "textures\police\v\huron_b.jpg",
  546. }, ""
  547. }
  548. };
  549. };
  550. class B_T_VTOL_01_vehicle_F {
  551. vItemSpace = 10;
  552. conditions = "";
  553. price = 5000000;
  554. textures[] = { };
  555. };
  556. class O_Truck_03_repair_F {
  557. vItemSpace = 10;
  558. conditions = "";
  559. price = 150000;
  560. textures[] = { };
  561. };
  562.  
  563. class B_Boat_Armed_01_minigun_F {
  564. vItemSpace = 175;
  565. conditions = "";
  566. price = 1200000;
  567. textures[] = { };
  568. };
  569.  
  570. class B_Boat_Transport_01_F {
  571. vItemSpace = 45;
  572. conditions = "";
  573. price = 200000;
  574. textures[] = { };
  575. };
  576.  
  577. class O_Truck_03_transport_F {
  578. vItemSpace = 285;
  579. conditions = "";
  580. price = 700000;
  581. textures[] = { };
  582. };
  583.  
  584. class O_Truck_03_device_F {
  585. vItemSpace = 800;
  586. conditions = "";
  587. price = 3500000;
  588. textures[] = {};
  589. };
  590.  
  591. class Land_CargoBox_V1_F {
  592. vItemSpace = 10000;
  593. conditions = "";
  594. price = -1;
  595. textures[] = { };
  596. };
  597.  
  598. class Box_IND_Grenades_F {
  599. vItemSpace = 500;
  600. conditions = "";
  601. price = -1;
  602. textures[] = { };
  603. };
  604.  
  605. class B_supplyCrate_F {
  606. vItemSpace = 1000;
  607. conditions = "";
  608. price = -1;
  609. textures[] = { };
  610. };
  611.  
  612. class B_G_Offroad_01_F {
  613. vItemSpace = 60;
  614. conditions = "";
  615. price = 60000;
  616. textures[] = { };
  617. };
  618.  
  619. class B_G_Offroad_01_armed_F {
  620. vItemSpace = 65;
  621. conditions = "";
  622. price = 5000000;
  623. textures[] = { };
  624. };
  625.  
  626. class C_Boat_Civil_01_F {
  627. vItemSpace = 120;
  628. conditions = "";
  629. price = 70000;
  630. textures[] = { };
  631. };
  632.  
  633. class C_Boat_Civil_01_police_F {
  634. vItemSpace = 120;
  635. conditions = "";
  636. price = 50000;
  637. textures[] = { };
  638. };
  639.  
  640. class B_Truck_01_box_F {
  641. vItemSpace = 950;
  642. conditions = "";
  643. price = 2100000;
  644. textures[] = { };
  645. };
  646.  
  647. class B_Truck_01_transport_F {
  648. vItemSpace = 800;
  649. conditions = "";
  650. price = 1500000;
  651. textures[] = { };
  652. };
  653.  
  654. class B_Heli_Light_01_dynamicLoadout_F {
  655. vItemSpace = 60;
  656. conditions = "";
  657. price = 10000000;
  658. textures[] = { };
  659. };
  660.  
  661. class O_MRAP_02_F {
  662. vItemSpace = 60;
  663. conditions = "";
  664. price = 2000000;
  665. textures[] = {
  666. { "Foret", "reb", {
  667. "textures\reb\v\ifrit_foretf.jpg",
  668. "textures\reb\v\ifrit_foretb.jpg"
  669. }, ""
  670. },
  671. { "Noir", "reb", {
  672. "textures\reb\v\ifrit_noirf.jpg",
  673. "textures\reb\v\ifrit_noirb.jpg"
  674. }, ""
  675. },
  676. { "Rouge", "reb", {
  677. "textures\reb\v\ifrit_redf.jpg",
  678. "textures\reb\v\ifrit_redb.jpg"
  679. }, ""
  680. }
  681. };
  682. };
  683.  
  684. class B_MRAP_01_F {
  685. vItemSpace = 50;
  686. conditions = "";
  687. price = 400000;
  688. textures[] = {
  689. { "Gendarmerie", "cop", {
  690. "textures\gendarmerie\gendarmerie_hunter.paa"
  691. }, ""
  692. },
  693. { "GIGN", "cop", {
  694. "textures\gendarmerie\hunter_gign.jpg"
  695. }, "license_cop_gign"
  696. }
  697. };
  698. };
  699.  
  700. class B_MRAP_01_hmg_F {
  701. vItemSpace = 50;
  702. conditions = "";
  703. price = 2000000;
  704. textures[] = {
  705. { "Gendarmerie", "cop", {
  706. "textures\gendarmerie\gendarmerie_hunter.paa"
  707. }, ""
  708. },
  709. { "GIGN", "cop", {
  710. "textures\gendarmerie\hunter_gign.jpg"
  711. }, "license_cop_gign"
  712. }
  713. };
  714. };
  715.  
  716. class C_Offroad_01_F {
  717. vItemSpace = 65;
  718. conditions = "";
  719. price = 15000;
  720. textures[] = {
  721. { "Sapeurs Pompiers", "medic", {
  722. "textures\medic\v\offroad.paa"
  723. }, ""
  724. },
  725. { "Red", "civ", {
  726. "\A3\soft_F\Offroad_01\Data\offroad_01_ext_co.paa",
  727. "\A3\soft_F\Offroad_01\Data\offroad_01_ext_co.paa"
  728. }, ""
  729. },
  730. { "Yellow", "civ", {
  731. "\A3\soft_F\Offroad_01\Data\offroad_01_ext_BASE01_CO.paa",
  732. "\A3\soft_F\Offroad_01\Data\offroad_01_ext_BASE01_CO.paa"
  733. }, ""
  734. },
  735. { "White", "civ", {
  736. "\A3\soft_F\Offroad_01\Data\offroad_01_ext_BASE02_CO.paa",
  737. "\A3\soft_F\Offroad_01\Data\offroad_01_ext_BASE02_CO.paa"
  738. }, ""
  739. },
  740. { "Blue", "civ", {
  741. "\A3\soft_F\Offroad_01\Data\offroad_01_ext_BASE03_CO.paa",
  742. "\A3\soft_F\Offroad_01\Data\offroad_01_ext_BASE03_CO.paa"
  743. }, ""
  744. },
  745. { "Dark Red", "civ", {
  746. "\A3\soft_F\Offroad_01\Data\offroad_01_ext_BASE04_CO.paa",
  747. "\A3\soft_F\Offroad_01\Data\offroad_01_ext_BASE04_CO.paa"
  748. }, ""
  749. },
  750. { "Blue / White", "civ", {
  751. "\A3\soft_F\Offroad_01\Data\offroad_01_ext_BASE05_CO.paa",
  752. "\A3\soft_F\Offroad_01\Data\offroad_01_ext_BASE05_CO.paa"
  753. }, ""
  754. }
  755. /*{ "Armée", "cop", {
  756. "textures\armee\v\offroad.jpg"
  757. }, ""
  758. }*/
  759. };
  760. };
  761.  
  762. class C_Kart_01_Blu_F {
  763. vItemSpace = 20;
  764. conditions = "";
  765. price = 1000;
  766. textures[] = { };
  767. };
  768. /*
  769. To edit another information in this classes you can use this exemple.
  770. class C_Kart_01_Fuel_F : C_Kart_01_Blu_F{
  771. vItemSpace = 40;
  772. price = ;
  773. };
  774.  
  775. 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 {};
  776. */
  777. class C_Kart_01_Fuel_F : C_Kart_01_Blu_F {}; // Get all information of C_Kart_01_Blu_F
  778. class C_Kart_01_Red_F : C_Kart_01_Blu_F {};
  779. class C_Kart_01_Vrana_F : C_Kart_01_Blu_F {};
  780.  
  781. class C_Hatchback_01_sport_F {
  782. vItemSpace = 45;
  783. conditions = "";
  784. price = 110000;
  785. textures[] = {
  786. { "Sapeurs Pompiers", "medic", {
  787. "textures\medic\v\hayon.jpg"
  788. }, ""
  789. },
  790. { "Porsche", "civ", {
  791. "textures\civ\v\hatchback_porsche.jpg"
  792. }, ""
  793. },
  794. { "Dark Blue", "civ", {
  795. "\a3\soft_f_gamma\Hatchback_01\data\hatchback_01_ext_base04_co.paa"
  796. }, ""
  797. },
  798. { "Yellow", "civ", {
  799. "\a3\soft_f_gamma\Hatchback_01\data\hatchback_01_ext_base06_co.paa"
  800. }, ""
  801. },
  802. { "White", "civ", {
  803. "\a3\soft_f_gamma\Hatchback_01\data\hatchback_01_ext_base07_co.paa"
  804. }, ""
  805. },
  806. { "Grey", "civ", {
  807. "\a3\soft_f_gamma\Hatchback_01\data\hatchback_01_ext_base08_co.paa"
  808. }, ""
  809. },
  810. { "Noir", "civ", {
  811. "\a3\soft_f_gamma\Hatchback_01\data\hatchback_01_ext_base09_co.paa"
  812. }, ""
  813. },
  814. { "GIGN", "cop", {
  815. "textures\gendarmerie\hatchback_gign.jpg"
  816. }, "license_cop_gign"
  817. },
  818. { "Gendarmerie", "cop", {
  819. "textures\gendarmerie\hatchback_gend.jpg"
  820. }, ""
  821. }
  822. };
  823. };
  824.  
  825. class B_Quadbike_01_F {
  826. vItemSpace = 25;
  827. conditions = "";
  828. price = 8000;
  829. textures[] = {
  830. { "Brown", "cop", {
  831. "\A3\Soft_F\Quadbike_01\Data\Quadbike_01_co.paa"
  832. }, ""
  833. },
  834. { "Digi Desert", "reb", {
  835. "\A3\Soft_F\Quadbike_01\Data\quadbike_01_opfor_co.paa"
  836. }, ""
  837. },
  838. { "Noir", "civ", {
  839. "\A3\Soft_F_beta\Quadbike_01\Data\quadbike_01_civ_black_co.paa"
  840. }, ""
  841. },
  842. { "Blue", "civ", {
  843. "\A3\Soft_F_beta\Quadbike_01\Data\quadbike_01_civ_blue_co.paa"
  844. }, ""
  845. },
  846. { "Red", "civ", {
  847. "\A3\Soft_F_beta\Quadbike_01\Data\quadbike_01_civ_red_co.paa"
  848. }, ""
  849. },
  850. { "White", "civ", {
  851. "\A3\Soft_F_beta\Quadbike_01\Data\quadbike_01_civ_white_co.paa"
  852. }, ""
  853. },
  854. { "Digi Green", "civ", {
  855. "\A3\Soft_F_beta\Quadbike_01\Data\quadbike_01_indp_co.paa"
  856. }, ""
  857. },
  858. { "Hunter Camo", "civ", {
  859. "\a3\soft_f_gamma\Quadbike_01\data\quadbike_01_indp_hunter_co.paa"
  860. }, ""
  861. },
  862. { "Rebel Camo", "reb", {
  863. "\a3\soft_f_gamma\Quadbike_01\data\quadbike_01_indp_hunter_co.paa"
  864. }, ""
  865. }
  866. };
  867. };
  868.  
  869. class I_Truck_02_covered_F {
  870. vItemSpace = 250;
  871. conditions = "";
  872. price = 500000;
  873. textures[] = {
  874. { "Orange", "civ", {
  875. "\A3\Soft_F_Beta\Truck_02\data\truck_02_kab_co.paa",
  876. "\a3\soft_f_beta\Truck_02\data\truck_02_kuz_co.paa"
  877. }, ""
  878. },
  879. { "Noir", "cop", {
  880. "#(argb,8,8,3)color(0.05,0.05,0.05,1)"
  881. }, ""
  882. }
  883. };
  884. };
  885.  
  886. class I_Truck_02_transport_F {
  887. vItemSpace = 200;
  888. conditions = "";
  889. price = 300000;
  890. textures[] = {
  891. { "Orange", "civ", {
  892. "\A3\Soft_F_Beta\Truck_02\data\truck_02_kab_co.paa",
  893. "\a3\soft_f_beta\Truck_02\data\truck_02_kuz_co.paa"
  894. }, ""
  895. },
  896. };
  897. };
  898.  
  899. class B_Truck_01_mover_F {
  900. vItemSpace = 20;
  901. conditions = "";
  902. price = 120000;
  903. textures[] = {};
  904. };
  905.  
  906. class O_APC_Tracked_02_cannon_F {
  907. vItemSpace = 20;
  908. conditions = "";
  909. price = 50000000;
  910. textures[] = { };
  911. };
  912.  
  913. class I_APC_tracked_03_cannon_F {
  914. vItemSpace = 20;
  915. conditions = "";
  916. price = 70000000;
  917. textures[] = { };
  918. };
  919.  
  920. class I_MBT_03_cannon_F {
  921. vItemSpace = 20;
  922. conditions = "";
  923. price = 90000000;
  924. textures[] = { };
  925. };
  926.  
  927. class O_Truck_03_covered_F {
  928. vItemSpace = 550;
  929. conditions = "";
  930. price = 500000;
  931. textures[] = { };
  932. };
  933.  
  934. class C_Hatchback_01_F {
  935. vItemSpace = 40;
  936. conditions = "";
  937. price = 80000;
  938. textures[] = {
  939. { "Porsche", "civ", {
  940. "textures\civ\v\hatchback_porsche.jpg"
  941. }, ""
  942. },
  943. { "Dark Blue", "civ", {
  944. "\a3\soft_f_gamma\Hatchback_01\data\hatchback_01_ext_base04_co.paa"
  945. }, ""
  946. },
  947. { "Yellow", "civ", {
  948. "\a3\soft_f_gamma\Hatchback_01\data\hatchback_01_ext_base06_co.paa"
  949. }, ""
  950. },
  951. { "White", "civ", {
  952. "\a3\soft_f_gamma\Hatchback_01\data\hatchback_01_ext_base07_co.paa"
  953. }, ""
  954. },
  955. { "Grey", "civ", {
  956. "\a3\soft_f_gamma\Hatchback_01\data\hatchback_01_ext_base08_co.paa"
  957. }, ""
  958. },
  959. { "Noir", "civ", {
  960. "\a3\soft_f_gamma\Hatchback_01\data\hatchback_01_ext_base09_co.paa"
  961. }, ""
  962. }
  963. };
  964. };
  965.  
  966. class C_SUV_01_F {
  967. vItemSpace = 50;
  968. conditions = "";
  969. price = 50000;
  970. textures[] = {
  971. { "Sapeurs Pompiers", "medic", {
  972. "textures\medic\v\suv.paa"
  973. }, ""
  974. },
  975. { "Gendarmerie", "cop", {
  976. "textures\gendarmerie\suv_gend.jpg"
  977. }, ""
  978. },
  979. { "GIGN", "cop", {
  980. "textures\gendarmerie\suv_gign.jpg"
  981. }, "license_cop_gign"
  982. },
  983. { "Dark Red", "civ", {
  984. "\a3\soft_f_gamma\SUV_01\Data\suv_01_ext_co.paa"
  985. }, ""
  986. },
  987. { "Silver", "civ", {
  988. "\a3\soft_f_gamma\SUV_01\Data\suv_01_ext_03_co.paa"
  989. }, ""
  990. },
  991. { "Orange", "civ", {
  992. "\a3\soft_f_gamma\SUV_01\Data\suv_01_ext_04_co.paa"
  993. }, ""
  994. }
  995. };
  996. };
  997.  
  998. class C_Van_02_vehicle_F {
  999. vItemSpace = 200;
  1000. conditions = "";
  1001. price = 150000;
  1002. textures[] = { };
  1003. };
  1004.  
  1005. class C_Van_02_service_F {
  1006. vItemSpace = 150;
  1007. conditions = "";
  1008. price = 150000;
  1009. textures[] = { };
  1010. };
  1011.  
  1012. class C_Van_01_transport_F {
  1013. vItemSpace = 100;
  1014. conditions = "";
  1015. price = 85000;
  1016. textures[] = {
  1017. { "White", "civ", {
  1018. "\a3\soft_f_gamma\Van_01\Data\van_01_ext_co.paa"
  1019. }, ""
  1020. },
  1021. { "Red", "civ", {
  1022. "\a3\soft_f_gamma\Van_01\Data\van_01_ext_red_co.paa"
  1023. }, ""
  1024. }
  1025. };
  1026. };
  1027.  
  1028. class C_Van_01_box_F {
  1029. vItemSpace = 150;
  1030. conditions = "";
  1031. price = 110000;
  1032. textures[] = {
  1033. { "White", "civ", {
  1034. "\a3\soft_f_gamma\Van_01\Data\van_01_ext_co.paa"
  1035. }, ""
  1036. },
  1037. { "Red", "civ", {
  1038. "\a3\soft_f_gamma\Van_01\Data\van_01_ext_red_co.paa"
  1039. }, ""
  1040. }
  1041. };
  1042. };
  1043.  
  1044. class C_Van_02_medevac_F {
  1045. vItemSpace = 65;
  1046. conditions = "";
  1047. price = 35000;
  1048. textures[] = {
  1049. { "Urgence", "medic", {
  1050. "textures\medic\v\van.jpg"
  1051. }, ""
  1052. }
  1053. };
  1054. };
  1055.  
  1056. //Strider
  1057. class I_MRAP_03_F {
  1058. vItemSpace = 65;
  1059. conditions = "";
  1060. price = 3000000;
  1061. textures[] = {
  1062. { "Gendarmerie", "cop", {
  1063. "textures\gendarmerie\strider_cop.jpg"
  1064. }, ""
  1065. },
  1066. { "GIGN", "cop", {
  1067. "textures\gendarmerie\GIGN_strider.jpg"
  1068. }, "license_cop_gign"
  1069. },
  1070. { "Mercenaires", "reb", {
  1071. "textures\merco\v\strider.jpg"
  1072. }, "license_civ_merco"
  1073. },
  1074. { "Blanc", "reb", {
  1075. "textures\reb\v\strider_white.jpg"
  1076. }, ""
  1077. },
  1078. { "Orange", "reb", {
  1079. "textures\reb\v\strider_orange.jpg"
  1080. }, ""
  1081. },
  1082. { "Vert", "reb", {
  1083. "textures\reb\v\strider_green.jpg"
  1084. }, ""
  1085. },
  1086. { "Rouge", "reb", {
  1087. "textures\reb\v\strider_red.jpg"
  1088. }, ""
  1089. }
  1090. };
  1091. };
  1092. class B_APC_Tracked_01_CRV_F {
  1093. vItemSpace = 65;
  1094. conditions = "";
  1095. price = 600000;
  1096. textures[] = { };
  1097. };
  1098.  
  1099. class B_MBT_01_TUSK_F {
  1100. vItemSpace = 65;
  1101. conditions = "";
  1102. price = 900000;
  1103. textures[] = { };
  1104. };
  1105.  
  1106. class B_APC_Tracked_01_rcws_F {
  1107. vItemSpace = 65;
  1108. conditions = "";
  1109. price = 800000;
  1110. textures[] = { };
  1111. };
  1112.  
  1113. class B_APC_Wheeled_01_cannon_F {
  1114. vItemSpace = 65;
  1115. conditions = "";
  1116. price = 500000;
  1117. textures[] = { };
  1118. };
  1119.  
  1120. class B_Heli_Light_01_stripped_F {
  1121. vItemSpace = 50;
  1122. conditions = "";
  1123. price = 1200000;
  1124. textures[] = {
  1125. { "Urgence", "medic", {
  1126. "textures\medic\v\hummingbird.jpg"
  1127. }, ""
  1128. },
  1129. { "Rebel Digital", "reb", {
  1130. "\a3\air_f\Heli_Light_01\Data\Skins\heli_light_01_ext_digital_co.paa"
  1131. }, ""
  1132. },
  1133. { "Mercenaire", "civ", {
  1134. "textures\merco\v\hummingbird.jpg"
  1135. }, "license_civ_merco"
  1136. }
  1137. };
  1138. };
  1139.  
  1140. class O_Heli_Attack_02_F {
  1141. vItemSpace = 60;
  1142. conditions = "license_civ_merco || {license_civ_rebel}";
  1143. price = 25500000;
  1144. textures[] = {};
  1145. };
  1146.  
  1147. class B_Heli_Light_01_F {
  1148. vItemSpace = 50;
  1149. conditions = "";
  1150. price = 375000;
  1151. textures[] = {
  1152. { "Gendarmerie", "cop", {
  1153. "textures\gendarmerie\strider_cop.jpg"
  1154. }, ""
  1155. },
  1156. { "Digi Green", "reb", {
  1157. "\a3\air_f\Heli_Light_01\Data\heli_light_01_ext_indp_co.paa"
  1158. }, ""
  1159. },
  1160. { "Civ Blue", "civ", {
  1161. "\a3\air_f\Heli_Light_01\Data\heli_light_01_ext_blue_co.paa"
  1162. }, ""
  1163. },
  1164. { "Civ Red", "civ", {
  1165. "\a3\air_f\Heli_Light_01\Data\heli_light_01_ext_co.paa"
  1166. }, ""
  1167. },
  1168. { "Blueline", "civ", {
  1169. "\a3\air_f\Heli_Light_01\Data\Skins\heli_light_01_ext_blueline_co.paa"
  1170. }, ""
  1171. },
  1172. { "Elliptical", "civ", {
  1173. "\a3\air_f\Heli_Light_01\Data\Skins\heli_light_01_ext_elliptical_co.paa"
  1174. }, ""
  1175. },
  1176. { "Furious", "civ", {
  1177. "\a3\air_f\Heli_Light_01\Data\Skins\heli_light_01_ext_furious_co.paa"
  1178. }, ""
  1179. },
  1180. { "Jeans Blue", "civ", {
  1181. "\a3\air_f\Heli_Light_01\Data\Skins\heli_light_01_ext_jeans_co.paa"
  1182. }, ""
  1183. },
  1184. { "Speedy Redline", "civ", {
  1185. "\a3\air_f\Heli_Light_01\Data\Skins\heli_light_01_ext_speedy_co.paa"
  1186. }, ""
  1187. },
  1188. { "Sunset", "civ", {
  1189. "\a3\air_f\Heli_Light_01\Data\Skins\heli_light_01_ext_sunset_co.paa"
  1190. }, ""
  1191. },
  1192. { "Vrana", "civ", {
  1193. "\a3\air_f\Heli_Light_01\Data\Skins\heli_light_01_ext_vrana_co.paa"
  1194. }, ""
  1195. },
  1196. { "Waves Blue", "civ", {
  1197. "\a3\air_f\Heli_Light_01\Data\Skins\heli_light_01_ext_wave_co.paa"
  1198. }, ""
  1199. },
  1200. { "Rebel Digital", "reb", {
  1201. "\a3\air_f\Heli_Light_01\Data\Skins\heli_light_01_ext_digital_co.paa"
  1202. }, ""
  1203. }
  1204. };
  1205. };
  1206.  
  1207. class C_Heli_Light_01_civil_F {
  1208. vItemSpace = 75;
  1209. conditions = "";
  1210. price = 450000;
  1211. textures[] = { };
  1212. };
  1213.  
  1214. class O_Heli_Light_02_unarmed_F {
  1215. vItemSpace = 150;
  1216. conditions = "";
  1217. price = 700000;
  1218. textures[] = {
  1219. { "White / Blue", "civ", {
  1220. "\a3\air_f\Heli_Light_02\Data\heli_light_02_ext_civilian_co.paa"
  1221. }, ""
  1222. },
  1223. { "Digi Green", "civ", {
  1224. "\a3\air_f\Heli_Light_02\Data\heli_light_02_ext_indp_co.paa"
  1225. }, ""
  1226. },
  1227. { "Desert Digi", "reb", {
  1228. "\a3\air_f\Heli_Light_02\Data\heli_light_02_ext_opfor_co.paa"
  1229. }, ""
  1230. }
  1231. };
  1232. };
  1233.  
  1234. class B_SDV_01_F {
  1235. vItemSpace = 50;
  1236. conditions = "";
  1237. price = 50000;
  1238. textures[] = { };
  1239. };
  1240.  
  1241. class C_Van_01_fuel_F {
  1242. vItemSpace = 150;
  1243. vFuelSpace = 20000;
  1244. conditions = "";
  1245. price = 100000;
  1246. textures[] = {
  1247. { "White", "civ", {
  1248. "\A3\soft_f_gamma\Van_01\data\van_01_ext_co.paa",
  1249. "\A3\soft_f_gamma\Van_01\data\van_01_tank_co.paa"
  1250. }, ""
  1251. },
  1252. { "Red", "civ", {
  1253. "\A3\soft_f_gamma\Van_01\data\van_01_ext_red_co.paa",
  1254. "\A3\soft_f_gamma\Van_01\data\van_01_tank_red_co.paa"
  1255. }, ""
  1256. }
  1257. };
  1258. };
  1259.  
  1260. class I_Truck_02_fuel_F {
  1261. vItemSpace = 300;
  1262. vFuelSpace = 50000;
  1263. conditions = "";
  1264. price = 350000;
  1265. textures[] = {
  1266. { "White", "civ", {
  1267. "\A3\Soft_F_Beta\Truck_02\data\truck_02_kab_co.paa",
  1268. "\A3\Soft_F_Beta\Truck_02\data\truck_02_fuel_co.paa"
  1269. }, ""
  1270. }
  1271. };
  1272. };
  1273.  
  1274. class B_Truck_01_fuel_F {
  1275. vItemSpace = 500;
  1276. vFuelSpace = 70000;
  1277. conditions = "";
  1278. price = 550000;
  1279. textures[] = { };
  1280. };
  1281. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement