Advertisement
Guest User

Untitled

a guest
Mar 29th, 2015
220
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 30.08 KB | None | 0 0
  1. class CarShops {
  2.  
  3. /*
  4. Format:
  5. { Classname, rental price, license required, { varname, >= value } }
  6.  
  7. { varname, >= value} this is a "level" requirement mainly used by cops and rebels, do not fill this in if you are not utilizing it.
  8. */
  9.  
  10. class civ_car {
  11. side = "civ";
  12. vehicles[] = {
  13. { "B_Quadbike_01_F", 2500, "" },
  14. { "C_Hatchback_01_F", 9500, "driver" },
  15. { "C_Offroad_01_F", 12500, "driver" },
  16. { "C_SUV_01_F", 30000, "driver" },
  17. { "C_Hatchback_01_sport_F", 40000, "driver" },
  18. { "C_Van_01_transport_F", 45000, "driver" },
  19. { "LandRover_ACR", 16500, "driver" },
  20. { "LandRover_CZ_EP1", 25000, "driver" },
  21. { "BAF_Offroad_W", 25000, "driver" },
  22. { "LandRover_TK_CIV_EP1", 25000, "driver" }
  23. };
  24. };
  25.  
  26. class med_shop {
  27. side = "med";
  28. vehicles[] = {
  29. { "C_Offroad_01_F", 10000, "" },
  30. { "I_Truck_02_medical_F", 5000, "" },
  31. { "O_Truck_03_medical_F", 5000, "" },
  32. { "B_Truck_01_medical_F", 5000, "" },
  33. { "EWK_HMMWV_Medevac", 5000, "" },
  34. { "EWK_M997A2_Ambulance", 5000, "" },
  35. { "EWK_M997A2_Ambulance_Tan", 5000, "" }
  36. };
  37. };
  38.  
  39. class med_air_hs {
  40. side = "med";
  41. vehicles[] = {
  42. { "B_Heli_Light_01_F", 5000, "mAir" },
  43. { "O_Heli_Light_02_unarmed_F", 5000, "mAir" }
  44. };
  45. };
  46.  
  47. class civ_truck {
  48. side = "civ";
  49. vehicles[] = {
  50. { "C_Van_01_box_F", 60000, "trucking" },
  51. { "I_Truck_02_transport_F", 75000, "trucking" },
  52. { "I_Truck_02_covered_F", 100000, "trucking" },
  53. { "B_Truck_01_transport_F", 275000, "trucking" },
  54. { "O_Truck_03_transport_F", 200000, "trucking" },
  55. { "O_Truck_03_covered_F", 250000, "trucking" },
  56. { "B_Truck_01_box_F", 350000, "trucking" },
  57. { "O_Truck_03_device_F", 450000, "trucking" }
  58. };
  59. };
  60.  
  61. class reb_car {
  62. side = "civ";
  63. vehicles[] = {
  64. { "B_Quadbike_01_F", 2500, "" },
  65. { "B_G_Offroad_01_F", 15000, "" },
  66. { "B_Heli_Light_01_F", 600000, "rebel" },
  67. { "B_G_Offroad_01_armed_F", 750000, "rebel" },
  68. { "LandRover_ACR", 16500, "rebel" },
  69. { "LandRover_CZ_EP1", 16500, "rebel" },
  70. { "LandRover_MG_TK_EP1", 200000, "rebel" },
  71. { "BAF_Offroad_W_HMG", 200000, "rebel" },
  72. { "ACR_Offroad_HMG", 200000, "rebel" },
  73. { "B_Heli_Light_01_armed_F", 1000000, "rebel" }
  74. };
  75. };
  76.  
  77. class cop_car {
  78. side = "cop";
  79. vehicles[] = {
  80. { "C_Offroad_01_F", 5000, ""},
  81. { "C_SUV_01_F", 20000, "" },
  82. { "EWK_M1151", 2000, "" },
  83. { "EWK_m1151_m2_deployment", 2000, "" },
  84. { "EWK_m1151_m2_deployment_Jtac", 2000, "" },
  85. { "EWK_m1151_m2_deployment_Bumper", 2000, "" },
  86. { "EWK_HMMWV_Light", 2000, "" },
  87. { "EWK_HMMWV_Medevac", 2000, "" },
  88. { "EWK_M997A2_Ambulance", 2000, "" },
  89. { "EWK_M997A2_Ambulance_NoBackLights", 2000, "" },
  90. { "EWK_M997A2_Ambulance_Tan", 2000, "" },
  91. { "EWK_M997A2_Ambulance_Tan_NoBackLights", 2000, "" },
  92. { "EWK_M998_Terminal", 2000, "" },
  93. { "EWK_M1114_Armored", 2000, "" },
  94. { "EWK_M998A2_sov_M2", 2000, "" },
  95. { "EWK_m1151_TOW_deployment", 2000, "" },
  96. { "EWK_m1151_m240_deployment", 2000, "" },
  97. { "EWK_m1151_m2_deployment_AT4", 2000, "" },
  98. { "B_APC_Wheeled_01_cannon_F", 5000, "" },
  99. { "B_MBT_01_cannon_F", 5000, "" },
  100. { "B_MRAP_01_F", 30000, "", { "life_coplevel", 3 } }
  101. };
  102. };
  103.  
  104. class civ_air {
  105. side = "civ";
  106. vehicles[] = {
  107. { "B_Heli_Light_01_F", 450000, "pilot" },
  108. { "O_Heli_Light_02_unarmed_F", 1000000, "pilot" }
  109.  
  110. };
  111. };
  112.  
  113. class cop_air {
  114. side = "cop";
  115.  
  116. vehicles[] = {
  117. { "B_Heli_Light_01_F", 5000, "cAir"},
  118. { "B_Heli_Transport_03_F", 5000, "cAir"},
  119. { "B_Heli_Attack_01_F", 5000, "cAir"},
  120. { "B_Heli_Transport_01_camo_F", 5000, "cAir"}
  121. };
  122. };
  123.  
  124. class cop_airhq {
  125. side = "civ";
  126. vehicles[] = {
  127. { "B_Heli_Light_01_F", 5000, "cAir"},
  128. { "B_Heli_Transport_03_F", 5000, "cAir"},
  129. { "B_Heli_Attack_01_F", 5000, "cAir"},
  130. { "B_Heli_Transport_01_camo_F", 5000, "cAir"}
  131. };
  132. };
  133.  
  134. class cop_ship {
  135. side = "cop";
  136. vehicles[] = {
  137. { "B_Boat_Transport_01_F", 3000, "coastguard" },
  138. { "C_Boat_Civil_01_police_F", 20000, "coastguard" },
  139. { "B_Boat_Armed_01_minigun_F", 75000, "coastguard" },
  140. { "B_SDV_01_F", 100000, "coastguard" }
  141. };
  142. };
  143.  
  144. class taki_car {
  145. side = "cop";
  146. vehicles[] = {
  147. { "EWK_HMMWV_Light", 5000, "", { "life_coplevel", 1 } },
  148. { "ACR_LandRover_AMB", 5000, "", { "life_coplevel", 1 } },
  149. { "LandRover_ACR", 5000, "", { "life_coplevel", 1 } },
  150. { "LandRover_CZ_EP1", 5000, "", { "life_coplevel", 1 } },
  151. { "BAF_Offroad_W", 5000, "", { "life_coplevel", 1 } },
  152. { "BAF_Offroad_D", 5000, "", { "life_coplevel", 1 } },
  153. { "LandRover_TK_CIV_EP1", 5000, "", { "life_coplevel", 1 } },
  154. { "ACR_Offroad_HMG", 5000, "", { "life_coplevel", 1 } },
  155. { "BAF_Offroad_W_HMG", 5000, "", { "life_coplevel", 1 } },
  156. { "LandRover_MG_TK_EP1", 5000, "", { "life_coplevel", 1 } }
  157. };
  158. };
  159.  
  160. class civ_ship {
  161. side = "civ";
  162. vehicles[] = {
  163. { "C_Rubberboat", 5000, "boat" },
  164. { "C_Boat_Civil_01_F", 22000, "boat" },
  165. { "B_SDV_01_F", 150000, "boat" }
  166. };
  167. };
  168. };
  169.  
  170. /*
  171. Vehicle Configs (Contains textures and other stuff)
  172.  
  173. storageFee (Getting vehicles out of garage) format:
  174. INDEX 0: Civilian Price
  175. INDEX 1: Cop Price
  176. INDEX 3: EMS Price
  177. INDEX 4: OPFOR Price (Not implemented in vanilla but still leaving support
  178.  
  179. Textures config follows { Texture Name, side, {texture(s)path}}
  180. Texture(s)path follows this format:
  181. INDEX 0: Texture Layer 0
  182. INDEX 1: Texture Layer 1
  183. INDEX 2: Texture Layer 2
  184. etc etc etc
  185. */
  186. class CfgVehicles {
  187. class Default {
  188. vItemSpace = -1;
  189. storageFee[] = { 1000, 1000, 1000, 1000 };
  190. garageSell[] = { 0, 0, 0, 0 };
  191. insurance = 2500;
  192. chopShop = 1200;
  193. textures[] = {};
  194. };
  195.  
  196. class I_Truck_02_medical_F : Default {
  197. vItemSpace = 150;
  198. storageFee[] = { 0, 0, 1500, 0 };
  199. garageSell[] = { 0, 0, 5000, 0 };
  200. chopShop = 3000;
  201. };
  202.  
  203. class O_Truck_03_medical_F : Default {
  204. vItemSpace = 200;
  205. storageFee[] = { 0, 0, 3000, 0 };
  206. garageSell[] = { 0, 0, 10000, 0 };
  207. chopShop = 7500;
  208. };
  209.  
  210. class B_Truck_01_medical_F : Default {
  211. vItemSpace = 250;
  212. storageFee[] = { 0, 0, 6500, 0 };
  213. garageSell[] = { 0, 0, 25000, 0 };
  214. chopShop = 12500;
  215. };
  216.  
  217. class C_Rubberboat {
  218. vItemSpace = 45;
  219. storageFee[] = { 400, 300, 0, 0 };
  220. garageSell[] = { 950, 350, 0, 0 };
  221. insurance = 2500;
  222. chopShop = 5000;
  223. textures[] = {};
  224. };
  225.  
  226. class B_Heli_Transport_01_F {
  227. vItemSpace = 200;
  228. storageFee[] = { 0, 5000, 0, 0 };
  229. garageSell[] = { 0, 100, 0, 0 };
  230. insurance = 16000;
  231. chopShop = 45000;
  232. textures[] = {};
  233. };
  234.  
  235. class B_Heli_Transport_01_camo_F {
  236. vItemSpace = 200;
  237. storageFee[] = { 0, 5000, 0, 0 };
  238. garageSell[] = { 0, 100, 0, 0 };
  239. insurance = 16000;
  240. chopShop = 45000;
  241. textures[] = {};
  242. };
  243.  
  244. class B_Heli_Transport_03_F {
  245. vItemSpace = 200;
  246. storageFee[] = { 0, 5000, 0, 0 };
  247. garageSell[] = { 0, 100, 0, 0 };
  248. insurance = 16000;
  249. chopShop = 45000;
  250. textures[] = {};
  251. };
  252.  
  253. class B_MRAP_01_hmg_F : Default {
  254. vItemSpace = 100;
  255. };
  256.  
  257. class O_Boat_Armed_01_hmg_F {
  258. vItemSpace = 175;
  259. storageFee[] = { 1000, 0, 0, 0 };
  260. garageSell[] = { 21000, 21000, 0, 0 };
  261. insurance = 2500;
  262. chopShop = 5000;
  263. textures[] = {};
  264. };
  265.  
  266. class B_Boat_Armed_01_minigun_F {
  267. vItemSpace = 175;
  268. storageFee[] = { 0, 16500, 0, 0 };
  269. garageSell[] = { 0, 21000, 0, 0 };
  270. insurance = 2500;
  271. chopShop = 5000;
  272. textures[] = {};
  273. };
  274.  
  275. class I_Boat_Armed_01_minigun_F {
  276. vItemSpace = 175;
  277. storageFee[] = { 1000, 0, 0, 0 };
  278. insurance = 2500;
  279. chopShop = 5000;
  280. textures[] = {};
  281. };
  282.  
  283. class B_G_Boat_Transport_01_F {
  284. vItemSpace = 45;
  285. storageFee[] = { 1000, 0, 0, 0 };
  286. insurance = 2500;
  287. chopShop = 5000;
  288. textures[] = {};
  289. };
  290.  
  291. class B_Boat_Transport_01_F {
  292. vItemSpace = 45;
  293. storageFee[] = { 0, 450, 0, 0 };
  294. garageSell[] = { 0, 850, 0, 0 };
  295. insurance = 2500;
  296. chopShop = 5000;
  297. textures[] = {};
  298. };
  299.  
  300. class O_Truck_03_transport_F {
  301. vItemSpace = 285;
  302. storageFee[] = { 1000, 0, 0, 0 };
  303. insurance = 2500;
  304. chopShop = 5000;
  305. textures[] = {};
  306. };
  307.  
  308. class O_Truck_03_device_F {
  309. vItemSpace = 350;
  310. storageFee[] = { 95000, 0, 0, 0 };
  311. garageSell[] = { 185000, 0, 0, 0 };
  312. insurance = 25000;
  313. chopShop = 125000;
  314. textures[] = {};
  315. };
  316.  
  317. class Land_CargoBox_V1_F : Default {
  318. vItemSpace = 5000;
  319. };
  320.  
  321. class Box_IND_Grenades_F : Default {
  322. vItemSpace = 350;
  323. };
  324.  
  325. class B_supplyCrate_F {
  326. vItemSpace = 700;
  327. };
  328.  
  329. class B_G_Offroad_01_F {
  330. vItemSpace = 65;
  331. storageFee[] = { 1000, 0, 0, 0 };
  332. garageSell[] = { 3500, 0, 0, 0 };
  333. insurance = 2500;
  334. chopShop = 5000;
  335. textures[] = {};
  336. };
  337. class EWK_M1151 {
  338. vItemSpace = 65;
  339. storageFee[] = { 1000, 0, 0, 0 };
  340. garageSell[] = { 3500, 0, 0, 0 };
  341. insurance = 2500;
  342. chopShop = 5000;
  343. textures[] = {};
  344. };
  345.  
  346. class EWK_m1151_m2_deployment {
  347. vItemSpace = 65;
  348. storageFee[] = { 1000, 0, 0, 0 };
  349. garageSell[] = { 3500, 0, 0, 0 };
  350. insurance = 2500;
  351. chopShop = 5000;
  352. textures[] = {};
  353. };
  354.  
  355. class EWK_m1151_m2_deployment_Jtac {
  356. vItemSpace = 65;
  357. storageFee[] = { 1000, 0, 0, 0 };
  358. garageSell[] = { 3500, 0, 0, 0 };
  359. insurance = 2500;
  360. chopShop = 5000;
  361. textures[] = {};
  362. };
  363.  
  364. class B_Heli_Attack_01_F {
  365. vItemSpace = 65;
  366. storageFee[] = { 1000, 0, 0, 0 };
  367. garageSell[] = { 3500, 0, 0, 0 };
  368. insurance = 2500;
  369. chopShop = 100000;
  370. textures[] = {};
  371. };
  372.  
  373. class EWK_m1151_m2_deployment_Bumper {
  374. vItemSpace = 65;
  375. storageFee[] = { 1000, 0, 0, 0 };
  376. garageSell[] = { 3500, 0, 0, 0 };
  377. insurance = 2500;
  378. chopShop = 5000;
  379. textures[] = {};
  380. };
  381.  
  382. class EWK_HMMWV_Light {
  383. vItemSpace = 65;
  384. storageFee[] = { 1000, 0, 0, 0 };
  385. garageSell[] = { 3500, 0, 0, 0 };
  386. insurance = 2500;
  387. chopShop = 5000;
  388. textures[] = {};
  389. };
  390.  
  391. class EWK_HMMWV_Medevac {
  392. vItemSpace = 65;
  393. storageFee[] = { 1000, 0, 0, 0 };
  394. garageSell[] = { 3500, 0, 0, 0 };
  395. insurance = 2500;
  396. chopShop = 5000;
  397. textures[] = {};
  398. };
  399.  
  400. class EWK_M997A2_Ambulance {
  401. vItemSpace = 65;
  402. storageFee[] = { 1000, 0, 0, 0 };
  403. garageSell[] = { 3500, 0, 0, 0 };
  404. insurance = 2500;
  405. chopShop = 5000;
  406. textures[] = {};
  407. };
  408.  
  409. class EWK_M997A2_Ambulance_NoBackLights {
  410. vItemSpace = 65;
  411. storageFee[] = { 1000, 0, 0, 0 };
  412. garageSell[] = { 3500, 0, 0, 0 };
  413. insurance = 2500;
  414. chopShop = 5000;
  415. textures[] = {};
  416. };
  417.  
  418. class EWK_M997A2_Ambulance_Tan {
  419. vItemSpace = 65;
  420. storageFee[] = { 1000, 0, 0, 0 };
  421. garageSell[] = { 3500, 0, 0, 0 };
  422. insurance = 2500;
  423. chopShop = 5000;
  424. textures[] = {};
  425. };
  426.  
  427. class EWK_M997A2_Ambulance_Tan_NoBackLights {
  428. vItemSpace = 65;
  429. storageFee[] = { 1000, 0, 0, 0 };
  430. garageSell[] = { 3500, 0, 0, 0 };
  431. insurance = 2500;
  432. chopShop = 5000;
  433. textures[] = {};
  434. };
  435.  
  436. class EWK_M998_Terminal {
  437. vItemSpace = 65;
  438. storageFee[] = { 1000, 0, 0, 0 };
  439. garageSell[] = { 3500, 0, 0, 0 };
  440. insurance = 2500;
  441. chopShop = 5000;
  442. textures[] = {};
  443. };
  444.  
  445. class EWK_M1114_Armored {
  446. vItemSpace = 65;
  447. storageFee[] = { 1000, 0, 0, 0 };
  448. garageSell[] = { 3500, 0, 0, 0 };
  449. insurance = 2500;
  450. chopShop = 5000;
  451. textures[] = {};
  452. };
  453.  
  454. class EWK_M998A2_sov_M2 {
  455. vItemSpace = 65;
  456. storageFee[] = { 1000, 0, 0, 0 };
  457. garageSell[] = { 3500, 0, 0, 0 };
  458. insurance = 2500;
  459. chopShop = 5000;
  460. textures[] = {};
  461. };
  462.  
  463. class EWK_m1151_TOW_deployment {
  464. vItemSpace = 65;
  465. storageFee[] = { 1000, 0, 0, 0 };
  466. garageSell[] = { 3500, 0, 0, 0 };
  467. insurance = 2500;
  468. chopShop = 5000;
  469. textures[] = {};
  470. };
  471.  
  472. class EWK_m1151_m240_deployment {
  473. vItemSpace = 65;
  474. storageFee[] = { 1000, 0, 0, 0 };
  475. garageSell[] = { 3500, 0, 0, 0 };
  476. insurance = 2500;
  477. chopShop = 5000;
  478. textures[] = {};
  479. };
  480.  
  481. class EWK_m1151_m2_deployment_AT4 {
  482. vItemSpace = 65;
  483. storageFee[] = { 1000, 0, 0, 0 };
  484. garageSell[] = { 3500, 0, 0, 0 };
  485. insurance = 2500;
  486. chopShop = 5000;
  487. textures[] = {};
  488. };
  489.  
  490.  
  491. class B_APC_Wheeled_01_cannon_F {
  492. vItemSpace = 65;
  493. storageFee[] = { 1000, 0, 0, 0 };
  494. garageSell[] = { 3500, 0, 0, 0 };
  495. insurance = 2500;
  496. chopShop = 5000;
  497. textures[] = {};
  498. };
  499.  
  500. class B_MBT_01_cannon_F {
  501. vItemSpace = 65;
  502. storageFee[] = { 1000, 0, 0, 0 };
  503. garageSell[] = { 3500, 0, 0, 0 };
  504. insurance = 2500;
  505. chopShop = 5000;
  506. textures[] = {};
  507.  
  508. };
  509.  
  510. class LandRover_ACR {
  511. vItemSpace = 65;
  512. storageFee[] = { 1000, 0, 0, 0 };
  513. garageSell[] = { 3500, 0, 0, 0 };
  514. insurance = 2500;
  515. chopShop = 5000;
  516. textures[] = {};
  517.  
  518. };
  519.  
  520. class LandRover_CZ_EP1 {
  521. vItemSpace = 65;
  522. storageFee[] = { 1000, 0, 0, 0 };
  523. garageSell[] = { 3500, 0, 0, 0 };
  524. insurance = 2500;
  525. chopShop = 5000;
  526. textures[] = {};
  527.  
  528. };
  529.  
  530.  
  531.  
  532.  
  533. class LandRover_TK_CIV_EP1 {
  534. vItemSpace = 65;
  535. storageFee[] = { 1000, 0, 0, 0 };
  536. garageSell[] = { 3500, 0, 0, 0 };
  537. insurance = 2500;
  538. chopShop = 5000;
  539. textures[] = {};
  540.  
  541. };
  542.  
  543. class ACR_LandRover_AMB {
  544. vItemSpace = 65;
  545. storageFee[] = { 1000, 0, 0, 0 };
  546. garageSell[] = { 3500, 0, 0, 0 };
  547. insurance = 2500;
  548. chopShop = 5000;
  549. textures[] = {};
  550.  
  551. };
  552.  
  553. class BAF_Offroad_W {
  554. vItemSpace = 65;
  555. storageFee[] = { 1000, 0, 0, 0 };
  556. garageSell[] = { 3500, 0, 0, 0 };
  557. insurance = 2500;
  558. chopShop = 5000;
  559. textures[] = {};
  560.  
  561. };
  562.  
  563. class BAF_Offroad_D {
  564. vItemSpace = 65;
  565. storageFee[] = { 1000, 0, 0, 0 };
  566. garageSell[] = { 3500, 0, 0, 0 };
  567. insurance = 2500;
  568. chopShop = 5000;
  569. textures[] = {};
  570.  
  571. };
  572.  
  573. class ACR_Offroad_HMG {
  574. vItemSpace = 65;
  575. storageFee[] = { 1000, 0, 0, 0 };
  576. garageSell[] = { 3500, 0, 0, 0 };
  577. insurance = 2500;
  578. chopShop = 5000;
  579. textures[] = {};
  580.  
  581. };
  582.  
  583.  
  584. class BAF_Offroad_W_HMG {
  585. vItemSpace = 65;
  586. storageFee[] = { 1000, 0, 0, 0 };
  587. garageSell[] = { 3500, 0, 0, 0 };
  588. insurance = 2500;
  589. chopShop = 5000;
  590. textures[] = {};
  591.  
  592. };
  593.  
  594. class LandRover_MG_TK_EP1 {
  595. vItemSpace = 65;
  596. storageFee[] = { 1000, 0, 0, 0 };
  597. garageSell[] = { 3500, 0, 0, 0 };
  598. insurance = 2500;
  599. chopShop = 5000;
  600. textures[] = {};
  601.  
  602. };
  603.  
  604. class B_G_Offroad_01_armed_F {
  605. vItemSpace = 65;
  606. storageFee[] = { 1000, 0, 0, 0 };
  607. garageSell[] = { 3500, 0, 0, 0 };
  608. insurance = 2500;
  609. chopShop = 5000;
  610. textures[] = {};
  611. };
  612.  
  613. class I_G_Van_01_transport_F {
  614. vItemSpace = 100;
  615. storageFee[] = { 1000, 0, 0, 0 };
  616. insurance = 2500;
  617. chopShop = 5000;
  618. textures[] = {};
  619. };
  620.  
  621. class C_Boat_Civil_01_F {
  622. vItemSpace = 85;
  623. storageFee[] = { 4500, 2500, 0, 0 };
  624. garageSell[] = { 6800, 3500, 0, 0 };
  625. insurance = 2500;
  626. chopShop = 5000;
  627. textures[] = {};
  628. };
  629.  
  630. class C_Boat_Civil_01_police_F {
  631. vItemSpace = 85;
  632. storageFee[] = { 0, 3500, 0, 0 };
  633. garageSell[] = { 0, 4950, 0, 0 };
  634. insurance = 2500;
  635. chopShop = 5000;
  636. textures[] = {};
  637. };
  638.  
  639. class C_Boat_Civil_01_rescue_F {
  640. vItemSpace = 85;
  641. storageFee[] = { 1000, 0, 0, 0 };
  642. insurance = 2500;
  643. chopShop = 5000;
  644. textures[] = {};
  645. };
  646.  
  647. class B_Truck_01_box_F {
  648. vItemSpace = 450;
  649. storageFee[] = { 35000, 0, 0, 0 };
  650. garageSell[] = { 150000, 0, 0, 0 };
  651. insurance = 2500;
  652. chopShop = 5000;
  653. textures[] = {};
  654. };
  655.  
  656. class B_Truck_01_transport_F {
  657. vItemSpace = 325;
  658. storageFee[] = { 25650, 0, 0, 0 };
  659. garageSell[] = { 135000, 0, 0, 0 };
  660. insurance = 2500;
  661. chopShop = 5000;
  662. textures[] = {};
  663. };
  664.  
  665. class O_MRAP_02_F {
  666. vItemSpace = 60;
  667. storageFee[] = { 45000, 0, 0, 0 };
  668. garageSell[] = { 65000, 0, 0, 0 };
  669. insurance = 2500;
  670. chopShop = 5000;
  671. textures[] = {};
  672. };
  673.  
  674. class I_MRAP_03_F {
  675. vItemSpace = 58;
  676. storageFee[] = { 1000, 0, 0, 0 };
  677. insurance = 2500;
  678. chopShop = 5000;
  679. textures[] = {};
  680. };
  681.  
  682. class C_Offroad_01_F {
  683. vItemSpace = 65;
  684. storageFee[] = { 1000, 500, 650, 1000 };
  685. garageSell[] = { 6500, 2500, 1500, 0 };
  686. insurance = 2500;
  687. chopShop = 2500;
  688. textures[] = {
  689. { "Red", "civ", {
  690. "\A3\soft_F\Offroad_01\Data\offroad_01_ext_co.paa",
  691. "\A3\soft_F\Offroad_01\Data\offroad_01_ext_co.paa"
  692. } },
  693. { "Yellow", "civ", {
  694. "\A3\soft_F\Offroad_01\Data\offroad_01_ext_BASE01_CO.paa",
  695. "\A3\soft_F\Offroad_01\Data\offroad_01_ext_BASE01_CO.paa"
  696. } },
  697. { "White", "civ", {
  698. "\A3\soft_F\Offroad_01\Data\offroad_01_ext_BASE02_CO.paa",
  699. "\A3\soft_F\Offroad_01\Data\offroad_01_ext_BASE02_CO.paa"
  700. } },
  701. { "Blue", "civ", {
  702. "\A3\soft_F\Offroad_01\Data\offroad_01_ext_BASE03_CO.paa",
  703. "\A3\soft_F\Offroad_01\Data\offroad_01_ext_BASE03_CO.paa"
  704. } },
  705. { "Dark Red", "civ", {
  706. "\A3\soft_F\Offroad_01\Data\offroad_01_ext_BASE04_CO.paa",
  707. "\A3\soft_F\Offroad_01\Data\offroad_01_ext_BASE04_CO.paa"
  708. } },
  709. { "Blue / White", "civ", {
  710. "\A3\soft_F\Offroad_01\Data\offroad_01_ext_BASE05_CO.paa",
  711. "\A3\soft_F\Offroad_01\Data\offroad_01_ext_BASE05_CO.paa"
  712. } },
  713. { "Fed", "fed", {
  714. "#(ai,64,64,1)Fresnel(0.3,3)"
  715. } },
  716. { "Police", "cop", {
  717. "#(ai,64,64,1)Fresnel(1.3,7)"
  718. } },
  719. { "Taxi", "civ", {
  720. "#(argb,8,8,3)color(0.6,0.3,0.01,1)"
  721. } }
  722. };
  723. };
  724.  
  725. class C_Kart_01_Blu_F {
  726. vItemSpace = 20;
  727. storageFee[] = { 1500, 1500, 1500, 0 };
  728. garageSell[] = { 3500, 1500, 1500, 0 };
  729. inusrance = 1650;
  730. chopShop = 3500;
  731. textures[] = {};
  732. };
  733.  
  734. class C_Kart_01_Fuel_F : C_Kart_01_Blu_F {}; //Inherits everything from the above class
  735. class C_Kart_01_Red_F : C_Kart_01_Blu_F {}; //Inherits everything from the above class
  736. class C_Kart_01_Vrana_F : C_Kart_01_Blu_F {}; //Inherits everything from the above class
  737.  
  738. class C_Hatchback_01_sport_F {
  739. vItemSpace = 45;
  740. storageFee[] = { 2500, 1000, 1500, 0 };
  741. garageSell[] = { 15000, 7500, 1500, 0 };
  742. insurance = 5500;
  743. chopShop = 4500;
  744. textures[] = {
  745. { "Red", "civ", {
  746. "\a3\soft_f_gamma\Hatchback_01\data\hatchback_01_ext_sport01_co.paa"
  747. } },
  748. { "Dark Blue", "civ", {
  749. "\a3\soft_f_gamma\Hatchback_01\data\hatchback_01_ext_sport02_co.paa"
  750. } },
  751. { "Orange", "civ", {
  752. "\a3\soft_f_gamma\Hatchback_01\data\hatchback_01_ext_sport03_co.paa"
  753. } },
  754. { "Black / White", "civ", {
  755. "\a3\soft_f_gamma\Hatchback_01\data\hatchback_01_ext_sport04_co.paa"
  756. } },
  757. { "Beige", "civ", {
  758. "\a3\soft_f_gamma\Hatchback_01\data\hatchback_01_ext_sport05_co.paa"
  759. } },
  760. { "Green", "civ", {
  761. "\a3\soft_f_gamma\Hatchback_01\data\hatchback_01_ext_sport06_co.paa"
  762. } },
  763. { "Police", "cop", {
  764. "#(ai,64,64,1)Fresnel(1.3,7)"
  765. } }
  766. };
  767. };
  768.  
  769. class B_Quadbike_01_F {
  770. vItemSpace = 25;
  771. storageFee[] = { 1000, 1500, 1500, 0 };
  772. garageSell[] = { 950, 1500, 1500, 0 };
  773. insurance = 2500;
  774. chopShop = 5000;
  775. textures[] = {
  776. { "Brown", "cop", {
  777. "\A3\Soft_F\Quadbike_01\Data\Quadbike_01_co.paa"
  778. } },
  779. { "Digi Desert", "reb", {
  780. "\A3\Soft_F\Quadbike_01\Data\quadbike_01_opfor_co.paa"
  781. } },
  782. { "Black", "civ", {
  783. "\A3\Soft_F_beta\Quadbike_01\Data\quadbike_01_civ_black_co.paa"
  784. } },
  785. { "Blue", "civ", {
  786. "\A3\Soft_F_beta\Quadbike_01\Data\quadbike_01_civ_blue_co.paa"
  787. } },
  788. { "Red", "civ", {
  789. "\A3\Soft_F_beta\Quadbike_01\Data\quadbike_01_civ_red_co.paa"
  790. } },
  791. { "White", "civ", {
  792. "\A3\Soft_F_beta\Quadbike_01\Data\quadbike_01_civ_white_co.paa"
  793. } },
  794. { "Digi Green", "civ", {
  795. "\A3\Soft_F_beta\Quadbike_01\Data\quadbike_01_indp_co.paa"
  796. } },
  797. { "Hunter Camo", "civ", {
  798. "\a3\soft_f_gamma\Quadbike_01\data\quadbike_01_indp_hunter_co.paa"
  799. } },
  800. { "Rebel Camo", "reb", {
  801. "\a3\soft_f_gamma\Quadbike_01\data\quadbike_01_indp_hunter_co.paa"
  802. } }
  803. };
  804. };
  805.  
  806. class I_Truck_02_covered_F {
  807. vItemSpace = 250;
  808. storageFee[] = { 14500, 1500, 1500, 0 };
  809. garageSell[] = { 62000, 1500, 1500, 0 };
  810. insurance = 6500;
  811. chopShop = 20000;
  812. textures[] = {
  813. { "Orange", "civ", {
  814. "\A3\Soft_F_Beta\Truck_02\data\truck_02_kab_co.paa",
  815. "\a3\soft_f_beta\Truck_02\data\truck_02_kuz_co.paa"
  816. } },
  817. { "Black", "fed", {
  818. "#(argb,8,8,3)color(0.05,0.05,0.05,1)"
  819. } }
  820. };
  821. };
  822.  
  823. class I_Truck_02_transport_F : I_Truck_02_covered_F {
  824. vItemSpace = 200;
  825. storageFee[] = { 12000, 1500, 1500, 0 };
  826. garageSell[] = { 49800, 3500, 1500, 0 };
  827. };
  828.  
  829. class O_Truck_03_covered_F {
  830. vItemSpace = 300;
  831. storageFee[] = { 25000, 1500, 1500, 0 };
  832. garageSell[] = { 65000, 1500, 1500, 0 };
  833. insurance = 2500;
  834. chopShop = 5000;
  835. textures[] = {};
  836. };
  837.  
  838. class C_Hatchback_01_F {
  839. vItemSpace = 40;
  840. storageFee[] = { 1000, 1500, 1500, 0 };
  841. garageSell[] = { 4500, 3500, 1500, 0 };
  842. insurance = 2500;
  843. chopShop = 5000;
  844. textures[] = {
  845. { "Beige", "civ", {
  846. "\a3\soft_f_gamma\Hatchback_01\data\hatchback_01_ext_base01_co.paa"
  847. } },
  848. { "Green", "civ", {
  849. "\a3\soft_f_gamma\Hatchback_01\data\hatchback_01_ext_base02_co.paa"
  850. } },
  851. { "Blue", "civ", {
  852. "\a3\soft_f_gamma\Hatchback_01\data\hatchback_01_ext_base03_co.paa"
  853. } },
  854. { "Dark Blue", "civ", {
  855. "\a3\soft_f_gamma\Hatchback_01\data\hatchback_01_ext_base04_co.paa"
  856. } },
  857. { "Yellow", "civ", {
  858. "\a3\soft_f_gamma\Hatchback_01\data\hatchback_01_ext_base06_co.paa"
  859. } },
  860. { "White", "civ", {
  861. "\a3\soft_f_gamma\Hatchback_01\data\hatchback_01_ext_base07_co.paa"
  862. } },
  863. { "Grey", "civ", {
  864. "\a3\soft_f_gamma\Hatchback_01\data\hatchback_01_ext_base08_co.paa"
  865. } },
  866. { "Black", "civ", {
  867. "\a3\soft_f_gamma\Hatchback_01\data\hatchback_01_ext_base09_co.paa"
  868. } }
  869. };
  870. };
  871.  
  872. class C_SUV_01_F {
  873. vItemSpace = 50;
  874. storageFee[] = { 1000, 1500, 1500, 0 };
  875. garageSell[] = { 15000, 7500, 1500, 0 };
  876. insurance = 2500;
  877. chopShop = 5000;
  878. textures[] = {
  879. { "Dark Red", "civ", {
  880. "\a3\soft_f_gamma\SUV_01\Data\suv_01_ext_co.paa"
  881. } },
  882. { "Black", "cop", {
  883. "\a3\soft_f_gamma\SUV_01\Data\suv_01_ext_02_co.paa"
  884. } },
  885. { "Silver", "civ", {
  886. "\a3\soft_f_gamma\SUV_01\Data\suv_01_ext_03_co.paa"
  887. } },
  888. { "Orange", "civ", {
  889. "\a3\soft_f_gamma\SUV_01\Data\suv_01_ext_04_co.paa"
  890. } },
  891. { "Cop", "cop", {
  892. "#(ai,64,64,1)Fresnel(1.3,7)"
  893. } }
  894. };
  895. };
  896.  
  897. class C_Van_01_transport_F {
  898. vItemSpace = 100;
  899. storageFee[] = { 1000, 1500, 1500, 0 };
  900. garageSell[] = { 25000, 1500, 1500, 0 };
  901. insurance = 2500;
  902. chopShop = 5000;
  903. textures[] = {
  904. { "White", "civ", {
  905. "\a3\soft_f_gamma\Van_01\Data\van_01_ext_co.paa"
  906. } },
  907. { "Red", "civ", {
  908. "\a3\soft_f_gamma\Van_01\Data\van_01_ext_red_co.paa"
  909. } }
  910. };
  911. };
  912.  
  913. class C_Van_01_box_F {
  914. vItemSpace = 150;
  915. storageFee[] = { 1000, 1500, 1500, 0 };
  916. garageSell[] = { 35000, 1500, 1500, 0 };
  917. insurance = 2500;
  918. chopShop = 5000;
  919. textures[] = {
  920. { "White", "civ", {
  921. "\a3\soft_f_gamma\Van_01\Data\van_01_ext_co.paa"
  922. } },
  923. { "Red", "civ", {
  924. "\a3\soft_f_gamma\Van_01\Data\van_01_ext_red_co.paa"
  925. } }
  926. };
  927. };
  928. class B_MRAP_01_F {
  929. vItemSpace = 65;
  930. storageFee[] = { 1500, 7500, 1500, 0 };
  931. garageSell[] = { 1500, 10000, 1500, 0 };
  932. insurance = 2500;
  933. chopShop = 5000;
  934. textures[] = {
  935. { "Regular", "cop", {
  936. "\A3\Soft_F\MRAP_01\Data\mrap_01_base_co.paa"
  937. } },
  938. { "Black", "fed", {
  939. "#(argb,8,8,3)color(0.05,0.05,0.05,1)"
  940. } }
  941. };
  942. };
  943.  
  944. class B_Heli_Light_01_F {
  945. vItemSpace = 90;
  946. storageFee[] = { 10000, 1500, 1500, 0 };
  947. garageSell[] = { 57000, 1500, 1500, 0 };
  948. insurance = 2500;
  949. chopShop = 5000;
  950. textures[] = {
  951. { "Black", "fed", {
  952. "\a3\air_f\Heli_Light_01\Data\heli_light_01_ext_ion_co.paa"
  953. } },
  954. { "Civ Blue", "civ", {
  955. "\a3\air_f\Heli_Light_01\Data\heli_light_01_ext_blue_co.paa"
  956. } },
  957. { "Civ Red", "civ", {
  958. "\a3\air_f\Heli_Light_01\Data\heli_light_01_ext_co.paa"
  959. } },
  960. { "Digi Green", "donate", {
  961. "\a3\air_f\Heli_Light_01\Data\heli_light_01_ext_indp_co.paa"
  962. } },
  963. { "Blueline", "civ", {
  964. "\a3\air_f\Heli_Light_01\Data\Skins\heli_light_01_ext_blueline_co.paa"
  965. } },
  966. { "Elliptical", "civ", {
  967. "\a3\air_f\Heli_Light_01\Data\Skins\heli_light_01_ext_elliptical_co.paa"
  968. } },
  969. { "Furious", "civ", {
  970. "\a3\air_f\Heli_Light_01\Data\Skins\heli_light_01_ext_furious_co.paa"
  971. } },
  972. { "Jeans Blue", "civ", {
  973. "\a3\air_f\Heli_Light_01\Data\Skins\heli_light_01_ext_jeans_co.paa"
  974. } },
  975. { "Speedy Redline", "civ", {
  976. "\a3\air_f\Heli_Light_01\Data\Skins\heli_light_01_ext_speedy_co.paa"
  977. } },
  978. { "Sunset", "civ", {
  979. "\a3\air_f\Heli_Light_01\Data\Skins\heli_light_01_ext_sunset_co.paa"
  980. } },
  981. { "Vrana", "civ", {
  982. "\a3\air_f\Heli_Light_01\Data\Skins\heli_light_01_ext_vrana_co.paa"
  983. } },
  984. { "Waves Blue", "civ", {
  985. "\a3\air_f\Heli_Light_01\Data\Skins\heli_light_01_ext_wave_co.paa"
  986. } },
  987. { "Rebel Digital", "reb", {
  988. "\a3\air_f\Heli_Light_01\Data\Skins\heli_light_01_ext_digital_co.paa"
  989. } },
  990. { "EMS White", "med", {
  991. "#(argb,8,8,3)color(1,1,1,0.8)"
  992. } }
  993. };
  994. };
  995.  
  996. class O_Heli_Light_02_unarmed_F {
  997. vItemSpace = 210;
  998. storageFee[] = { 15000, 1500, 1500, 0 };
  999. garageSell[] = { 72500, 1500, 1500, 0 };
  1000. insurance = 2500;
  1001. chopShop = 5000;
  1002. textures[] = {
  1003. { "Black", "fed", {
  1004. "\a3\air_f\Heli_Light_02\Data\heli_light_02_ext_co.paa"
  1005. } },
  1006. { "White / Blue", "civ", {
  1007. "\a3\air_f\Heli_Light_02\Data\heli_light_02_ext_civilian_co.paa"
  1008. } },
  1009. { "Digi Green", "donate", {
  1010. "\a3\air_f\Heli_Light_02\Data\heli_light_02_ext_indp_co.paa"
  1011. } },
  1012. { "Desert Digi", "reb", {
  1013. "\a3\air_f\Heli_Light_02\Data\heli_light_02_ext_opfor_co.paa"
  1014. } },
  1015. { "EMS White", "med", {
  1016. "#(argb,8,8,3)color(1,1,1,0.8)"
  1017. } }
  1018. };
  1019. };
  1020.  
  1021. class I_Heli_Transport_02_F {
  1022. vItemSpace = 375;
  1023. storageFee[] = { 20000, 1500, 1500, 0 };
  1024. garageSell[] = { 125000, 1500, 1500, 0 };
  1025. insurance = 2500;
  1026. chopShop = 5000;
  1027. textures[] = {
  1028. { "Ion", "civ", {
  1029. "\a3\air_f_beta\Heli_Transport_02\Data\Skins\heli_transport_02_1_ion_co.paa",
  1030. "\a3\air_f_beta\Heli_Transport_02\Data\Skins\heli_transport_02_2_ion_co.paa",
  1031. "\a3\air_f_beta\Heli_Transport_02\Data\Skins\heli_transport_02_3_ion_co.paa"
  1032. } },
  1033. { "Dahoman", "civ", {
  1034. "\a3\air_f_beta\Heli_Transport_02\Data\Skins\heli_transport_02_1_dahoman_co.paa",
  1035. "\a3\air_f_beta\Heli_Transport_02\Data\Skins\heli_transport_02_2_dahoman_co.paa",
  1036. "\a3\air_f_beta\Heli_Transport_02\Data\Skins\heli_transport_02_3_dahoman_co.paa"
  1037. } }
  1038. };
  1039. };
  1040. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement