Advertisement
Guest User

Untitled

a guest
Aug 2nd, 2015
305
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 19.14 KB | None | 0 0
  1. #include <macro.h>
  2. /*
  3. Master Life Configuration File
  4. This file is to setup variables for the client, there are still other configuration files in the system
  5.  
  6. *****************************
  7. ****** Backend Variables *****
  8. *****************************
  9. */
  10. life_query_time = time;
  11. life_action_delay = time;
  12. life_trunk_vehicle = Objnull;
  13. life_session_completed = false;
  14. life_garage_store = false;
  15. life_session_tries = 0;
  16. life_net_dropped = false;
  17. life_hit_explosive = false;
  18. life_siren_active = false;
  19. life_clothing_filter = 0;
  20. life_clothing_uniform = -1;
  21. life_redgull_effect = time;
  22. life_is_processing = false;
  23. life_bail_paid = false;
  24. life_impound_inuse = false;
  25. life_action_inUse = false;
  26. life_spikestrip = ObjNull;
  27. life_respawn_timer = 1; //Scaled in minutes
  28. life_knockout = false;
  29. life_interrupted = false;
  30. life_respawned = false;
  31. life_removeWanted = false;
  32. life_action_gathering = false;
  33. life_channel_send = true;
  34.  
  35. //Persistent Saving
  36. __CONST__(life_save_civ,TRUE); //Save weapons for civs?
  37. __CONST__(life_save_yinv,TRUE); //Save Y-Inventory for players?
  38.  
  39. //Revive constant variables.
  40. __CONST__(life_revive_cops,TRUE); //Set to false if you don't want cops to be able to revive downed players.
  41. __CONST__(life_revive_fee,2500); //Fee for players to pay when revived.
  42.  
  43. //House Limit
  44. __CONST__(life_houseLimit,6); //Maximum amount of houses a player can buy (TODO: Make Tiered licenses).
  45.  
  46. //Gang related stuff?
  47. __CONST__(life_gangPrice,150000); //Price for creating a gang (They're all persistent so keep it high to avoid 345345345 gangs).
  48. __CONST__(life_gangUpgradeBase,30000); //MASDASDASD
  49. __CONST__(life_gangUpgradeMultipler,2.5); //BLAH
  50.  
  51. __CONST__(life_enableFatigue,false); //Enable / Disable the ARMA 3 Fatigue System
  52.  
  53. //Uniform price (0),Hat Price (1),Glasses Price (2),Vest Price (3),Backpack Price (4)
  54. life_clothing_purchase = [-1,-1,-1,-1,-1];
  55. /*
  56. *****************************
  57. ****** Weight Variables *****
  58. *****************************
  59. */
  60. life_maxWeight = 24; //Identifies the max carrying weight (gets adjusted throughout game when wearing different types of clothing).
  61. life_maxWeightT = 24; //Static variable representing the players max carrying weight on start.
  62. life_carryWeight = 0; //Represents the players current inventory weight (MUST START AT 0).
  63.  
  64. /*
  65. *****************************
  66. ****** Life Variables *******
  67. *****************************
  68. */
  69. life_net_dropped = false;
  70. life_hit_explosive = false;
  71. life_siren_active = false;
  72. life_bank_fail = false;
  73. life_use_atm = true;
  74. life_is_arrested = false;
  75. life_delivery_in_progress = false;
  76. life_action_in_use = false;
  77. life_thirst = 100;
  78. life_hunger = 100;
  79. life_battery = 100;
  80. __CONST__(life_paycheck_period,10); //Dix minutes
  81. life_cash = 0;
  82. __CONST__(life_impound_car,350);
  83. __CONST__(life_impound_boat,250);
  84. __CONST__(life_impound_air,850);
  85. life_istazed = false;
  86. life_my_gang = ObjNull;
  87.  
  88. life_vehicles = [];
  89. bank_robber = [];
  90. switch (playerSide) do
  91. {
  92. case west:
  93. {
  94. life_atmcash = 100000; //Starting Bank Money
  95. life_paycheck = 9899; //Paycheck Amount
  96. };
  97. case civilian:
  98. {
  99. life_atmcash = 50000; //Starting Bank Money
  100. life_paycheck = 4659; //Paycheck Amount
  101. };
  102.  
  103. case independent: {
  104. life_atmcash = 65000;
  105. life_paycheck = 6965;
  106. };
  107. };
  108.  
  109. /*
  110. Master Array of items?
  111. */
  112. life_vShop_rentalOnly = ["B_MRAP_01_hmg_F","B_G_Offroad_01_armed_F"];
  113. __CONST__(life_vShop_rentalOnly,life_vShop_rentalOnly); //These vehicles can never be bought and only 'rented'. Used as a balancer & money sink. If you want your server to be chaotic then fine.. Remove it..
  114.  
  115. life_inv_items =
  116. [
  117. "life_inv_oilu",
  118. "life_inv_oilp",
  119. "life_inv_heroinu",
  120. "life_inv_heroinp",
  121. "life_inv_cannabis",
  122. "life_inv_marijuana",
  123. "life_inv_apple",
  124. "life_inv_rabbit",
  125. "life_inv_salema",
  126. "life_inv_ornate",
  127. "life_inv_mackerel",
  128. "life_inv_tuna",
  129. "life_inv_mullet",
  130. "life_inv_catshark",
  131. "life_inv_turtle",
  132. "life_inv_fishingpoles",
  133. "life_inv_platinep",
  134. "life_inv_osmium",
  135. "life_inv_palladium",
  136. "life_inv_water",
  137. "life_inv_donuts",
  138. "life_inv_turtlesoup",
  139. "life_inv_coffee",
  140. "life_inv_fuelF",
  141. "life_inv_fuelE",
  142. "life_inv_pickaxe",
  143. "life_inv_copperore",
  144. "life_inv_ironore",
  145. "life_inv_ironr",
  146. "life_inv_copperr",
  147. "life_inv_pelle",
  148. "life_inv_bijoux",
  149. "life_inv_joue",
  150. "life_inv_bouche",
  151. "life_inv_sand",
  152. "life_inv_salt",
  153. "life_inv_saltr",
  154. "life_inv_glass",
  155. "life_inv_tbacon",
  156. "life_inv_lockpick",
  157. "life_inv_redgull",
  158. "life_inv_peach",
  159. "life_inv_diamond",
  160. "life_inv_coke",
  161. "life_inv_cokep",
  162. "life_inv_diamondr",
  163. "life_inv_spikeStrip",
  164. "life_inv_rock",
  165. "life_inv_cement",
  166. "life_inv_goldbar",
  167. "life_inv_blastingcharge",
  168. "life_inv_boltcutter",
  169. "life_inv_defusekit",
  170. "life_inv_storagesmall",
  171. "life_inv_storagebig",
  172. "life_inv_moonshine",
  173. "life_inv_wine",
  174. "life_inv_grapes",
  175. "life_inv_kitmeth",
  176. "life_inv_poudrehydroxyde",
  177. "life_inv_crystalmeth",
  178. "life_inv_crystalmethpur",
  179. "life_inv_crabe",
  180. "life_inv_menotte",
  181. "life_inv_battery",
  182. "life_inv_cle"
  183. ];
  184.  
  185. //Setup variable inv vars.
  186. {missionNamespace setVariable[_x,0];} foreach life_inv_items;
  187. //Licenses [license var, civ/cop]
  188. life_licenses =
  189. [
  190. ["license_cop_air","cop"],
  191. ["license_cop_swat","cop"],
  192. ["license_cop_cg","cop"],
  193. ["license_civ_driver","civ"],
  194. ["license_civ_air","civ"],
  195. ["license_civ_heroin","civ"],
  196. ["license_civ_marijuana","civ"],
  197. ["license_civ_gang","civ"],
  198. ["license_civ_boat","civ"],
  199. ["license_civ_oil","civ"],
  200. ["license_civ_dive","civ"],
  201. ["license_civ_truck","civ"],
  202. ["license_civ_gun","civ"],
  203. ["license_civ_rebel","civ"],
  204. ["license_civ_coke","civ"],
  205. ["license_civ_diamond","civ"],
  206. ["license_civ_copper","civ"],
  207. ["license_civ_iron","civ"],
  208. ["license_civ_sand","civ"],
  209. ["license_civ_salt","civ"],
  210. ["license_civ_cement","civ"],
  211. ["license_med_air","med"],
  212. ["license_civ_home","civ"],
  213. ["license_civ_grapes","civ"],
  214. ["license_civ_moonshine","civ"],
  215. ["license_civ_mineralogiste","civ"],
  216. ["license_civ_meth","civ"],
  217. ["license_civ_bountyh","civ"],
  218. ["license_civ_donateur","civ"],
  219. ["license_civ_delinquant","civ"]
  220. ];
  221.  
  222. //Setup License Variables
  223. {missionNamespace setVariable[(_x select 0),false];} foreach life_licenses;
  224.  
  225. life_dp_points = ["dp_1","dp_2","dp_3","dp_4","dp_5","dp_6","dp_7","dp_8","dp_9","dp_10","dp_11","dp_12","dp_13","dp_14","dp_15","dp_15","dp_16","dp_17","dp_18","dp_19","dp_20","dp_21","dp_22","dp_23","dp_24","dp_25"];
  226. //[shortVar,reward]
  227. life_illegal_items = [
  228.  
  229. ["heroinu",1200],
  230. ["heroinp",2500],
  231. ["cocaine",1500],
  232. ["cocainep",3500],
  233. ["marijuana",2000],
  234. ["turtle",3000],
  235. ["blastingcharge",10000],
  236. ["boltcutter",500],
  237. ["moonshine",650],
  238. ["kitmeth",1000],
  239. ["crystalmeth",4500],
  240. ["crystalmethpur",8500],
  241. ["menotte",10000],
  242. ["cle",10000]
  243. ];
  244.  
  245.  
  246. /*
  247. Sell / buy arrays
  248. */
  249. sell_array =
  250. [
  251. ["apple",50],
  252. ["heroinu",1850],
  253. ["heroinp",2650],
  254. ["salema",45],
  255. ["ornate",40],
  256. ["mackerel",175],
  257. ["tuna",700],
  258. ["mullet",250],
  259. ["catshark",300],
  260. ["rabbit",65],
  261. ["oilp",3200],
  262. ["turtle",3000],
  263. ["water",5],
  264. ["coffee",5],
  265. ["turtlesoup",1000],
  266. ["donuts",60],
  267. ["marijuana",2350],
  268. ["tbacon",25],
  269. ["lockpick",75],
  270. ["pickaxe",750],
  271. ["redgull",200],
  272. ["peach",55],
  273. ["cocaine",3000],
  274. ["cocainep",5000],
  275. ["diamond",750],
  276. ["diamondc",2000],
  277. ["iron_r",3200],
  278. ["copper_r",1500],
  279. ["salt_r",1650],
  280. ["glass",1450],
  281. ["fuelF",500],
  282. ["spikeStrip",1200],
  283. ["cement",1950],
  284. ["goldbar",95000],
  285. ["moonshine",800],
  286. ["wine",255],
  287. ["grapes",70],
  288. ["kitmeth",2000],
  289. ["crystalmethpur",10750],
  290. ["crabe",90],
  291. ["bijoux",14852],
  292. ["joue",9850],
  293. ["bouche",12500],
  294. ["platinep",3600],
  295. ["osmium",1400],
  296. ["palladium",1600],
  297. ["pelle",2800],
  298. ["menotte",10000],
  299. ["battery",750],
  300. ["cle",10000]
  301. ];
  302. __CONST__(sell_array,sell_array);
  303.  
  304. buy_array =
  305. [
  306. ["apple",65],
  307. ["rabbit",75],
  308. ["salema",55],
  309. ["ornate",50],
  310. ["mackerel",200],
  311. ["tuna",900],
  312. ["mullet",300],
  313. ["catshark",350],
  314. ["water",10],
  315. ["turtle",4000],
  316. ["turtlesoup",2500],
  317. ["donuts",120],
  318. ["coffee",10],
  319. ["tbacon",75],
  320. ["lockpick",150],
  321. ["pickaxe",1200],
  322. ["redgull",1500],
  323. ["fuelF",850],
  324. ["peach",68],
  325. ["spikeStrip",2500],
  326. ["blastingcharge",35000],
  327. ["boltcutter",7500],
  328. ["defusekit",2500],
  329. ["storagesmall",75000],
  330. ["storagebig",150000],
  331. ["moonshine",1250],
  332. ["wine",400],
  333. ["grapes",95],
  334. ["kitmeth",2000],
  335. ["crabe",180],
  336. ["platinep",4600],
  337. ["osmium",2400],
  338. ["palladium",2600],
  339. ["pelle",2800],
  340. ["menotte",10000],
  341. ["battery",1500],
  342. ["cle",10000]
  343. ];
  344. __CONST__(buy_array,buy_array);
  345.  
  346. life_weapon_shop_array =
  347. [
  348. ["arifle_sdar_F",7500],
  349. ["hgun_P07_snds_F",650],
  350. ["hgun_P07_F",1500],
  351. ["ItemGPS",45],
  352. ["ToolKit",75],
  353. ["FirstAidKit",65],
  354. ["Medikit",450],
  355. ["NVGoggles",980],
  356. ["16Rnd_9x21_Mag",15],
  357. ["20Rnd_556x45_UW_mag",35],
  358. ["ItemMap",35],
  359. ["ItemCompass",25],
  360. ["Chemlight_blue",50],
  361. ["Chemlight_yellow",50],
  362. ["Chemlight_green",50],
  363. ["Chemlight_red",50],
  364. ["hgun_Rook40_F",500],
  365. ["arifle_Katiba_F",5000],
  366. ["30Rnd_556x45_Stanag",65],
  367. ["20Rnd_762x51_Mag",85],
  368. ["30Rnd_65x39_caseless_green",50],
  369. ["DemoCharge_Remote_Mag",7500],
  370. ["SLAMDirectionalMine_Wire_Mag",2575],
  371. ["optic_ACO_grn",250],
  372. ["acc_flashlight",100],
  373. ["srifle_EBR_F",15000],
  374. ["arifle_TRG21_F",3500],
  375. ["optic_MRCO",5000],
  376. ["optic_Aco",850],
  377. ["arifle_MX_F",7500],
  378. ["arifle_MXC_F",5000],
  379. ["arifle_MXM_F",8500],
  380. ["MineDetector",500],
  381. ["optic_Holosight",275],
  382. ["acc_pointer_IR",175],
  383. ["arifle_TRG20_F",2500],
  384. ["SMG_01_F",1500],
  385. ["arifle_Mk20C_F",4500],
  386. ["30Rnd_45ACP_Mag_SMG_01",60],
  387. ["30Rnd_9x21_Mag",30]
  388. ];
  389. __CONST__(life_weapon_shop_array,life_weapon_shop_array);
  390.  
  391. life_garage_prices =
  392. [
  393. ["B_QuadBike_01_F",550],
  394. ["C_Hatchback_01_F",1500],
  395. ["C_Offroad_01_F", 2500],
  396. ["B_G_Offroad_01_F",3500],
  397. ["C_SUV_01_F",5250],
  398. ["C_Van_01_transport_F",7890],
  399. ["C_Hatchback_01_sport_F",2350],
  400. ["C_Van_01_fuel_F",4500],
  401. ["I_Heli_Transport_02_F",100000],
  402. ["C_Van_01_box_F",9000],
  403. ["I_Truck_02_transport_F",12000],
  404. ["I_Truck_02_covered_F",14500],
  405. ["B_Truck_01_transport_F",25650],
  406. ["B_Truck_01_box_F", 35000],
  407. ["O_MRAP_02_F",45000],
  408. ["B_Heli_Light_01_F",45000],
  409. ["O_Heli_Light_02_unarmed_F",65000],
  410. ["C_Rubberboat",400],
  411. ["C_Boat_Civil_01_F",4500],
  412. ["B_Boat_Transport_01_F",450],
  413. ["C_Boat_Civil_01_police_F",3500],
  414. ["B_Boat_Armed_01_minigun_F",16500],
  415. ["B_SDV_01_F",25000],
  416. ["B_MRAP_01_F",7500],
  417. ["DAR_TahoePoliceDet",1000],
  418. ["cl3_chopper_gold",10000],
  419. ["cl3_chopper_silver",10000],
  420. ["cl3_chopper_blue",10000],
  421. ["cl3_chopper_red",10000],
  422. ["cl3_xr_1000_black",10000],
  423. ["cl3_xr_1000_babypink",10000],
  424. ["cl3_xr_1000_camo_urban",10000],
  425. ["cl3_xr_1000_flame2",10000],
  426. ["cl3_enduro_black",10000],
  427. ["cl3_enduro_burgundy",10000],
  428. ["cl3_enduro_lavender",10000],
  429. ["cl3_enduro_white",10000],
  430. ["cl3_volha_grey",10000],
  431. ["cl3_volha_black",10000],
  432. ["cl3_lada_red",10000],
  433. ["cl3_lada_white",10000],
  434. ["cl3_xlada_classic",10000],
  435. ["cl3_xlada_green",10000],
  436. ["RDS_S1203_Civ_01",10000],
  437. ["RDS_Octavia_Civ_01",10000],
  438. ["RDS_Lada_Civ_01",10000],
  439. ["RDS_Lada_Civ_02",10000],
  440. ["RDS_Lada_Civ_03",10000],
  441. ["RDS_Lada_Civ_04",10000],
  442. ["cl3_polo_gti_black",10000],
  443. ["cl3_polo_gti_red",10000],
  444. ["cl3_polo_gti_silver",10000],
  445. ["cl3_polo_gti_camo",10000],
  446. ["cl3_polo_gti_babypink",10000],
  447. ["cl3_golf_mk2_gold",10000],
  448. ["cl3_golf_mk2_red",10000],
  449. ["cl3_golf_mk2_black",10000],
  450. ["cl3_golf_mk2_white",10000],
  451. ["cl3_440cuda_blue_flame",10000],
  452. ["cl3_440cuda_emt_chief",10000],
  453. ["cl3_440cuda_black",10000],
  454. ["cl3_440cuda_flannery14",10000],
  455. ["cl3_civic_vti_aqua",10000],
  456. ["cl3_civic_vti_burgundy",10000],
  457. ["cl3_civic_vti_gold",10000],
  458. ["cl3_civic_vti_blue",10000],
  459. ["cl3_civic_vti_black",10000],
  460. ["cl3_civic_vti_violet",10000],
  461. ["cl3_suv_black",10000],
  462. ["cl3_discovery_blac",40000],
  463. ["cl3_discovery_hellokitty",10000],
  464. ["cl3_discovery_darkorange",10000],
  465. ["cl3_jurassicpark",10000],
  466. ["beetle_coci",10000],
  467. ["beetle_camo",10000],
  468. ["cl3_challenger_beige",10000],
  469. ["cl3_challenger_brown",10000],
  470. ["cl3_challenger_lime",10000],
  471. ["cl3_challenger_red",10000]
  472. ["cl3_reventon_teuil",3000],
  473. ["cl3_veyron_lblue_dblue",50000],
  474. ["cl3_veyron_black",50000],
  475. ["cl3_veyron_blk_wht",50000],
  476. ["Skyline_Mercedes_C63_01_F",10000],
  477. ["Skyline_Mercedes_C63_02_F",10000],
  478. ["cl3_dodge_chargerum_f_black",15000],
  479. ["cl3_dodge_chargerum_f_pink",15000],
  480. ["cl3_dodge_chargerum_f_darkred",15000],
  481. ["cl3_dodge_charger_f_lime",15000],
  482. ["cl3_dodge_charger_f_purple",15000],
  483. ["cl3_dodge_charger_f_white",15000],
  484. ["cl3_dbs_volante_black",30000],
  485. ["cl3_dbs_volante_burgundy",30000],
  486. ["cl3_dbs_volante_sand",30000],
  487. ["cl3_q7_cardinal",10000],
  488. ["cl3_q7_gold",10000],
  489. ["cl3_q7_camo",10000],
  490. ["l3_r8_spyder_black",10000],
  491. ["cl3_r8_spyder_red",10000],
  492. ["cl3_r8_spyder_dark_green",10000],
  493. ["cl3_s5_blue",10000],
  494. ["cl3_s5_green",100000],
  495. ["cl3_s5_marina_blue",10000],
  496. ["cl3_e60_m5_black",10000],
  497. ["cl3_e60_m5_grey",10000],
  498. ["cl3_e60_m5_purple",10000],
  499. ["cl3_z4_2008_black",10000],
  500. ["cl3_z4_2008_lavender",10000],
  501. ["cl3_z4_2008_sand",10000],
  502. ["cl3_escalade_burgundy_uc",10000],
  503. ["cl3_escalade_lime_uc",10000],
  504. ["cl3_escalade_silver_uc",10000],
  505. ["cl3_458_black",10000],
  506. ["cl3_458_gold",10000],
  507. ["cl3_458_navy_blue",10000],
  508. ["cl3_crown_victoria_yellow",10000],
  509. ["cl3_crown_victoria_red",10000],
  510. ["cl3_crown_victoria_grey",10000],
  511. ["cl3_taurus_black",10000],
  512. ["cl3_taurus_grey",10000],
  513. ["cl3_taurus_lime",10000],
  514. ["cl3_aventador_lp7004",10000],
  515. ["cl3_aventador_lp7004_green",10000],
  516. ["cl3_aventador_lp7004_flame2",10000],
  517. ["cl3_lamborghini_gt1_red",10000],
  518. ["cl3_lamborghini_gt1_purple",10000],
  519. ["cl3_lamborghini_gt1_white",10000],
  520. ["cl3_murcielago_black",100000],
  521. ["cl3_murcielago_red",100000],
  522. ["cl3_murcielago_orange",10000],
  523. ["cl3_carrera_gt_black",10000],
  524. ["cl3_carrera_gt_grey",10000],
  525. ["cl3_carrera_gt_white",100000],
  526. ["cl3_range_rover_dark_green",10000],
  527. ["cl3_range_rover_marina_blue",10000],
  528. ["cl3_range_rover_black",10000],
  529. ["cl3_impreza_rally_yellow",10000],
  530. ["cl3_impreza_rally_babypink",10000],
  531. ["l3_impreza_rally_orange",10000],
  532. ["cl3_impreza_road_black",10000],
  533. ["cl3_impreza_road_navy_blue",10000],
  534. ["cl3_impreza_road_camo",10000],
  535. ["cl3_insignia_blue",10000],
  536. ["cl3_insignia_cardinal",10000],
  537. ["cl3_insignia_lavender",10000]
  538.  
  539. ];
  540. __CONST__(life_garage_prices,life_garage_prices);
  541.  
  542. life_garage_sell =
  543. [
  544. ["B_Quadbike_01_F",250],
  545. ["C_Hatchback_01_F",2500],
  546. ["C_Offroad_01_F", 4500],
  547. ["B_G_Offroad_01_F",3500],
  548. ["C_SUV_01_F",10000],
  549. ["C_Van_01_transport_F",20000],
  550. ["C_Hatchback_01_sport_F",7500],
  551. ["C_Van_01_fuel_F",3850],
  552. ["I_Heli_Transport_02_F",125000],
  553. ["C_Van_01_box_F",35000],
  554. ["I_Truck_02_transport_F",49800],
  555. ["I_Truck_02_covered_F",62000],
  556. ["B_Truck_01_transport_F",135000],
  557. ["B_Truck_01_box_F", 150000],
  558. ["O_MRAP_02_F",65000],
  559. ["B_Heli_Light_01_F",57000],
  560. ["O_Heli_Light_02_unarmed_F",72500],
  561. ["C_Rubberboat",950],
  562. ["C_Boat_Civil_01_F",6800],
  563. ["B_Boat_Transport_01_F",850],
  564. ["C_Boat_Civil_01_police_F",4950],
  565. ["B_Boat_Armed_01_minigun_F",21000],
  566. ["B_SDV_01_F",45000],
  567. ["B_MRAP_01_F",10000],
  568. ["DAR_TahoePoliceDet",100000],
  569. ["cl3_chopper_gold",30000],
  570. ["cl3_chopper_silver",30000],
  571. ["cl3_chopper_blue",30000],
  572. ["cl3_chopper_red",30000],
  573. ["cl3_xr_1000_black",30000],
  574. ["cl3_xr_1000_babypink",30000],
  575. ["cl3_xr_1000_camo_urban",30000],
  576. ["cl3_xr_1000_flame2",30000],
  577. ["cl3_enduro_black",20000],
  578. ["cl3_enduro_burgundy",20000],
  579. ["cl3_enduro_lavender",20000],
  580. ["cl3_enduro_white",20000],
  581. ["cl3_volha_grey",15000],
  582. ["cl3_volha_black",15000],
  583. ["cl3_lada_red",25000],
  584. ["cl3_lada_white",25000],
  585. ["cl3_xlada_classic",25000],
  586. ["cl3_xlada_green",25000],
  587. ["RDS_S1203_Civ_01",25000],
  588. ["RDS_Octavia_Civ_01",30000],
  589. ["RDS_Lada_Civ_01",1000],
  590. ["RDS_Lada_Civ_02",5000],
  591. ["RDS_Lada_Civ_03",25000],
  592. ["RDS_Lada_Civ_04",35000],
  593. ["cl3_polo_gti_black",10000],
  594. ["cl3_polo_gti_red",10000],
  595. ["cl3_polo_gti_silver",10000],
  596. ["cl3_polo_gti_camo",10000],
  597. ["cl3_polo_gti_babypink",10000],
  598. ["cl3_golf_mk2_gold",10000],
  599. ["cl3_golf_mk2_red",10000],
  600. ["cl3_golf_mk2_black",10000],
  601. ["cl3_golf_mk2_white",10000],
  602. ["cl3_440cuda_blue_flame",10000],
  603. ["cl3_440cuda_emt_chief",10000],
  604. ["cl3_440cuda_black",10000],
  605. ["cl3_440cuda_flannery14",10000],
  606. ["cl3_civic_vti_aqua",10000],
  607. ["cl3_civic_vti_burgundy",10000],
  608. ["cl3_civic_vti_gold",10000],
  609. ["cl3_civic_vti_blue",10000],
  610. ["cl3_civic_vti_black",10000],
  611. ["cl3_civic_vti_violet",10000],
  612. ["cl3_suv_black",10000],
  613. ["cl3_discovery_blac",40000],
  614. ["cl3_discovery_hellokitty",4000],
  615. ["cl3_discovery_darkorange",4000],
  616. ["cl3_jurassicpark",10000],
  617. ["beetle_coci",10000],
  618. ["beetle_camo",10000],
  619. ["cl3_challenger_beige",20000],
  620. ["cl3_challenger_brown",20000],
  621. ["cl3_challenger_lime",20000],
  622. ["cl3_challenger_red",20000]
  623. ["cl3_challenger_beige",10000],
  624. ["cl3_challenger_brown",10000],
  625. ["cl3_challenger_lime",10000],
  626. ["cl3_challenger_red",10000],
  627. ["cl3_reventon_teuil",3000],
  628. ["cl3_veyron_lblue_dblue",50000],
  629. ["cl3_veyron_black",50000],
  630. ["cl3_veyron_blk_wht",50000],
  631. ["Skyline_Mercedes_C63_01_F",10000],
  632. ["Skyline_Mercedes_C63_02_F",10000],
  633. ["cl3_dodge_chargerum_f_black",15000],
  634. ["cl3_dodge_chargerum_f_pink",15000],
  635. ["cl3_dodge_chargerum_f_darkred",15000],
  636. ["cl3_dodge_charger_f_lime",15000],
  637. ["cl3_dodge_charger_f_purple",15000],
  638. ["cl3_dodge_charger_f_white",15000],
  639. ["cl3_dbs_volante_black",30000],
  640. ["cl3_dbs_volante_burgundy",30000],
  641. ["cl3_dbs_volante_sand",30000],
  642. ["cl3_q7_cardinal",10000],
  643. ["cl3_q7_gold",10000],
  644. ["cl3_q7_camo",10000],
  645. ["l3_r8_spyder_black",10000],
  646. ["cl3_r8_spyder_red",10000],
  647. ["cl3_r8_spyder_dark_green",10000],
  648. ["cl3_s5_blue",10000],
  649. ["cl3_s5_green",100000],
  650. ["cl3_s5_marina_blue",10000],
  651. ["cl3_e60_m5_black",10000],
  652. ["cl3_e60_m5_grey",10000],
  653. ["cl3_e60_m5_purple",10000],
  654. ["cl3_z4_2008_black",10000],
  655. ["cl3_z4_2008_lavender",10000],
  656. ["cl3_z4_2008_sand",10000],
  657. ["cl3_escalade_burgundy_uc",10000],
  658. ["cl3_escalade_lime_uc",10000],
  659. ["cl3_escalade_silver_uc",10000],
  660. ["cl3_458_black",10000],
  661. ["cl3_458_gold",10000],
  662. ["cl3_458_navy_blue",10000],
  663. ["cl3_crown_victoria_yellow",10000],
  664. ["cl3_crown_victoria_red",10000],
  665. ["cl3_crown_victoria_grey",10000],
  666. ["cl3_taurus_black",10000],
  667. ["cl3_taurus_grey",10000],
  668. ["cl3_taurus_lime",10000],
  669. ["cl3_aventador_lp7004",10000],
  670. ["cl3_aventador_lp7004_green",10000],
  671. ["cl3_aventador_lp7004_flame2",10000],
  672. ["cl3_lamborghini_gt1_red",10000],
  673. ["cl3_lamborghini_gt1_purple",10000],
  674. ["cl3_lamborghini_gt1_white",10000],
  675. ["cl3_murcielago_black",100000],
  676. ["cl3_murcielago_red",100000],
  677. ["cl3_murcielago_orange",10000],
  678. ["cl3_carrera_gt_black",10000],
  679. ["cl3_carrera_gt_grey",10000],
  680. ["cl3_carrera_gt_white",100000],
  681. ["cl3_range_rover_dark_green",10000],
  682. ["cl3_range_rover_marina_blue",10000],
  683. ["cl3_range_rover_black",10000],
  684. ["cl3_impreza_rally_yellow",10000],
  685. ["cl3_impreza_rally_babypink",10000],
  686. ["l3_impreza_rally_orange",10000],
  687. ["cl3_impreza_road_black",10000],
  688. ["cl3_impreza_road_navy_blue",10000],
  689. ["cl3_impreza_road_camo",10000],
  690. ["cl3_insignia_blue",10000],
  691. ["cl3_insignia_cardinal",10000],
  692. ["cl3_insignia_lavender",10000]
  693. ];
  694. __CONST__(life_garage_sell,life_garage_sell);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement