Advertisement
Guest User

Untitled

a guest
May 17th, 2018
119
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
SQF 105.41 KB | None | 0 0
  1. span class="re5"> class 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.     *   OPFOR Vehicle classnames can be found here: https://community.bistudio.com/wiki/Arma_3_CfgVehicles_EAST
  15.     *   BLUFOR Vehicle classnames can be found here: https://community.bistudio.com/wiki/Arma_3_CfgVehicles_WEST
  16.     *   OPFOR Vehicle classnames can be found here: https://community.bistudio.com/wiki/Arma_3_CfgVehicles_EAST
  17.     *   Independent Vehicle classnames can be found here: https://community.bistudio.com/wiki/Arma_3_CfgVehicles_GUER
  18.     *   Civilian Vehicle classnames can be found here: https://community.bistudio.com/wiki/Arma_3_CfgVehicles_CIV
  19.     */
  20. class civ_car {
  21.         side = "civ";
  22.         conditions = "license_civ_driver";
  23.         vehicles[] = {
  24.             { "LB_Ursus_Traktor", "" },
  25.             { "Jonzie_Galant", "" },
  26.             { "Jonzie_Datsun_510", "" },
  27.             { "Jonzie_30CSL", "" },
  28.             { "ivory_190e", "" },
  29.             { "a3mt_Impala_1996_01", "" },
  30.             { "LB_VW_SciroccoS_81", "" },
  31.             { "CadillacEldorado1959_Blue", "" },
  32.             { "CadillacEldorado1959_Red", "" },
  33.             { "CadillacEldorado1959_White", "" },
  34.             { "CadillacEldorado1959_Green", "" },
  35.             { "CadillacEldorado1959_Black", "" },
  36.             { "Smart_Black", "" },
  37.             { "Smart_Blue", "" },
  38.             { "Smart_Red", "" },
  39.             { "Smart_White", "" },
  40.             { "Smart_Green", "" }
  41.         };
  42.     };
  43.  
  44.     class justice_car {
  45.       side = "doj";
  46.       conditions = "";
  47.       vehicles[] = {
  48.         { "a3mt_Impala_1996_DOJ", "" },
  49.         { "Chevrolet_Camaro_ZL1_13_Custome", "" },
  50.         { "Chevrolet_Tahoe_2015_Custome", ""},
  51.         { "A3F_Benz_S65_AMG_Black", ""},
  52.         { "Porsche_Cayenne_12_Black", ""}
  53.       };
  54.     };
  55.  
  56.     class tuning_shop {
  57.       side = "civ";
  58.       conditions = "license_civ_tuner";
  59.       vehicles[] = {
  60.       { "a3mt_BusLackbude", "" },
  61.       { "a3mt_Honda_T01", "" },
  62.       { "a3mt_Honda_T02", "" },
  63.       { "LB_Hot_Rod", "" },
  64.       { "LB_Hot_Rod_01", "" },
  65.       { "LB_BMW_M3_E30_V2_S", "license_civ_tuner_inhaber" },
  66.       { "LB_BMW_M3_E30_V2", "" },
  67.       { "LB_Chev_C10_custom_made", "" },
  68.       { "LB_Chev_C10_custom_made_V2", "" },
  69.       { "LB_Chev_C10_custom_made_V3", ""}
  70.     };
  71.   };
  72.     class civ_RL {
  73.         side = "civ";
  74.         conditions = "license_civ_driver && license_civ_RLBiker";
  75.         vehicles[] = {
  76.             { "red_kawasaki_10_black_v4", "" },
  77.             { "red_kawasaki_10_black_v5", "" },
  78.             { "red_kawasaki_10_black_v3", "" },
  79.             { "red_kawasaki_10_white_v2", "" },
  80.             { "red_kawasaki_10_black_v2", "" },
  81.             { "red_kawasaki_10_white_v3", "" },
  82.             { "red_kawasaki_10_white_v4", "" },
  83.             { "red_kawasaki_10_black", "" },
  84.             { "red_kawasaki_10_white", "" },
  85.             { "red_kawasaki_10_white_v5", "" }
  86.         };
  87.     };
  88.  
  89.     class civ_neu {
  90.         side = "civ";
  91.         conditions = "license_civ_driver";
  92.         vehicles[] = {
  93.           { "A3F_Impala_SS_67_Black", "" },
  94.           { "A3F_Impala_SS_67_Blue", "" },
  95.           { "A3F_Impala_SS_67_Green", "" },
  96.           { "A3F_Impala_SS_67_Red", "" },
  97.           { "A3F_Impala_SS_67_White", "" },
  98.             /* { "Ford_Fusion_2010_Black", "" }, //FEHLERHAFT
  99.             { "Ford_Fusion_2010_Blue", "" }, FEHLERHAFT
  100.             { "Ford_Fusion_2010_Red", "" }, FEHLERHAFT
  101.             { "Ford_Fusion_2010_White", "" }, FEHLERHAFT
  102.             { "Ford_Fusion_2010_Green", "" }, FEHLERHAFT */
  103.             { "ivory_gti", "" },
  104.             { "Jonzie_VE", "" },
  105.             { "ivory_rs4", "" },
  106.             { "ivory_isf", "" },
  107.             { "ivory_lfa", "" },
  108.             { "ivory_evox", "" },
  109.             { "ivory_r34", "" },
  110.             { "ivory_wrx", "" },
  111.             { "red_genesis_16_black", "" },
  112.             { "red_genesis_16_aqua", "" },
  113.             { "red_genesis_16_darkblue", "" },
  114.             { "red_genesis_16_green", "" },
  115.             { "red_genesis_16_red", "" },
  116.             { "red_genesis_16_pink", "" },
  117.             { "red_genesis_16_yellow", "" },
  118.             { "red_genesis_16_orange", "" },
  119.             { "red_genesis_16_white", "" },
  120.             { "red_genesis_16_purple", "" },
  121.             { "red_genesis_16_darkgreen", "" },
  122.             { "red_genesis_16_darkred", "" },
  123.             { "red_gs350_13_black", "" },
  124.       { "LB_BMW_M3_E30", "" },
  125.       { "A3F_BMW_M5_F10_12_Black", "" },
  126.       { "A3F_BMW_M5_F10_12_Blue", "" },
  127.       { "A3F_BMW_M5_F10_12_Red", "" },
  128.       { "A3F_BMW_M5_F10_12_White", "" },
  129.       { "A3F_BMW_M5_F10_12_Green", "" },
  130.       { "A3F_BMW_M5_F10_12_Silver", "" }
  131.         };
  132.     };
  133.     class civ_dodge { //fertig
  134.         side = "civ";
  135.         conditions = "license_civ_driver";
  136.         vehicles[] = {
  137.           { "A3F_Charger_RT_12_Black", "" },
  138.           { "A3F_Charger_RT_12_Blue", "" },
  139.           { "A3F_Charger_RT_12_Green", "" },
  140.           { "A3F_Charger_RT_12_Red", "" },
  141.           { "A3F_Charger_RT_12_White", "" },
  142.           { "Dodge_Charger_SRT8_2016_Green", "" },
  143.           { "Dodge_Charger_SRT8_2016_Black", "" },
  144.           { "Dodge_Charger_SRT8_2016_Blue", "" },
  145.           { "Dodge_Charger_SRT8_2016_White", "" },
  146.           { "Dodge_Charger_06_Black", "" },
  147.           { "Dodge_Charger_06_Blue", "" },
  148.           { "Dodge_Charger_06_Red", "" },
  149.           { "Dodge_Charger_06_White", "" },
  150.           { "Dodge_Charger_06_Green", "" },
  151.           { "A3F_Charger_RT_15_Green", "" },
  152.           { "A3F_Charger_RT_15_White", "" },
  153.           { "A3F_Charger_RT_15_Red", "" },
  154.           { "A3F_Charger_RT_15_Blue", "" },
  155.           { "A3F_Charger_RT_15_Black", "" },
  156.           { "red_challenger_15_black", "" },
  157.           { "red_challenger_15_aqua", "" },
  158.           { "red_challenger_15_green", "" },
  159.           { "red_challenger_15_red", "" },
  160.           { "red_challenger_15_pink", "" },
  161.           { "red_challenger_15_yellow", "" },
  162.           { "red_challenger_15_orange", "" },
  163.           { "red_challenger_15_white", "" },
  164.           { "red_challenger_15_purple", "" },
  165.           { "red_challenger_15_darkgreen", "" },
  166.           { "red_challenger_15_darkred", "" },
  167.           { "red_challenger_15_blue", "" }
  168.         };
  169.     };
  170.     class civ_sport {
  171.         side = "civ";
  172.         conditions = "license_civ_driver";
  173.         vehicles[] = {
  174.           { "ivory_f1", "" },
  175.           { "red_venomgt_11_black", "" },
  176.           { "red_venomgt_11_aqua", "" },
  177.           { "red_venomgt_11_green", "" },
  178.           { "red_venomgt_11_red", "" },
  179.           { "red_venomgt_11_pink", "" },
  180.           { "red_venomgt_11_yellow", "" },
  181.           { "red_venomgt_11_orange", "" },
  182.           { "red_venomgt_11_white", "" },
  183.           { "red_venomgt_11_purple", "" },
  184.           { "red_venomgt_11_darkgreen", "" },
  185.           { "red_venomgt_11_darkred", "" },
  186.           { "Jonzie_Viper", "" },
  187.           { "A3F_Benz_C63_Blue", "" },
  188.           { "A3F_Benz_C63_Black", "" },
  189.           { "A3F_Benz_C63_Green", "" },
  190.           { "A3F_Benz_C63_Red", "" },
  191.           { "A3F_Benz_CLS_19_Silver", "" },
  192.           { "A3F_Benz_CLS_19_Black", "" },
  193.           { "A3F_Benz_CLS_19_Blue", "" },
  194.           { "A3F_Benz_CLS_19_Red", "" },
  195.           { "A3F_Benz_CLS_19_White", "" },
  196.           { "A3F_Benz_CLS_19_Green", "" },
  197.           { "A3F_911_GT2_12_Black", "" },
  198.           { "A3F_911_GT2_12_Blue", "" },
  199.           { "A3F_911_GT2_12_Red", "" },
  200.           { "A3F_911_GT2_12_White", "" },
  201.           { "A3F_911_GT2_12_Green", "" },
  202.           { "A3F_911_GT2_12_Silver", "" },
  203.           { "Jaguar_XKRS_12_Black", "" },
  204.           { "Jaguar_XKRS_12_Blue", "" },
  205.           { "Jaguar_XKRS_12_Red", "" },
  206.           { "Jaguar_XKRS_12_White", "" },
  207.           { "Jaguar_XKRS_12_Green", "" }
  208.         };
  209.     };
  210.  
  211.     class civ_luxus {
  212.         side = "civ";
  213.         conditions = "license_civ_driver";
  214.         vehicles[] = {
  215.           { "IVORY_R8", "" },
  216.           { "A3F_Benz_S65_AMG_Black", "" },
  217.           { "A3F_Benz_S65_AMG_Blue", "" },
  218.           { "A3F_Benz_S65_AMG_Red", "" },
  219.           { "A3F_Benz_S65_AMG_White", "" },
  220.           { "A3F_Benz_S65_AMG_Green", "" },
  221.           { "A3F_TT_RS_10_Black", "" },
  222.           { "A3F_TT_RS_10_Blue", "" },
  223.           { "A3F_TT_RS_10_Red", "" },
  224.           { "A3F_TT_RS_10_White", "" },
  225.           { "A3F_TT_RS_10_Green", "" },
  226.           { "A3F_TT_RS_10_Silver", "" },
  227.           { "A3F_TT_RS_10_Purple", "" },
  228.           { "Nissan_370Z_Black", "" },
  229.           { "Nissan_370Z_Blue", "" },
  230.           { "Nissan_370Z_Red", "" },
  231.           { "Nissan_370Z_White", "" },
  232.           { "Nissan_370Z_Green", "" },
  233.           { "Aston_Martin_Vanquish_13_Green", "" },
  234.           { "Aston_Martin_Vanquish_13_Black", "" },
  235.           { "Aston_Martin_Vanquish_13_Blue", "" },
  236.           /* { "Aston_Martin_Vanquish_13_White", "" }, FEHLERHAFT */
  237.           /* { "Aston_Martin_Vanquish_13_Yellow", "" }, FEHLERHAFT */
  238.           { "A3F_Camaro_12_Black", "" },
  239.           { "A3F_Camaro_12_Blue", "" },
  240.           { "A3F_Camaro_12_Red", "" },
  241.           { "A3F_Camaro_12_White", "" },
  242.           { "A3F_Camaro_12_Green", "" },
  243.           { "A3F_Camaro_12_Silver", "" },
  244.           { "A3F_Camaro_12_Purple", "" },
  245.           { "A3F_Camaro_12_Yellow", "" },
  246.           { "red_panamera_10_black", "" },
  247.           { "red_panamera_10_aqua", "" },
  248.           { "red_panamera_10_green", "" },
  249.           { "red_panamera_10_red", "" },
  250.           { "red_panamera_10_pink", "" },
  251.           { "red_panamera_10_yellow", "" },
  252.           { "red_panamera_10_orange", "" },
  253.           { "red_panamera_10_white", "" },
  254.           { "red_panamera_10_purple", "" },
  255.           { "red_panamera_10_darkgreen", "" },
  256.           { "red_panamera_10_darkred", "" },
  257.           { "Porsche_Cayenne_12_Black", "" },
  258.           { "Porsche_Cayenne_12_Blue", "" },
  259.           { "Porsche_Cayenne_12_Red", "" },
  260.           { "Porsche_Cayenne_12_White", "" },
  261.           { "Porsche_Cayenne_12_Green", "" },
  262.           { "Porsche_Cayenne_12_Custome", "" },
  263.           { "Mercedes_Benz_SL65_Black", "" },
  264.           { "Mercedes_Benz_SL65_Blue", "" },
  265.           { "Mercedes_Benz_SL65_Red", "" },
  266.           { "Mercedes_Benz_SL65_White", "" },
  267.           { "Mercedes_Benz_SL65_Green", "" },
  268.           { "BMW_X6_Black", "" },
  269.           { "BMW_X6_Blue", "" },
  270.           { "BMW_X6_Red", "" },
  271.           { "BMW_X6_White", "" },
  272.           { "BMW_X6_Green", "" }
  273.         };
  274.     };
  275.  
  276.     class civ_suv {
  277.         side = "civ";
  278.         conditions = "license_civ_driver";
  279.         vehicles[] = {
  280.           { "Jonzie_Raptor", "" },
  281.           { "A3F_Escalade_12_Black", "" },
  282.           { "A3F_Escalade_12_Blue", "" },
  283.           { "A3F_Escalade_12_Red", "" },
  284.           { "A3F_Escalade_12_White", "" },
  285.           { "A3F_Escalade_12_Green", "" },
  286.           { "A3F_Escalade_12_Silver", "" },
  287.           { "A3F_Escalade_12_Purple", "" },
  288.           { "ivory_suburban", "" },
  289.           { "Dodge_Ram_SRT10_Black", "" },
  290.           { "Dodge_Ram_SRT10_Blue", "" },
  291.           { "Dodge_Ram_SRT10_Red", "" },
  292.           { "Dodge_Ram_SRT10_White", "" },
  293.           { "Dodge_Ram_SRT10_Green", "" },
  294.           { "red_explorer_16_black", "" },
  295.           { "red_explorer_16_aqua", "" },
  296.           { "red_explorer_16_darkblue", "" },
  297.           { "red_explorer_16_green", "" },
  298.           { "red_explorer_16_red", "" },
  299.           { "red_explorer_16_pink", "" },
  300.           { "red_explorer_16_yellow", "" },
  301.           { "red_explorer_16_orange", "" },
  302.           { "red_explorer_16_white", "" },
  303.           { "red_explorer_16_purple", "" },
  304.           { "red_explorer_16_darkgreen", "" },
  305.           { "red_explorer_16_darkred", "" },
  306.           { "red_explorer_16_blue", "" },
  307.           { "Chevrolet_Tahoe_2015_Black", "" },
  308.           { "Chevrolet_Tahoe_2015_Blue", "" },
  309.           { "Chevrolet_Tahoe_2015_Red", "" },
  310.           { "Chevrolet_Tahoe_2015_White", "" },
  311.           { "Chevrolet_Tahoe_2015_Green", "" },
  312.           { "Chevrolet_Tahoe_2015_Orange", "" },
  313.           { "A3F_Ford_Raptor_17_Blue", "" },
  314.           { "A3F_Ford_Raptor_17_Black", "" },
  315.           { "A3F_Ford_Raptor_17_Orange", "" },
  316.           { "A3F_Ford_Raptor_17_Green", "" },
  317.           { "A3F_Ford_Raptor_17_Red", "" },
  318.           { "Ford_F350_XLT_SuperDuty_Black", "" },
  319.           { "Ford_F350_XLT_SuperDuty_Blue", "" },
  320.           { "Ford_F350_XLT_SuperDuty_Red", "" },
  321.           { "Ford_F350_XLT_SuperDuty_White", "" },
  322.           { "Ford_F350_XLT_SuperDuty_Green", "" },
  323.           { "A3F_X5_11_Black", "" },
  324.           { "A3F_X5_11_Blue", "" },
  325.           { "A3F_X5_11_Red", "" },
  326.           { "A3F_X5_11_White", "" },
  327.           { "A3F_X5_11_Green", "" }
  328.         };
  329.     };
  330.  
  331.     class civ_old {
  332.         side = "civ";
  333.         conditions = "license_civ_driver";
  334.         vehicles[] = {
  335.           { "red_challenger_15_black", "" },
  336.           { "red_challenger_15_aqua", "" },
  337.           { "red_challenger_15_green", "" },
  338.           { "red_challenger_15_red", "" },
  339.           { "red_challenger_15_pink", "" },
  340.           { "red_challenger_15_yellow", "" },
  341.           { "red_challenger_15_orange", "" },
  342.           { "red_challenger_15_white", "" },
  343.           { "red_challenger_15_purple", "" },
  344.           { "red_challenger_15_darkgreen", "" },
  345.           { "red_challenger_15_darkred", "" },
  346.           { "red_challenger_15_blue", "" }
  347.         };
  348.     };
  349.  
  350.     class kart_shop {
  351.         side = "civ";
  352.         conditions = "license_civ_driver";
  353.         vehicles[] = {
  354.             { "C_Kart_01_Blu_F", "" },
  355.             { "C_Kart_01_Fuel_F", "" },
  356.             { "C_Kart_01_Red_F", "" },
  357.             { "C_Kart_01_Vrana_F", "" }
  358.         };
  359.     };
  360.  
  361.     class civ_truck {
  362.         side = "civ";
  363.         conditions = "license_civ_trucking";
  364.         vehicles[] = {
  365.           { "GMC_Vandura_83_Custom_V1", "" },
  366.           { "GMC_Vandura_83_Custom_V2", "" },
  367.           { "GMC_Vandura_83_Custom_V3", "" },
  368.           { "Jonzie_Transit", "" },
  369.           { "GMC_C5500_Green", "" },
  370.           { "GMC_C5500_Black", "" },
  371.           { "GMC_C5500_Blue", "" },
  372.           { "GMC_C5500_White", "" },
  373.           { "GMC_C5500_Custom1", "" },
  374.           { "Jonzie_Box_Truck", "" },
  375.           { "Jonzie_Western", "" },
  376.           { "C_Van_01_fuel_F", "" },
  377.           { "I_Truck_02_fuel_F", "" },
  378.           { "Kenworth_T440_Box_Black", "" },
  379.           { "Kenworth_T440_Box_Blue", "" },
  380.           { "Kenworth_T440_Box_Red", "" },
  381.           //{ "Kenworth_T440_Box_White", "" },
  382.           //{ "Kenworth_T440_Box_Green", "" },
  383.           { "Jonzie_Tanker_Truck", "" }
  384.         };
  385.     };
  386.     class civ_mieten {
  387.         side = "civ";
  388.         conditions = "license_civ_driver";
  389.         vehicles[] = {
  390.           { "GMC_Vandura_83_Pizza_COSTUM_V1", "" },
  391.           { "GMC_Vandura_83_Pizza_COSTUM_V2", "" },
  392.           { "GMC_Vandura_83_Pizza_COSTUM_V3", "" },
  393.           { "GMC_Vandura_83_Delivery_Custom_V1", "" },
  394.           { "GMC_Vandura_83_Delivery_Custom_V2", "" },
  395.           { "GMC_Vandura_83_Delivery_Custom_V3", "" }
  396.         };
  397.     };
  398.  
  399.     class civ_air {
  400.         side = "civ";
  401.         conditions = "license_civ_pilot";
  402.         vehicles[] = {
  403.             { "C_Heli_Light_01_civil_F", "" },
  404.             { "O_Heli_Light_02_unarmed_F", "" },
  405.             { "EC635_Unarmed", "" }
  406.         };
  407.     };
  408.  
  409.     class civ_boat {
  410.         side = "civ";
  411.         conditions = "license_civ_boat";
  412.         vehicles[] = {
  413.             { "C_Rubberboat", "" },
  414.             { "C_Boat_Civil_01_F", "" },
  415.             { "sab_boat", "" },
  416.             /* { "sab_boat_2", "" }, */
  417.             { "sab_boat_3", "" },
  418.             { "sab_boat_4", "" },
  419.             { "sab_boat_5", "" },
  420.             { "B_SDV_01_F", "" },
  421.             { "C_Boat_Transport_02_F", "" }, //Apex DLC
  422.             { "C_Scooter_Transport_01_F", "" } //Apex DLC
  423.         };
  424.     };
  425.  
  426.     class reb_car {
  427.         side = "civ";
  428.         conditions = "license_civ_driver";
  429.         vehicles[] = {
  430.             { "2016Suburban_01", "" },
  431.             { "2016Suburban_02", "" },
  432.             { "2016Suburban_03", "" },
  433.             { "2016Suburban_04", "" },
  434.             { "2016Suburban_05", "" },
  435.             { "2016Suburban_06", "" },
  436.             { "2016Suburban_07", "" },
  437.             { "2016Suburban_08", "" },
  438.             { "2016Suburban_09", "" },
  439.             { "2016Suburban_10", "" },
  440.             { "2016Suburban_11", "" },
  441.             { "2016Suburban_12", "" },
  442.             { "2016Suburban_13", "" }
  443.             /*{ "B_Quadbike_01_F", "" },
  444.             { "B_G_Offroad_01_F", "" },
  445.             { "O_MRAP_02_F", "" },
  446.             { "B_Heli_Light_01_stripped_F", "" },
  447.             { "B_G_Offroad_01_armed_F", "" },
  448.             { "O_T_LSV_02_unarmed_F", "" } //Apex DLC*/
  449.         };
  450.     };
  451.  
  452.     class med_shop {
  453.         side = "med";
  454.         conditions = "";
  455.         vehicles[] = {
  456.                 { "Jonzie_Ambulance", "call life_mediclevel >= 2"},
  457.                 /* { "Dodge_Charger_SRT8_2016_Medic_V1", "call life_mediclevel >= 6"}, //new */
  458.                 { "Dodge_Charger_06_Medic_V1", "call life_mediclevel >= 5"}, //new
  459.                 /* { "Ford_Crown_Medic_V1", "call life_mediclevel >= 3"}, //new */
  460.                 { "Ford_Raptor_Medic_V1", "call life_mediclevel >= 4"}, //new
  461.                 { "GMC_Vandura_83_Technical_V1", "call life_mediclevel >= 2"},
  462.                 { "A3F_Chevrolet_Tahoe_2013_M_TL_V1", "call life_mediclevel >= 4"},
  463.                 { "A3F_Crown_10_M_TL_V1", "call life_mediclevel >= 3"},
  464.                 { "A3F_Ford_Taurus_M_TL_V1", "call life_mediclevel >= 6"},
  465.                 /* { "Porsche_Cayenne_12_Medic_V1", "call life_mediclevel >= 7"}, //new */
  466.                 /* { "Porsche_Cayenne_12_Medic_slicktop_V1", "call life_mediclevel >= 8"}, //new */
  467.                 /* { "Chevrolet_Tahoe_2015_Medic_V1", "call life_mediclevel >= 4"} //new */
  468.         };
  469.     };
  470.  
  471.     class med_air_hs {
  472.         side = "med";
  473.         conditions = "license_med_mAir"; //new
  474.         vehicles[] = {
  475.             { "B_Heli_Light_01_F", "call life_mediclevel >= 1" }, //new
  476.             { "EC635_EMS", "call life_mediclevel >= 3" } //new
  477.         };
  478.     };
  479.  
  480.     class cop_car {
  481.         side = "cop";
  482.         conditions = "";
  483.         vehicles[] = {
  484.           /* { "Dodge_Charger_SRT8_Hellcat_Police_V1", "call life_coplevel >= 4" }, //new */
  485.           { "Dodge_Charger_06_Police_V1", "call life_coplevel >= 2" }, //new
  486.           /* { "Chevrolet_Camaro_ZL1_Police_V1", "call life_coplevel >= 5" }, //new */
  487.           { "A3F_Crown_10_P_TL_V1", "call life_coplevel >= 1" }, //new
  488.           { "A3F_Chevrolet_Tahoe_2013_P_TL_V1", "call life_coplevel >= 2" }, //new
  489.           { "Ford_Raptor_Police_V1", "call life_coplevel >= 3" }, //new
  490.           { "A3F_Charger_RT_15_Police_V1", "call life_coplevel >= 4" }, //new
  491.           /* { "Chevrolet_Tahoe_2015_POLICE_V1", "call life_coplevel >= 2" }, //new */
  492.           { "A3F_Ford_Taurus_P_TL_V1", "call life_coplevel >= 2" }, //new
  493.           { "2016SuburbanPD_01", "call life_coplevel >= 4 && license_cop_Taktik" },
  494.           { "2016SuburbanUC_13", "call life_coplevel >= 4 && license_cop_Taktik" }
  495.         };
  496.     };
  497.  
  498.     class cop_state {
  499.         side = "cop";
  500.         conditions = "license_cop_state";
  501.         vehicles[] = {
  502.           { "A3F_TT_RS_10_P_TL_V2", "call life_coplevel >= 5" }, //new
  503.           /* { "Dodge_Charger_SRT8_Hellcat_Police_V2", "call life_coplevel >= 4" }, //new */
  504.           { "Dodge_Charger_06_Police_V2", "call life_coplevel >= 3" }, //new
  505.           /* { "Chevrolet_Camaro_ZL1_Police_V2", "call life_coplevel >= 4" }, //new */
  506.           { "A3F_Crown_10_P_TL_V2", "call life_coplevel >= 1" }, //new
  507.           { "A3F_Chevrolet_Tahoe_2013_P_TL_V2", "call life_coplevel >= 1" }, //new
  508.           { "Ford_Raptor_Police_V2", "call life_coplevel >= 3" }, //new
  509.           /* { "Chevrolet_Tahoe_2015_POLICE_V2", "call life_coplevel >= 2" }, //new */
  510.           { "A3F_Charger_RT_15_Police_V2", "call life_coplevel >= 4" }, //new
  511.           { "Dodge_Charger_06_Unmarked_V1", "call life_coplevel >= 3" }, //new
  512.           { "Porsche_Cayenne_12_Police_unmarked_V1", "call life_coplevel >= 3" }, //new
  513.           /* { "Ford_Crown_Unmarked_V1", "call life_coplevel >= 3" }, //new */
  514.           { "A3F_Ford_Taurus_P_TL_V2", "call life_coplevel >= 3" }, //new
  515.           { "A3F_Charger_RT_12_Black", "" },
  516.           { "A3F_Charger_RT_12_Blue", "" },
  517.           { "A3F_Charger_RT_12_Green", "" },
  518.           { "A3F_Charger_RT_12_Red", "" },
  519.           { "A3F_Charger_RT_12_White", "" },
  520.           { "Dodge_Charger_SRT8_2016_Green", "" },
  521.           { "Dodge_Charger_SRT8_2016_Black", "" },
  522.           { "Dodge_Charger_SRT8_2016_Blue", "" },
  523.           { "Dodge_Charger_SRT8_2016_White", "" },
  524.           { "2016SuburbanPD_01", "" },
  525.           { "Abruzzi_LencoPD_01", "" },
  526.           { "2016SuburbanUC_13", "" }
  527.         };
  528.     };
  529.  
  530.     class cop_FBI {
  531.         side = "cop";
  532.         conditions = "license_cop_fbi";
  533.         vehicles[] = {
  534.           { "A3F_TT_RS_10_P_TL_V3", "call life_coplevel >= 5" },
  535.           /* { "Dodge_Charger_SRT8_Hellcat_Police_V3", "call life_coplevel >= 4" }, */
  536.           { "Dodge_Charger_06_Police_V3", "call life_coplevel >= 3" },
  537.           /* { "Chevrolet_Camaro_ZL1_Police_V3", "call life_coplevel >= 5" }, */
  538.           { "A3F_Crown_10_P_TL_V3", "call life_coplevel >= 1" },
  539.           { "A3F_Chevrolet_Tahoe_2013_P_TL_V3", "call life_coplevel >= 1" },
  540.           { "Ford_Raptor_Police_V3", "call life_coplevel >= 3" },
  541.           { "A3F_Ford_Taurus_P_TL_V3", "call life_coplevel >= 3" },
  542.           /* { "Chevrolet_Tahoe_2015_POLICE_V3", "call life_coplevel >= 2" }, */
  543.           { "Dodge_Charger_06_Unmarked_V1", "call life_coplevel >= 3" },
  544.           { "Chevrolet_Tahoe_2015_Black", "call life_coplevel >= 3" },
  545.           { "Porsche_Cayenne_12_Police_unmarked_V1", "call life_coplevel >= 3" },
  546.           { "A3F_Charger_RT_15_Police_V3", "call life_coplevel >= 3" },
  547.           /* { "Ford_Crown_Unmarked_V1", "call life_coplevel >= 3" }, */
  548.           { "Aston_Martin_Vanquish_13_Black", "call life_coplevel >= 3" },
  549.           { "A3F_F12_Berlinetta_Black", "call life_coplevel >= 3" },
  550.           { "A3F_X5_11_Black", "call life_coplevel >= 3" },
  551.           { "Mercedes_Benz_SL65_Black", "call life_coplevel >= 3" },
  552.           { "A3F_Charger_RT_12_Black", "" },
  553.           { "A3F_Charger_RT_12_Blue", "" },
  554.           { "A3F_Charger_RT_12_Green", "" },
  555.           { "A3F_Charger_RT_12_Red", "" },
  556.           { "A3F_Charger_RT_12_White", "" },
  557.           { "Dodge_Charger_SRT8_2016_Green", "" },
  558.           { "Dodge_Charger_SRT8_2016_Black", "" },
  559.           { "Dodge_Charger_SRT8_2016_Blue", "" },
  560.           { "Dodge_Charger_SRT8_2016_White", "" },
  561.           { "2016SuburbanUC_13", "call life_coplevel >= 4" },
  562.           { "2016SuburbanPD_01", "call life_coplevel >= 4" }
  563.         };
  564.     };
  565.  
  566.     class cop_air {
  567.         side = "cop";
  568.         conditions = "license_cop_cAir"; //new
  569.         vehicles[] = {
  570.           { "B_Heli_Light_01_F", "" },
  571.           { "EC635_Police", "call life_coplevel >= 4" },
  572.           { "MELB_MH6M", "call life_coplevel >= 3" }, //neu
  573.           { "NH90", "call life_coplevel >= 10" }, //neu
  574.           { "B_Heli_Transport_03_unarmed_F", "call life_coplevel >= 10" }, //neu
  575.           { "MELB_H6M", "call life_coplevel >= 3" } //neu
  576.         };
  577.     };
  578.  
  579.     class cop_ship {
  580.         side = "cop";
  581.         conditions = "";
  582.         vehicles[] = {
  583.             { "B_Boat_Transport_01_F", "" },
  584.             { "C_Boat_Civil_01_police_F", "" }
  585.             /* { "C_Boat_Transport_02_F", "" }, //Apex DLC */
  586.             /* { "B_Boat_Armed_01_minigun_F", "call life_coplevel >= 3" }, */
  587.             /* { "B_SDV_01_F", "" } */
  588.         };
  589.     };
  590.     class med_ship {
  591.         side = "cop";
  592.         conditions = "";
  593.         vehicles[] = {
  594.             { "B_Boat_Transport_01_F", "" }
  595.             /* { "C_Boat_Civil_01_police_F", "" }, */
  596.             /* { "C_Boat_Transport_02_F", "" }, //Apex DLC */
  597.             /* { "B_Boat_Armed_01_minigun_F", "call life_coplevel >= 3" }, */
  598.             /* { "B_SDV_01_F", "" } */
  599.         };
  600.     };
  601.  
  602.     class sharki {
  603.       side = "civ";
  604.       conditions = "license_civ_sharki";
  605.       vehicles[] = {
  606.         {"A3F_Benz_G65_AMG_Black", ""},
  607.         {"A3F_Benz_G65_AMG_Blue", ""},
  608.         {"A3F_Benz_G65_AMG_Red", ""},
  609.         {"A3F_Benz_G65_AMG_Green", ""},
  610.         {"A3F_Benz_G65_AMG_White", ""},
  611.         {"A3F_Benz_G65_AMG_Silver", ""},
  612.         {"A3F_Benz_G65_AMG_Purple", ""},
  613.         { "A3F_Crown_10_Black", "" },
  614.         { "A3F_Crown_10_White", "" },
  615.         { "A3F_Crown_10_Silver", "" },
  616.         { "A3F_Crown_10_Purple", "" },
  617.         { "A3F_Crown_10_Green", "" },
  618.         { "A3F_Crown_10_Red", "" },
  619.         { "A3F_Ford_Taurus_10_Black", "" },
  620.         { "A3F_Ford_Taurus_10_Blue", "" },
  621.         { "A3F_Ford_Taurus_10_Red", "" },
  622.         { "A3F_Ford_Taurus_10_White", "" },
  623.         { "A3F_Ford_Taurus_10_Green", "" },
  624.         { "A3F_Ford_Taurus_10_Silver", "" },
  625.         { "A3F_Ford_Taurus_10_Purple", "" },
  626.         { "A3F_Nissan_GTR_12_Black", "" },
  627.         { "A3F_Nissan_GTR_12_Blue", "" },
  628.         { "A3F_Nissan_GTR_12_Red", "" },
  629.         { "A3F_Nissan_GTR_12_White", "" },
  630.         { "A3F_Nissan_GTR_12_Silver", "" },
  631.         { "A3F_Nissan_GTR_12_Green", "" },
  632.         { "A3F_F12_Berlinetta_Black", "" },
  633.         { "A3F_F12_Berlinetta_Blue", "" },
  634.         { "A3F_F12_Berlinetta_Red", "" },
  635.         { "A3F_F12_Berlinetta_White", "" },
  636.         { "A3F_F12_Berlinetta_Green", "" },
  637.         { "A3F_Chevrolet_Tahoe_2013_Black", "" },
  638.         { "A3F_Chevrolet_Tahoe_2013_Red", "" },
  639.         { "A3F_Chevrolet_Tahoe_2013_Blue", "" },
  640.         { "A3F_Chevrolet_Tahoe_2013_White", "" },
  641.         { "A3F_Chevrolet_Tahoe_2013_Green", "" },
  642.         { "A3F_Chevrolet_Tahoe_2013_Silver", "" },
  643.         { "A3F_Chevrolet_Tahoe_2013_Purple", "" },
  644.         { "A3F_Corvette_Stingray_14_Black", "" },
  645.         { "A3F_Corvette_Stingray_14_Blue", "" },
  646.         { "A3F_Corvette_Stingray_14_Red", "" },
  647.         { "A3F_Corvette_Stingray_14_White", "" },
  648.         { "A3F_Corvette_Stingray_14_Green", "" },
  649.         { "A3F_Corvette_Stingray_14_Silver", "" },
  650.         { "Rolls_Royce_Dawn_Black", "" },
  651.         { "Rolls_Royce_Dawn_Blue", "" },
  652.         { "Rolls_Royce_Dawn_Red", "" },
  653.         { "Rolls_Royce_Dawn_White", "" },
  654.         { "Rolls_Royce_Dawn_Green", "" }
  655.       };
  656.     };
  657. };
  658. class LifeCfgVehicles {
  659.     class Default {
  660.         vItemSpace = -1;
  661.         conditions = "";
  662.         price = 1337;
  663.         textures[] = {};
  664.     };
  665.  
  666.  
  667.     /* A3F Fahrzeugliste */
  668.     class A3F_911_GT2_12 {
  669.       vItemSpace = 25;
  670.       conditions = "";
  671.       price = 350000;
  672.       textures[] = {};
  673.     };
  674.  
  675.     class A3F_911_GT2_12_Black  :   A3F_911_GT2_12 {};
  676.     class A3F_911_GT2_12_Blue   :   A3F_911_GT2_12 {};
  677.     class A3F_911_GT2_12_Red    :   A3F_911_GT2_12 {};
  678.     class A3F_911_GT2_12_White  :   A3F_911_GT2_12 {};
  679.     class A3F_911_GT2_12_Green  :   A3F_911_GT2_12 {};
  680.     class A3F_911_GT2_12_Silver :   A3F_911_GT2_12 {};
  681.  
  682.     class A3F_Benz_C63 {
  683.       vItemSpace = 40;
  684.       conditions = "";
  685.       price = 296000;
  686.       textures[] = {};
  687.     };
  688.  
  689.     class A3F_Benz_C63_Black  :   A3F_Benz_C63 {};
  690.     class A3F_Benz_C63_Blue   :   A3F_Benz_C63 {};
  691.     class A3F_Benz_C63_Red    :   A3F_Benz_C63 {};
  692.     class A3F_Benz_C63_White  :   A3F_Benz_C63 {};
  693.     class A3F_Benz_C63_Green  :   A3F_Benz_C63 {};
  694.     class A3F_Benz_C63_Silver :   A3F_Benz_C63 {};
  695.  
  696.     class A3F_Benz_G65_AMG {
  697.       vItemSpace = 20;
  698.       conditions = "";
  699.       price = 230000;
  700.       textures[] = {};
  701.     };
  702.  
  703.     class A3F_Benz_G65_AMG_Black    : A3F_Benz_G65_AMG {};
  704.     class A3F_Benz_G65_AMG_Blue     : A3F_Benz_G65_AMG {};
  705.     class A3F_Benz_G65_AMG_Red      : A3F_Benz_G65_AMG {};
  706.     class A3F_Benz_G65_AMG_Green    : A3F_Benz_G65_AMG {};
  707.     class A3F_Benz_G65_AMG_White    : A3F_Benz_G65_AMG {};
  708.     class A3F_Benz_G65_AMG_Silver   : A3F_Benz_G65_AMG {};
  709.     class A3F_Benz_G65_AMG_Purple   : A3F_Benz_G65_AMG {};
  710.  
  711.     class A3F_Benz_S65_AMG {
  712.       vItemSpace = 40;
  713.       conditions = '';
  714.       price = 250000;
  715.       textures[] = {};
  716.     };
  717.  
  718.     class A3F_Benz_S65_AMG_Black    : A3F_Benz_S65_AMG {};
  719.     class A3F_Benz_S65_AMG_Blue     : A3F_Benz_S65_AMG {};
  720.     class A3F_Benz_S65_AMG_Red      : A3F_Benz_S65_AMG {};
  721.     class A3F_Benz_S65_AMG_White    : A3F_Benz_S65_AMG {};
  722.     class A3F_Benz_S65_AMG_Green    : A3F_Benz_S65_AMG {};
  723.     class A3F_Benz_S65_AMG_Silver   : A3F_Benz_S65_AMG {};
  724.  
  725.     class A3F_Camaro_12 {
  726.       vItemSpace = 40;
  727.       conditions = '';
  728.       price = 80000;
  729.       textures[] = {};
  730.     };
  731.  
  732.     class A3F_Camaro_12_Black     : A3F_Camaro_12 {};
  733.     class A3F_Camaro_12_Blue      : A3F_Camaro_12 {};
  734.     class A3F_Camaro_12_Red       : A3F_Camaro_12 {};
  735.     class A3F_Camaro_12_White     : A3F_Camaro_12 {};
  736.     class A3F_Camaro_12_Green     : A3F_Camaro_12 {};
  737.     class A3F_Camaro_12_Silver    : A3F_Camaro_12 {};
  738.     class A3F_Camaro_12_Purple    : A3F_Camaro_12 {};
  739.     class A3F_Camaro_12_Custome   : A3F_Camaro_12 {};
  740.     class A3F_Camaro_12_Yellow    : A3F_Camaro_12 {};
  741.  
  742.     class A3F_Chevrolet_Tahoe_2013 {
  743.       vItemSpace = 40;
  744.       conditions = '';
  745.       price = 80000;
  746.       textures[] = {};
  747.     };
  748.  
  749.     class A3F_Chevrolet_Tahoe_2013_Black    : A3F_Chevrolet_Tahoe_2013 {};
  750.     class A3F_Chevrolet_Tahoe_2013_Red      : A3F_Chevrolet_Tahoe_2013 {};
  751.     class A3F_Chevrolet_Tahoe_2013_Blue     : A3F_Chevrolet_Tahoe_2013 {};
  752.     class A3F_Chevrolet_Tahoe_2013_White    : A3F_Chevrolet_Tahoe_2013 {};
  753.     class A3F_Chevrolet_Tahoe_2013_Green    : A3F_Chevrolet_Tahoe_2013 {};
  754.     class A3F_Chevrolet_Tahoe_2013_Silver   : A3F_Chevrolet_Tahoe_2013 {};
  755.     class A3F_Chevrolet_Tahoe_2013_Purple   : A3F_Chevrolet_Tahoe_2013 {};
  756.  
  757.     class A3F_Corvette_Stingray_14 {
  758.       vItemSpace = 30;
  759.       conditions = '';
  760.       price = 160000;
  761.       textures[] = {};
  762.     };
  763.  
  764.     class A3F_Corvette_Stingray_14_Black    : A3F_Corvette_Stingray_14 {};
  765.     class A3F_Corvette_Stingray_14_Blue     : A3F_Corvette_Stingray_14 {};
  766.     class A3F_Corvette_Stingray_14_Red      : A3F_Corvette_Stingray_14 {};
  767.     class A3F_Corvette_Stingray_14_White    : A3F_Corvette_Stingray_14 {};
  768.     class A3F_Corvette_Stingray_14_Green    : A3F_Corvette_Stingray_14 {};
  769.     class A3F_Corvette_Stingray_14_Silver   : A3F_Corvette_Stingray_14 {};
  770.  
  771.     class A3F_Crown_10 {
  772.       vItemSpace = 30;
  773.       conditions = '';
  774.       price = 60000;
  775.       textures[] = {};
  776.     };
  777.  
  778.     class A3F_Crown_10_Black    : A3F_Crown_10 {};
  779.     class A3F_Crown_10_Blue     : A3F_Crown_10 {};
  780.     class A3F_Crown_10_Red      : A3F_Crown_10 {};
  781.     class A3F_Crown_10_White    : A3F_Crown_10 {};
  782.     class A3F_Crown_10_Green    : A3F_Crown_10 {};
  783.     class A3F_Crown_10_Silver   : A3F_Crown_10 {};
  784.     class A3F_Crown_10_Purple   : A3F_Crown_10 {};
  785.  
  786.     class A3F_Escalade_12 {
  787.       vItemSpace = 30;
  788.       conditions = '';
  789.       price = 180000;
  790.       textures[] = {};
  791.     };
  792.  
  793.     class A3F_Escalade_12_Black     : A3F_Escalade_12 {};
  794.     class A3F_Escalade_12_Blue      : A3F_Escalade_12 {};
  795.     class A3F_Escalade_12_Red       : A3F_Escalade_12 {};
  796.     class A3F_Escalade_12_White     : A3F_Escalade_12 {};
  797.     class A3F_Escalade_12_Green     : A3F_Escalade_12 {};
  798.     class A3F_Escalade_12_Silver    : A3F_Escalade_12 {};
  799.     class A3F_Escalade_12_Purple    : A3F_Escalade_12 {};
  800.  
  801.     class A3F_F12_Berlinetta {
  802.       vItemSpace = 40;
  803.       conditions = '';
  804.       price = 370000;
  805.       textures[] = {};
  806.     };
  807.  
  808.     class A3F_F12_Berlinetta_Black    : A3F_F12_Berlinetta {};
  809.     class A3F_F12_Berlinetta_Blue     : A3F_F12_Berlinetta {};
  810.     class A3F_F12_Berlinetta_Red      : A3F_F12_Berlinetta {};
  811.     class A3F_F12_Berlinetta_White    : A3F_F12_Berlinetta {};
  812.     class A3F_F12_Berlinetta_Green    : A3F_F12_Berlinetta {};
  813.     class A3F_F12_Berlinetta_Silver   : A3F_F12_Berlinetta {};
  814.     class A3F_F12_Berlinetta_Purple   : A3F_F12_Berlinetta {};
  815.  
  816.     class A3F_Ford_Raptor_17 {
  817.       vItemSpace = 40;
  818.       conditions = '';
  819.       price = 160000;
  820.       textures[] = {};
  821.     };
  822.  
  823.     class A3F_Ford_Raptor_17_Black    : A3F_Ford_Raptor_17 {};
  824.     class A3F_Ford_Raptor_17_Blue     : A3F_Ford_Raptor_17 {};
  825.     class A3F_Ford_Raptor_17_Red      : A3F_Ford_Raptor_17 {};
  826.     class A3F_Ford_Raptor_17_White    : A3F_Ford_Raptor_17 {};
  827.     class A3F_Ford_Raptor_17_Green    : A3F_Ford_Raptor_17 {};
  828.     class A3F_Ford_Raptor_17_Silver   : A3F_Ford_Raptor_17 {};
  829.     class A3F_Ford_Raptor_17_Purple   : A3F_Ford_Raptor_17 {};
  830.     class A3F_Ford_Raptor_17_Orange   : A3F_Ford_Raptor_17 {};
  831.  
  832.     class A3F_Ford_Taurus_10 {
  833.       vItemSpace = 70;
  834.         conditions = '';
  835.         price = 40000;
  836.         textures[] = {};
  837.     };
  838.  
  839.     class A3F_Ford_Taurus_10_Black    : A3F_Ford_Taurus_10 {};
  840.     class A3F_Ford_Taurus_10_Blue     : A3F_Ford_Taurus_10 {};
  841.     class A3F_Ford_Taurus_10_Red      : A3F_Ford_Taurus_10 {};
  842.     class A3F_Ford_Taurus_10_White    : A3F_Ford_Taurus_10 {};
  843.     class A3F_Ford_Taurus_10_Green    : A3F_Ford_Taurus_10 {};
  844.     class A3F_Ford_Taurus_10_Silver   : A3F_Ford_Taurus_10 {};
  845.     class A3F_Ford_Taurus_10_Purple   : A3F_Ford_Taurus_10 {};
  846.  
  847.     class A3F_Nissan_GTR_12 {
  848.       vItemSpace = 30;
  849.       conditions = '';
  850.       price = 350000;
  851.       textures[] = {};
  852.     };
  853.  
  854.     class A3F_Nissan_GTR_12_Black   : A3F_Nissan_GTR_12 {};
  855.     class A3F_Nissan_GTR_12_Blue    : A3F_Nissan_GTR_12 {};
  856.     class A3F_Nissan_GTR_12_Red     : A3F_Nissan_GTR_12 {};
  857.     class A3F_Nissan_GTR_12_White   : A3F_Nissan_GTR_12 {};
  858.     class A3F_Nissan_GTR_12_Green   : A3F_Nissan_GTR_12 {};
  859.     class A3F_Nissan_GTR_12_Silver  : A3F_Nissan_GTR_12 {};
  860.  
  861.     class A3F_TT_RS_10 {
  862.       vItemSpace = 30;
  863.         conditions = '';
  864.         price = 90000;
  865.         textures[] = {};
  866.     };
  867.  
  868.     class A3F_TT_RS_10_Black    : A3F_TT_RS_10 {};
  869.     class A3F_TT_RS_10_Blue     : A3F_TT_RS_10 {};
  870.     class A3F_TT_RS_10_Red      : A3F_TT_RS_10 {};
  871.     class A3F_TT_RS_10_White    : A3F_TT_RS_10 {};
  872.     class A3F_TT_RS_10_Green    : A3F_TT_RS_10 {};
  873.     class A3F_TT_RS_10_Silver   : A3F_TT_RS_10 {};
  874.     class A3F_TT_RS_10_Purple   : A3F_TT_RS_10 {};
  875.  
  876.  
  877.  
  878.     /* Medickarren */
  879.     class A3F_Chevrolet_Tahoe_2013_M {
  880.       vItemSpace = 60;
  881.       conditions = '';
  882.       price = 8500;
  883.       textures[] = {};
  884.     };
  885.  
  886.     class A3F_Chevrolet_Tahoe_2013_M_TL_V1  : A3F_Chevrolet_Tahoe_2013_M {};
  887.  
  888.     class A3F_Crown_10_M {
  889.       vItemSpace = 60;
  890.       conditions = '';
  891.       price = 3120;
  892.       textures[] = {};
  893.     };
  894.  
  895.     class A3F_Crown_10_M_TL_V1              : A3F_Crown_10_M {};
  896.  
  897.     class A3F_Ford_Taurus_M {
  898.       vItemSpace = 60;
  899.       conditions = '';
  900.       price = 6512;
  901.       textures[] = {};
  902.     };
  903.  
  904.     class A3F_Ford_Taurus_M_TL_V1           : A3F_Ford_Taurus_M {};
  905.  
  906.     /* Polizeikarren */
  907.     class A3F_Ford_Taurus_P {
  908.       vItemSpace = 60;
  909.       conditions = '';
  910.       price = 8500;
  911.       textures[] = {};
  912.     };
  913.  
  914.     class A3F_Ford_Taurus_P_TL_V1 : A3F_Ford_Taurus_P {};
  915.     class A3F_Ford_Taurus_P_TL_V2 : A3F_Ford_Taurus_P {};
  916.     class A3F_Ford_Taurus_P_TL_V3 : A3F_Ford_Taurus_P {};
  917.  
  918.     class A3F_Crown_10_P_TL {
  919.       vItemSpace = 60;
  920.       conditions = '';
  921.       price = 4500;
  922.       textures[] = {};
  923.     };
  924.  
  925.     class A3F_Crown_10_P_TL_V1 : A3F_Crown_10_P_TL {};
  926.     class A3F_Crown_10_P_TL_V2 : A3F_Crown_10_P_TL {};
  927.     class A3F_Crown_10_P_TL_V3 : A3F_Crown_10_P_TL {};
  928.  
  929.     class A3F_Chevrolet_Tahoe_2013_P_TL {
  930.       vItemSpace = 60;
  931.       conditions = '';
  932.       price = 4500;
  933.       textures[] = {};
  934.     };
  935.  
  936.     class A3F_Chevrolet_Tahoe_2013_P_TL_V1 : A3F_Chevrolet_Tahoe_2013_P_TL {};
  937.     class A3F_Chevrolet_Tahoe_2013_P_TL_V2 : A3F_Chevrolet_Tahoe_2013_P_TL {};
  938.     class A3F_Chevrolet_Tahoe_2013_P_TL_V3 : A3F_Chevrolet_Tahoe_2013_P_TL {};
  939.  
  940.  
  941.  
  942.     class 2016SuburbanUC_13 {
  943.       vItemSpace = 35;
  944.       conditions = "";
  945.       price = 6500;
  946.       textures[] = {};
  947.     };
  948.  
  949.     class 2016SuburbanPD_01 : 2016SuburbanUC_13 {};
  950.  
  951.     class 2016Suburban_01 {
  952.       vItemSpace = 35;
  953.       conditions = "";
  954.       price = 1000000;
  955.       textures[] = {};
  956.     };
  957.  
  958.     class 2016Suburban_02 : 2016Suburban_01 {};
  959.     class 2016Suburban_03 : 2016Suburban_01 {};
  960.     class 2016Suburban_04 : 2016Suburban_01 {};
  961.     class 2016Suburban_05 : 2016Suburban_01 {};
  962.     class 2016Suburban_06 : 2016Suburban_01 {};
  963.     class 2016Suburban_07 : 2016Suburban_01 {};
  964.     class 2016Suburban_08 : 2016Suburban_01 {};
  965.     class 2016Suburban_09 : 2016Suburban_01 {};
  966.     class 2016Suburban_10 : 2016Suburban_01 {};
  967.     class 2016Suburban_11 : 2016Suburban_01 {};
  968.     class 2016Suburban_12 : 2016Suburban_01 {};
  969.     class 2016Suburban_13 : 2016Suburban_01 {};
  970.  
  971.     class Abruzzi_LencoPD_01 {
  972.       vItemSpace = 50;
  973.       conditions = "";
  974.       price = 10000;
  975.       textures[] = {};
  976.     };
  977.  
  978.     class A3F_Charger_RT_12_Black {
  979.         vItemSpace = 40;
  980.         conditions = '';
  981.         price = 53000;
  982.         textures[] = {};
  983.     };
  984.     class ivory_lp560 {
  985.         vItemSpace = 70;
  986.         conditions = '';
  987.         price = 200000;
  988.         textures[] = {};
  989.     };
  990.     class ivory_c {
  991.         vItemSpace = 30;
  992.         conditions = '';
  993.         price = 380000;
  994.         textures[] = {};
  995.     };
  996.     class ivory_veyron {
  997.         vItemSpace = 30;
  998.         conditions = '';
  999.         price = 400000;
  1000.         textures[] = {};
  1001.     };
  1002.     class A3F_Charger_RT_12_Blue : A3F_Charger_RT_12_Black {};
  1003.     class A3F_Charger_RT_12_Custome : A3F_Charger_RT_12_Black {};
  1004.     class A3F_Charger_RT_12_Green : A3F_Charger_RT_12_Black {};
  1005.     class A3F_Charger_RT_12_Red : A3F_Charger_RT_12_Black {};
  1006.     class A3F_Charger_RT_12_White : A3F_Charger_RT_12_Black {};
  1007.  
  1008.  
  1009.     class A3F_Impala_SS_67_Black {
  1010.         vItemSpace = 30;
  1011.         conditions = '';
  1012.         price = 57000;
  1013.         textures[] = {};
  1014.     };
  1015.  
  1016.     class A3F_Impala_SS_67_Blue : A3F_Impala_SS_67_Black {};
  1017.     class A3F_Impala_SS_67_Green : A3F_Impala_SS_67_Black {};
  1018.     class A3F_Impala_SS_67_Red : A3F_Impala_SS_67_Black {};
  1019.     class A3F_Impala_SS_67_White : A3F_Impala_SS_67_Black {};
  1020.     //A3F Police
  1021.     /*
  1022.     v1 = Sherrif
  1023.     v2 = State
  1024.     v3 = FBI
  1025.     */
  1026.     class Audi_TT_RS_2010_Police_V1 { //new
  1027.         vItemSpace = 50;
  1028.         conditions = "";
  1029.         price = 18000;
  1030.         textures[] = {};
  1031.     };
  1032.     class Audi_TT_RS_2010_Police_V2 : Audi_TT_RS_2010_Police_V1 {};
  1033.     class Audi_TT_RS_2010_Police_V3 : Audi_TT_RS_2010_Police_V1 {};
  1034.  
  1035.     class Dodge_Charger_SRT8_Hellcat_Police_V1 { //new
  1036.         vItemSpace = 50;
  1037.         conditions = "";
  1038.         price = 16000;
  1039.         textures[] = {};
  1040.     };
  1041.     class Dodge_Charger_SRT8_Hellcat_Police_V2 : Dodge_Charger_SRT8_Hellcat_Police_V1 {};
  1042.     class Dodge_Charger_SRT8_Hellcat_Police_V3 : Dodge_Charger_SRT8_Hellcat_Police_V1 {};
  1043.  
  1044.     class Dodge_Charger_06_Police_V1 { //new
  1045.         vItemSpace = 50;
  1046.         conditions = "";
  1047.         price = 10000;
  1048.         textures[] = {};
  1049.     };
  1050.     class Dodge_Charger_06_Police_V2 : Dodge_Charger_06_Police_V1 {};
  1051.     class Dodge_Charger_06_Police_V3 : Dodge_Charger_06_Police_V1 {};
  1052.  
  1053.     class Chevrolet_Camaro_ZL1_Police_V1 { //new
  1054.         vItemSpace = 50;
  1055.         conditions = "";
  1056.         price = 18000;
  1057.         textures[] = {};
  1058.     };
  1059.     class Chevrolet_Camaro_ZL1_Police_V2 : Chevrolet_Camaro_ZL1_Police_V1 {};
  1060.     class Chevrolet_Camaro_ZL1_Police_V3 : Chevrolet_Camaro_ZL1_Police_V1 {};
  1061.  
  1062.     class Ford_Crown_Police_V1 { //new
  1063.         vItemSpace = 50;
  1064.         conditions = "";
  1065.         price = 5000;
  1066.         textures[] = {};
  1067.     };
  1068.     class Ford_Crown_Police_V2 : Ford_Crown_Police_V1 {};
  1069.     class Ford_Crown_Police_V3 : Ford_Crown_Police_V1 {};
  1070.  
  1071.     class Ford_Raptor_Police_V1 { //new
  1072.         vItemSpace = 50;
  1073.         conditions = "";
  1074.         price = 10000;
  1075.         textures[] = {};
  1076.     };
  1077.     class Ford_Raptor_Police_V2 : Ford_Raptor_Police_V1 {};
  1078.     class Ford_Raptor_Police_V3 : Ford_Raptor_Police_V1 {};
  1079.  
  1080.     class Chevrolet_Tahoe_2015_POLICE_V1 { //new
  1081.         vItemSpace = 50;
  1082.         conditions = "";
  1083.         price = 8000;
  1084.         textures[] = {};
  1085.     };
  1086.     class Chevrolet_Tahoe_2015_POLICE_V2 : Chevrolet_Tahoe_2015_POLICE_V1 {};
  1087.     class Chevrolet_Tahoe_2015_POLICE_V3 : Chevrolet_Tahoe_2015_POLICE_V1 {};
  1088.     //unmarkt
  1089.     class Dodge_Charger_06_Unmarked_V1 { //new
  1090.         vItemSpace = 50;
  1091.         conditions = "";
  1092.         price = 10000;
  1093.         textures[] = {};
  1094.     };
  1095.     class Dodge_Charger_06_Unmarked_V2 : Dodge_Charger_06_Unmarked_V1 {};
  1096.     class Dodge_Charger_06_Unmarked_V3 : Dodge_Charger_06_Unmarked_V1 {};
  1097.     class Dodge_Charger_06_Unmarked_Custom : Dodge_Charger_06_Unmarked_V1 {};
  1098.  
  1099.     class Porsche_Cayenne_12_Police_unmarked_V1 { //new
  1100.         vItemSpace = 50;
  1101.         conditions = "";
  1102.         price = 18000;
  1103.         textures[] = {};
  1104.     };
  1105.  
  1106.  
  1107.     class Porsche_Cayenne_12_Police_unmarked_V2 : Porsche_Cayenne_12_Police_unmarked_V1 {};
  1108.     class Porsche_Cayenne_12_Police_unmarked_V3 : Porsche_Cayenne_12_Police_unmarked_V1 {};
  1109.  
  1110.     class LB_BMW_M3_E30 {
  1111.         vItemSpace = 40;
  1112.         conditions = "";
  1113.         price = 35000;
  1114.         textures[] = {};
  1115.     };
  1116.  
  1117.   class LB_BMW_M3_E30_V2 : LB_BMW_M3_E30 {};
  1118.   class LB_BMW_M3_E30_V2_S : LB_BMW_M3_E30 {};
  1119.   class LB_BMW_M3_E30_Cop : LB_BMW_M3_E30 {};
  1120.  
  1121.     class Ford_Crown_Unmarked_V1 { //new
  1122.         vItemSpace = 50;
  1123.         conditions = "";
  1124.         price = 5000;
  1125.         textures[] = {};
  1126.     };
  1127.     class Ford_Crown_Unmarked_V2 : Ford_Crown_Unmarked_V1 {};
  1128.     class Ford_Crown_Unmarked_V3 : Ford_Crown_Unmarked_V1 {};
  1129.     class Ford_Crown_Unmarked_Custom : Ford_Crown_Unmarked_V1 {};
  1130.  
  1131.     //A3F Medic Cars
  1132.     class Dodge_Charger_SRT8_2016_Medic_V1 { //new
  1133.         vItemSpace = 50;
  1134.         conditions = "";
  1135.         price = 4500;
  1136.         textures[] = {};
  1137.     };
  1138.     class Dodge_Charger_SRT8_2016_Medic_V2 : Dodge_Charger_SRT8_2016_Medic_V1 {};
  1139.     class Dodge_Charger_SRT8_2016_Medic_V3 : Dodge_Charger_SRT8_2016_Medic_V1 {};
  1140.  
  1141.     class Dodge_Charger_06_Medic_V1 { //new
  1142.         vItemSpace = 50;
  1143.         conditions = "";
  1144.         price = 4000;
  1145.         textures[] = {};
  1146.     };
  1147.     class Dodge_Charger_06_Medic_V2 : Dodge_Charger_06_Medic_V1 {};
  1148.     class Dodge_Charger_06_Medic_V3 : Dodge_Charger_06_Medic_V1 {};
  1149.  
  1150.     class Ford_Crown_Medic_V1 { //new
  1151.         vItemSpace = 50;
  1152.         conditions = "";
  1153.         price = 2000;
  1154.         textures[] = {};
  1155.     };
  1156.     class Ford_Crown_Medic_V2 : Ford_Crown_Medic_V1 {};
  1157.     class Ford_Crown_Medic_V3 : Ford_Crown_Medic_V1 {};
  1158.  
  1159.     class Ford_Raptor_17_FireTruck_V1 { //new
  1160.         vItemSpace = 50;
  1161.         conditions = "";
  1162.         price = 2000;
  1163.         textures[] = {};
  1164.     };
  1165.     class Ford_Raptor_17_FireTruck_V2 : Ford_Raptor_17_FireTruck_V1 {};
  1166.     class Ford_Raptor_17_FireTruck_V3 : Ford_Raptor_17_FireTruck_V1 {};
  1167.  
  1168.     class Ford_Raptor_Medic_V1 { //new
  1169.         vItemSpace = 50;
  1170.         conditions = "";
  1171.         price = 3000;
  1172.         textures[] = {};
  1173.     };
  1174.     class Ford_Raptor_Medic_V2 : Ford_Raptor_Medic_V1 {};
  1175.     class Ford_Raptor_Medic_V3 : Ford_Raptor_Medic_V1 {};
  1176.  
  1177.     class GMC_Vandura_83_Technical_V1 { //new
  1178.         vItemSpace = 50;
  1179.         conditions = "";
  1180.         price = 1500;
  1181.         textures[] = {};
  1182.     };
  1183.     class GMC_Vandura_83_Technical_V2 : GMC_Vandura_83_Technical_V1 {};
  1184.     class GMC_Vandura_83_Technical_V3 : GMC_Vandura_83_Technical_V1 {};
  1185.  
  1186.     class Porsche_Cayenne_12_Medic_V1 { //new
  1187.         vItemSpace = 50;
  1188.         conditions = "";
  1189.         price = 10000;
  1190.         textures[] = {};
  1191.     };
  1192.     class Porsche_Cayenne_12_Medic_V2 : Porsche_Cayenne_12_Medic_V1 {};
  1193.     class Porsche_Cayenne_12_Medic_V3 : Porsche_Cayenne_12_Medic_V1 {};
  1194.  
  1195.     class Porsche_Cayenne_12_Medic_slicktop_V1 { //new
  1196.         vItemSpace = 50;
  1197.         conditions = "";
  1198.         price = 12000;
  1199.         textures[] = {};
  1200.     };
  1201.     class Porsche_Cayenne_12_Medic_slicktop_V2 : Porsche_Cayenne_12_Medic_slicktop_V1 {};
  1202.     class Porsche_Cayenne_12_Medic_slicktop_V3 : Porsche_Cayenne_12_Medic_slicktop_V1 {};
  1203.  
  1204.     class Chevrolet_Tahoe_2015_Medic_V1 { //new
  1205.         vItemSpace = 50;
  1206.         conditions = "";
  1207.         price = 2500;
  1208.         textures[] = {};
  1209.     };
  1210.     class Chevrolet_Tahoe_2015_Medic_V2 : Chevrolet_Tahoe_2015_Medic_V1 {};
  1211.     class Chevrolet_Tahoe_2015_Medic_V3 : Chevrolet_Tahoe_2015_Medic_V1 {};
  1212.     //Ziv Cars
  1213.     class Ford_Crown_Taxi_V1 {
  1214.         vItemSpace = 40;
  1215.         conditions = '';
  1216.         price = 36900;
  1217.         textures[] = {};
  1218.     };
  1219.     class Ford_Crown_Taxi_V2 : Ford_Crown_Taxi_V1 {};
  1220.     class Ford_Crown_Taxi_V3 : Ford_Crown_Taxi_V1 {};
  1221.     class Ford_Crown_Black : Ford_Crown_Taxi_V1 {};
  1222.     class Ford_Crown_White : Ford_Crown_Taxi_V1 {};
  1223.     class Ford_Crown_Grey : Ford_Crown_Taxi_V1 {};
  1224.     class Ford_Crown_Yellow : Ford_Crown_Taxi_V1 {};
  1225.     class Ford_Crown_green : Ford_Crown_Taxi_V1 {};
  1226.     class Ford_Crown_Custome : Ford_Crown_Taxi_V1 {};
  1227.  
  1228.     class Aston_Martin_Vanquish_13_Black {
  1229.         vItemSpace = 40;
  1230.         conditions = '';
  1231.         price = 249000;
  1232.         textures[] = {};
  1233.     };
  1234.     class Aston_Martin_Vanquish_13_Green : Aston_Martin_Vanquish_13_Black {};
  1235.     class Aston_Martin_Vanquish_13_Blue : Aston_Martin_Vanquish_13_Black {};
  1236.     class Aston_Martin_Vanquish_13_White : Aston_Martin_Vanquish_13_Black {};
  1237.     class Aston_Martin_Vanquish_13_Yellow : Aston_Martin_Vanquish_13_Black {};
  1238.     class Aston_Martin_Vanquish_13_Custom : Aston_Martin_Vanquish_13_Black {};
  1239.  
  1240.     class Audi_TT_RS_2010_Black {
  1241.         vItemSpace = 40;
  1242.         conditions = '';
  1243.         price = 87000;
  1244.         textures[] = {};
  1245.     };
  1246.     class Audi_TT_RS_2010_Green : Audi_TT_RS_2010_Black {};
  1247.     class Audi_TT_RS_2010_Yellow : Audi_TT_RS_2010_Black {};
  1248.     class Audi_TT_RS_2010_Orange : Audi_TT_RS_2010_Black {};
  1249.     class Audi_TT_RS_2010_Red : Audi_TT_RS_2010_Black {};
  1250.     class Audi_TT_RS_2010_Custome : Audi_TT_RS_2010_Black {};
  1251.  
  1252.     class BMW_X6_Black {
  1253.         vItemSpace = 40;
  1254.         conditions = '';
  1255.         price = 95000;
  1256.         textures[] = {};
  1257.     };
  1258.     class BMW_X6_Blue : BMW_X6_Black {};
  1259.     class BMW_X6_Red : BMW_X6_Black {};
  1260.     class BMW_X6_White : BMW_X6_Black {};
  1261.     class BMW_X6_Green : BMW_X6_Black {};
  1262.     class BMW_X6_Custome : BMW_X6_Black {};
  1263.  
  1264.     class Jaguar_XKRS_12_Black {
  1265.         vItemSpace = 40;
  1266.         conditions = '';
  1267.         price = 170000;
  1268.         textures[] = {};
  1269.     };
  1270.     class Jaguar_XKRS_12_Blue : Jaguar_XKRS_12_Black {};
  1271.     class Jaguar_XKRS_12_Red : Jaguar_XKRS_12_Black {};
  1272.     class Jaguar_XKRS_12_White : Jaguar_XKRS_12_Black {};
  1273.     class Jaguar_XKRS_12_Green : Jaguar_XKRS_12_Black {};
  1274.     class Jaguar_XKRS_12_Custome : Jaguar_XKRS_12_Black {};
  1275.  
  1276.     class Mercedes_Benz_SL65_Black {
  1277.         vItemSpace = 40;
  1278.         conditions = '';
  1279.         price = 165000;
  1280.         textures[] = {};
  1281.     };
  1282.  
  1283.     class Mercedes_Benz_SL65_Blue : Mercedes_Benz_SL65_Black {};
  1284.     class Mercedes_Benz_SL65_Red : Mercedes_Benz_SL65_Black {};
  1285.     class Mercedes_Benz_SL65_White : Mercedes_Benz_SL65_Black {};
  1286.     class Mercedes_Benz_SL65_Green : Mercedes_Benz_SL65_Black {};
  1287.     class Mercedes_Benz_SL65_Custome : Mercedes_Benz_SL65_Black {};
  1288.  
  1289.     class Dodge_Charger_SRT8_2016_Black {
  1290.         vItemSpace = 40;
  1291.         conditions = '';
  1292.         price = 98000;
  1293.         textures[] = {};
  1294.     };
  1295.  
  1296.     class Dodge_Charger_SRT8_2016_Green : Dodge_Charger_SRT8_2016_Black {};
  1297.     class Dodge_Charger_SRT8_2016_Blue : Dodge_Charger_SRT8_2016_Black {};
  1298.     class Dodge_Charger_SRT8_2016_White : Dodge_Charger_SRT8_2016_Black {};
  1299.     class Dodge_Charger_SRT8_2016_Custome : Dodge_Charger_SRT8_2016_Black {};
  1300.  
  1301.     class Dodge_Charger_06_Black {
  1302.         vItemSpace = 40;
  1303.         conditions = '';
  1304.         price = 50000;
  1305.         textures[] = {};
  1306.     };
  1307.  
  1308.     class Dodge_Charger_06_Blue : Dodge_Charger_06_Black {};
  1309.     class Dodge_Charger_06_Red : Dodge_Charger_06_Black {};
  1310.     class Dodge_Charger_06_White : Dodge_Charger_06_Black {};
  1311.     class Dodge_Charger_06_Green : Dodge_Charger_06_Black {};
  1312.  
  1313.     class Ford_Fusion_2010_Black {
  1314.         vItemSpace = 40;
  1315.         conditions = '';
  1316.         price = 50000;
  1317.         textures[] = {};
  1318.     };
  1319.  
  1320.     class Ford_Fusion_2010_Blue : Ford_Fusion_2010_Black {};
  1321.     class Ford_Fusion_2010_Red : Ford_Fusion_2010_Black {};
  1322.     class Ford_Fusion_2010_White : Ford_Fusion_2010_Black {};
  1323.     class Ford_Fusion_2010_Green : Ford_Fusion_2010_Black {};
  1324.     class Ford_Fusion_2010_Custom : Ford_Fusion_2010_Black {};
  1325.  
  1326.     class GMC_C5500_Black {
  1327.         vItemSpace = 450;
  1328.         conditions = '';
  1329.         price = 95000;
  1330.         textures[] = {};
  1331.     };
  1332.  
  1333.     class GMC_C5500_Green : GMC_C5500_Black {};
  1334.     class GMC_C5500_Blue : GMC_C5500_Black {};
  1335.     class GMC_C5500_White : GMC_C5500_Black {};
  1336.     class GMC_C5500_Custom1 : GMC_C5500_Black {};
  1337.  
  1338.     class GMC_Vandura_83_Custom_V1 {
  1339.         vItemSpace = 200;
  1340.         conditions = '';
  1341.         price = 65000;
  1342.         textures[] = {};
  1343.     };
  1344.     class GMC_Vandura_83_Custom_V2 : GMC_Vandura_83_Custom_V1 {};
  1345.     class GMC_Vandura_83_Custom_V3 : GMC_Vandura_83_Custom_V1 {};
  1346.  
  1347.     class Nissan_370Z_Black {
  1348.         vItemSpace = 40;
  1349.         conditions = '';
  1350.         price = 36000;
  1351.         textures[] = {};
  1352.     };
  1353.     class Nissan_370Z_Blue : Nissan_370Z_Black {};
  1354.     class Nissan_370Z_Red : Nissan_370Z_Black {};
  1355.     class Nissan_370Z_White : Nissan_370Z_Black {};
  1356.     class Nissan_370Z_Green : Nissan_370Z_Black {};
  1357.     class Nissan_370Z_Custome : Nissan_370Z_Black {};
  1358.  
  1359.     class Porsche_Cayenne_12_Black {
  1360.         vItemSpace = 40;
  1361.         conditions = '';
  1362.         price = 52000;
  1363.         textures[] = {};
  1364.     };
  1365.     class Porsche_Cayenne_12_Blue : Porsche_Cayenne_12_Black {};
  1366.     class Porsche_Cayenne_12_Red : Porsche_Cayenne_12_Black {};
  1367.     class Porsche_Cayenne_12_White : Porsche_Cayenne_12_Black {};
  1368.     class Porsche_Cayenne_12_Green : Porsche_Cayenne_12_Black {};
  1369.     class Porsche_Cayenne_12_Custome : Porsche_Cayenne_12_Black {};
  1370.  
  1371.     class Chevrolet_Tahoe_2015_Black {
  1372.         vItemSpace = 100;
  1373.         conditions = '';
  1374.         price = 52000;
  1375.         textures[] = {};
  1376.     };
  1377.     class Chevrolet_Tahoe_2015_Custome{
  1378.         vItemSpace = 100;
  1379.         conditions = '';
  1380.         price = 5200;
  1381.         textures[] = {
  1382.             { "DOJ", "doj", {
  1383.                 "\unity_skins\cars\Chevrolet_Tahoe_2015.paa"
  1384.             }, "" }
  1385.         };
  1386.     };
  1387.     class Chevrolet_Tahoe_2015_Blue : Chevrolet_Tahoe_2015_Black {};
  1388.     class Chevrolet_Tahoe_2015_Red : Chevrolet_Tahoe_2015_Black {};
  1389.     class Chevrolet_Tahoe_2015_White : Chevrolet_Tahoe_2015_Black {};
  1390.     class Chevrolet_Tahoe_2015_Green : Chevrolet_Tahoe_2015_Black {};
  1391.     class Chevrolet_Tahoe_2015_Orange : Chevrolet_Tahoe_2015_Black {};
  1392.  
  1393.     class Rolls_Royce_Dawn_Black {
  1394.         vItemSpace = 50;
  1395.         conditions = '';
  1396.         price = 658112;
  1397.         textures[] = {};
  1398.     };
  1399.     class Rolls_Royce_Dawn_Blue : Rolls_Royce_Dawn_Black {};
  1400.     class Rolls_Royce_Dawn_Red : Rolls_Royce_Dawn_Black {};
  1401.     class Rolls_Royce_Dawn_White : Rolls_Royce_Dawn_Black {};
  1402.     class Rolls_Royce_Dawn_Green : Rolls_Royce_Dawn_Black {};
  1403.     class Rolls_Royce_Dawn_ScriptOase_Version : Rolls_Royce_Dawn_Black {};
  1404.  
  1405.     class CadillacEldorado1959_Black {
  1406.         vItemSpace = 40;
  1407.         conditions = '';
  1408.         price = 75000;
  1409.         textures[] = {};
  1410.     };
  1411.     class CadillacEldorado1959_Blue : CadillacEldorado1959_Black {};
  1412.     class CadillacEldorado1959_Red : CadillacEldorado1959_Black {};
  1413.     class CadillacEldorado1959_White : CadillacEldorado1959_Black {};
  1414.     class CadillacEldorado1959_Green : CadillacEldorado1959_Black {};
  1415.     class CadillacEldorado1959_Custome : CadillacEldorado1959_Black {};
  1416.  
  1417.     class LB_Hot_Rod {
  1418.         vItemSpace = 40;
  1419.         conditions = '';
  1420.         price = 25000;
  1421.         textures[] = {};
  1422.     };
  1423.     class LB_Hot_Rod_01 {
  1424.         vItemSpace = 40;
  1425.         conditions = '';
  1426.         price = 25000;
  1427.         textures[] = {};
  1428.     };
  1429.     class LB_VW_SciroccoS_81 {
  1430.         vItemSpace = 40;
  1431.         conditions = '';
  1432.         price = 6385;
  1433.         textures[] = {};
  1434.     };
  1435.     class Dodge_Ram_SRT10_Black {
  1436.         vItemSpace = 125;
  1437.         conditions = '';
  1438.         price = 60000;
  1439.         textures[] = {};
  1440.     };
  1441.     class Dodge_Ram_SRT10_Blue : Dodge_Ram_SRT10_Black {};
  1442.     class Dodge_Ram_SRT10_Red : Dodge_Ram_SRT10_Black {};
  1443.     class Dodge_Ram_SRT10_White : Dodge_Ram_SRT10_Black {};
  1444.     class Dodge_Ram_SRT10_Green : Dodge_Ram_SRT10_Black {};
  1445.     class Dodge_Ram_SRT10_Custome : Dodge_Ram_SRT10_Black {};
  1446.  
  1447.     class A3F_Charger_RT_15_Black {
  1448.         vItemSpace = 40;
  1449.         conditions = '';
  1450.         price = 62000;
  1451.         textures[] = {};
  1452.     };
  1453.     class A3F_Charger_RT_15_Green : A3F_Charger_RT_15_Black {};
  1454.     class A3F_Charger_RT_15_White : A3F_Charger_RT_15_Black {};
  1455.     class A3F_Charger_RT_15_Red : A3F_Charger_RT_15_Black {};
  1456.     class A3F_Charger_RT_15_Blue : A3F_Charger_RT_15_Black {};
  1457.  
  1458.     class LB_Chev_C10_custom_made {
  1459.         vItemSpace = 39;
  1460.         conditions = '';
  1461.         price = 52000;
  1462.         textures[] = {};
  1463.     };
  1464.  
  1465.   class LB_Chev_C10_custom_made_V2 : LB_Chev_C10_custom_made {};
  1466.   class LB_Chev_C10_custom_made_V3 : LB_Chev_C10_custom_made {};
  1467.  
  1468.     class LB_Ursus_Traktor {
  1469.         vItemSpace = 75;
  1470.         conditions = '';
  1471.         price = 2500;
  1472.         textures[] = {};
  1473.     };
  1474.  
  1475.  
  1476.  
  1477.     class A3F_Benz_CLS_19_Black {
  1478.         vItemSpace = 50;
  1479.         conditions = '';
  1480.         price = 450000;
  1481.         textures[] = {};
  1482.     };
  1483.  
  1484.     class A3F_Benz_CLS_19_Silver {
  1485.         vItemSpace = 50;
  1486.         conditions = '';
  1487.         price = 450000;
  1488.         textures[] = {};
  1489.     };
  1490.  
  1491.     class A3F_Benz_CLS_19_Blue : A3F_Benz_CLS_19_Black {};
  1492.     class A3F_Benz_CLS_19_Red : A3F_Benz_CLS_19_Black {};
  1493.     class A3F_Benz_CLS_19_White : A3F_Benz_CLS_19_Black {};
  1494.     class A3F_Benz_CLS_19_Green : A3F_Benz_CLS_19_Black {};
  1495.     //New Cars
  1496.     class Smart_Black {
  1497.         vItemSpace = 20;
  1498.         conditions = '';
  1499.         price = 50000;
  1500.         textures[] = {};
  1501.     };
  1502.     class Smart_Blue : Smart_Black {};
  1503.     class Smart_Red : Smart_Black {};
  1504.     class Smart_White : Smart_Black {};
  1505.     class Smart_Green : Smart_Black {};
  1506.     class Smart_Custome : Smart_Black {};
  1507.  
  1508.     class ivory_mp4 {
  1509.         vItemSpace = 40;
  1510.         conditions = '';
  1511.         price = 230000;
  1512.         textures[] = {};
  1513.     };
  1514.  
  1515.     class IVORY_PRIUS {
  1516.         vItemSpace = 50;
  1517.         conditions = '';
  1518.         price = 4000;
  1519.         textures[] = {};
  1520.     };
  1521.  
  1522.     class IVORY_REV {
  1523.         vItemSpace = 40;
  1524.         conditions = '';
  1525.         price = 340000;
  1526.         textures[] = {};
  1527.     };
  1528.  
  1529.     class IVORY_R8SPYDER {
  1530.         vItemSpace = 40;
  1531.         conditions = '';
  1532.         price = 200000;
  1533.         textures[] = {};
  1534.     };
  1535.  
  1536.     class Ivory_e36 {
  1537.         vItemSpace = 60;
  1538.         conditions = '';
  1539.         price = 43000;
  1540.         textures[] = {};
  1541.     };
  1542. //----------------------------------------------------------------------------------------------------
  1543.     class GMC_Vandura_83_Pizza_COSTUM_V1 {
  1544.         vItemSpace = 25;
  1545.         conditions = '';
  1546.         price = 6000;
  1547.         textures[] = {};
  1548.     };
  1549.  
  1550.     class GMC_Vandura_83_Pizza_COSTUM_V2 : GMC_Vandura_83_Pizza_COSTUM_V1 {};
  1551.     class GMC_Vandura_83_Pizza_COSTUM_V3 : GMC_Vandura_83_Pizza_COSTUM_V1 {};
  1552.     class GMC_Vandura_83_Delivery_Custom_V1 : GMC_Vandura_83_Pizza_COSTUM_V1 {};
  1553.     class GMC_Vandura_83_Delivery_Custom_V2 : GMC_Vandura_83_Pizza_COSTUM_V1 {};
  1554.     class GMC_Vandura_83_Delivery_Custom_V3 : GMC_Vandura_83_Pizza_COSTUM_V1 {};
  1555.  
  1556.     class a3mt_Impala_1996_01 {
  1557.         vItemSpace = 50;
  1558.         conditions = '';
  1559.         price = 12500;
  1560.         textures[] = {};
  1561.     };
  1562.  
  1563.     class a3mt_Impala_1996_DOJ {
  1564.         vItemSpace = 50;
  1565.         conditions = '';
  1566.         price = 12500;
  1567.         textures[] = {};
  1568.     };
  1569.  
  1570.     class a3mt_BusLackbude {
  1571.         vItemSpace = 150;
  1572.         conditions = '';
  1573.         price = 8500;
  1574.         textures[] = {};
  1575.     };
  1576.     class red_kawasaki_10_black_v4 {
  1577.         vItemSpace = 25;
  1578.         conditions = '';
  1579.         price = 15000;
  1580.         textures[] = {};
  1581.     };
  1582.     class red_kawasaki_10_black_v5 : red_kawasaki_10_black_v4 {};
  1583.     class red_kawasaki_10_black_v3 : red_kawasaki_10_black_v4 {};
  1584.     class red_kawasaki_10_white_v2 : red_kawasaki_10_black_v4 {};
  1585.     class red_kawasaki_10_black_v2 : red_kawasaki_10_black_v4 {};
  1586.     class red_kawasaki_10_white_v3 : red_kawasaki_10_black_v4 {};
  1587.     class red_kawasaki_10_white_v4 : red_kawasaki_10_black_v4 {};
  1588.     class red_kawasaki_10_black : red_kawasaki_10_black_v4 {};
  1589.     class red_kawasaki_10_white : red_kawasaki_10_black_v4 {};
  1590.     class red_kawasaki_10_white_v5 : red_kawasaki_10_black_v4 {};
  1591.  
  1592.     class a3mt_C63B {
  1593.         vItemSpace = 50;
  1594.         conditions = '';
  1595.         price = 15000;
  1596.         textures[] = {};
  1597.     };
  1598.     class a3mt_Honda_T01 {
  1599.         vItemSpace = 50;
  1600.         conditions = '';
  1601.         price = 15000;
  1602.         textures[] = {};
  1603.     };
  1604.     class a3mt_Honda_T02: a3mt_Honda_T01 {};
  1605.  
  1606.     class a3mt_C63Blue : a3mt_C63B {};
  1607.     class a3mt_C63green : a3mt_C63B {};
  1608.     class a3mt_C63silver : a3mt_C63B {};
  1609.     class a3mt_C63orange : a3mt_C63B {};
  1610.     class a3mt_C63pink : a3mt_C63B {};
  1611.     class a3mt_C63purple : a3mt_C63B {};
  1612.     class a3mt_C63red : a3mt_C63B {};
  1613.     class a3mt_C63yello : a3mt_C63B {};
  1614.     class a3mt_C63taxi : a3mt_C63B {};
  1615.  
  1616.     class red_fusion_10_black {
  1617.         vItemSpace = 95;
  1618.         conditions = '';
  1619.         price = 21530;
  1620.         textures[] = {};
  1621.     };
  1622.  
  1623.     class red_fusion_10_aqua : red_fusion_10_black {};
  1624.     class red_fusion_10_darkblue : red_fusion_10_black {};
  1625.     class red_fusion_10_green : red_fusion_10_black {};
  1626.     class red_fusion_10_red : red_fusion_10_black {};
  1627.     class red_fusion_10_orange : red_fusion_10_black {};
  1628.  
  1629.     class red_camaro_12_p_statenew {
  1630.         vItemSpace = 50;
  1631.         conditions = '';
  1632.         price = 1500;
  1633.         textures[] = {};
  1634.     };
  1635.  
  1636.     class red_camaro_12_p_sheriffnew {
  1637.         vItemSpace = 50;
  1638.         conditions = '';
  1639.         price = 1500;
  1640.         textures[] = {};
  1641.     };
  1642.  
  1643.     class red_suburban_15_p_u_Black {
  1644.         vItemSpace = 50;
  1645.         conditions = '';
  1646.         price = 1500;
  1647.         textures[] = {};
  1648.     };
  1649.  
  1650.     class GMC_Vandura_83_Black {
  1651.         vItemSpace = 50;
  1652.         conditions = '';
  1653.         price = 1500;
  1654.         textures[] = {};
  1655.     };
  1656.  
  1657.     class ivory_isf_unmarked {
  1658.         vItemSpace = 50;
  1659.         conditions = '';
  1660.         price = 1500;
  1661.         textures[] = {};
  1662.     };
  1663.  
  1664.     class red_porsche_12_p_u_Black {
  1665.         vItemSpace = 50;
  1666.         conditions = '';
  1667.         price = 1500;
  1668.         textures[] = {};
  1669.     };
  1670.  
  1671.     class ivory_m3_unmarked {
  1672.         vItemSpace = 50;
  1673.         conditions = '';
  1674.         price = 1500;
  1675.         textures[] = {};
  1676.     };
  1677.  
  1678.     class red_suburban_15_p_u_statenew {
  1679.         vItemSpace = 50;
  1680.         conditions = '';
  1681.         price = 1500;
  1682.         textures[] = {};
  1683.     };
  1684.  
  1685.     class red_charger_12_p_sheriffnew {
  1686.         vItemSpace = 50;
  1687.         conditions = '';
  1688.         price = 1500;
  1689.         textures[] = {};
  1690.     };
  1691.  
  1692.     class red_panamera_10_p_u_Black {
  1693.         vItemSpace = 50;
  1694.         conditions = '';
  1695.         price = 1500;
  1696.         textures[] = {};
  1697.     };
  1698.  
  1699.     class red_charger_12_p_statenew {
  1700.         vItemSpace = 50;
  1701.         conditions = '';
  1702.         price = 1500;
  1703.         textures[] = {};
  1704.     };
  1705.  
  1706.     class red_charger_12_p_u_statenew {
  1707.         vItemSpace = 50;
  1708.         conditions = '';
  1709.         price = 1500;
  1710.         textures[] = {};
  1711.     };
  1712.  
  1713.     class red_charger_15_p_u_statenew {
  1714.         vItemSpace = 50;
  1715.         conditions = '';
  1716.         price = 1500;
  1717.         textures[] = {};
  1718.     };
  1719.  
  1720.     class red_charger_12_p_u_black {
  1721.         vItemSpace = 50;
  1722.         conditions = '';
  1723.         price = 1500;
  1724.         textures[] = {};
  1725.     };
  1726.  
  1727.     class red_vanquish_12_black {
  1728.         vItemSpace = 50;
  1729.         conditions = '';
  1730.         price = 1500;
  1731.         textures[] = {};
  1732.     };
  1733.  
  1734.     class red_vanquish_12_darkblue {
  1735.         vItemSpace = 50;
  1736.         conditions = '';
  1737.         price = 1500;
  1738.         textures[] = {};
  1739.     };
  1740.     class red_camaro_12_p_u_black {
  1741.         vItemSpace = 50;
  1742.         conditions = '';
  1743.         price = 1500;
  1744.         textures[] = {};
  1745.     };
  1746.  
  1747.     class red_cvpi_06_darkblue {
  1748.         vItemSpace = 50;
  1749.         conditions = '';
  1750.         price = 1500;
  1751.         textures[] = {};
  1752.     };
  1753.  
  1754.     class red_challenger_15_darkblue {
  1755.         vItemSpace = 50;
  1756.         conditions = '';
  1757.         price = 1500;
  1758.         textures[] = {};
  1759.     };
  1760.  
  1761.     class red_charger_15_darkblue {
  1762.         vItemSpace = 50;
  1763.         conditions = '';
  1764.         price = 1500;
  1765.         textures[] = {};
  1766.     };
  1767.  
  1768.     class red_panamera_10_darkblue {
  1769.         vItemSpace = 50;
  1770.         conditions = '';
  1771.         price = 1500;
  1772.         textures[] = {};
  1773.     };
  1774.  
  1775.     class red_porsche_12_darkblue {
  1776.         vItemSpace = 50;
  1777.         conditions = '';
  1778.         price = 1500;
  1779.         textures[] = {};
  1780.     };
  1781.  
  1782.     class red_venomgt_11_darkblue {
  1783.         vItemSpace = 50;
  1784.         conditions = '';
  1785.         price = 1500;
  1786.         textures[] = {};
  1787.     };
  1788.  
  1789.     class red_charger_12_p_u_green {
  1790.         vItemSpace = 50;
  1791.         conditions = '';
  1792.         price = 1500;
  1793.         textures[] = {};
  1794.     };
  1795.  
  1796.     class red_taurus_10_p_u_statenew {
  1797.         vItemSpace = 50;
  1798.         conditions = '';
  1799.         price = 1500;
  1800.         textures[] = {};
  1801.     };
  1802.  
  1803.     class red_suburban_15_p_statenew {
  1804.         vItemSpace = 50;
  1805.         conditions = '';
  1806.         price = 1500;
  1807.         textures[] = {};
  1808.     };
  1809.  
  1810.     class red_charger_15_p_sheriffnew {
  1811.         vItemSpace = 50;
  1812.         conditions = '';
  1813.         price = 1500;
  1814.         textures[] = {};
  1815.     };
  1816.  
  1817.     class red_charger_15_p_statenew {
  1818.         vItemSpace = 50;
  1819.         conditions = '';
  1820.         price = 1500;
  1821.         textures[] = {};
  1822.     };
  1823.  
  1824.     class red_kawasaki_10_p_sheriffnew {
  1825.         vItemSpace = 50;
  1826.         conditions = '';
  1827.         price = 1500;
  1828.         textures[] = {};
  1829.     };
  1830.  
  1831.     class red_kawasaki_10_p_statenew {
  1832.         vItemSpace = 50;
  1833.         conditions = '';
  1834.         price = 1500;
  1835.         textures[] = {};
  1836.     };
  1837.  
  1838.     class red_taurus_10_p_statenew {
  1839.         vItemSpace = 50;
  1840.         conditions = '';
  1841.         price = 1500;
  1842.         textures[] = {};
  1843.     };
  1844.  
  1845.     class red_cvpi_06_pu_state {
  1846.         vItemSpace = 50;
  1847.         conditions = '';
  1848.         price = 1500;
  1849.         textures[] = {};
  1850.     };
  1851.  
  1852.     class red_cvpi_06_p_statenew {
  1853.         vItemSpace = 50;
  1854.         conditions = '';
  1855.         price = 1500;
  1856.         textures[] = {};
  1857.     };
  1858.  
  1859.     class red_explorer_16_p_sheriffnew {
  1860.         vItemSpace = 50;
  1861.         conditions = '';
  1862.         price = 1500;
  1863.         textures[] = {};
  1864.     };
  1865.  
  1866.     class red_f350_08_p_sheriff {
  1867.         vItemSpace = 50;
  1868.         conditions = '';
  1869.         price = 1500;
  1870.         textures[] = {};
  1871.     };
  1872.  
  1873.     class red_taurus_10_p_sheriffnew {
  1874.         vItemSpace = 50;
  1875.         conditions = '';
  1876.         price = 1500;
  1877.         textures[] = {};
  1878.     };
  1879.  
  1880.     class red_cvpi_06_p_sheriffnew {
  1881.         vItemSpace = 50;
  1882.         conditions = '';
  1883.         price = 1500;
  1884.         textures[] = {};
  1885.     };
  1886.  
  1887.     class red_gs350_13_black {
  1888.         vItemSpace = 50;
  1889.         conditions = '';
  1890.         price = 30000;
  1891.         textures[] = {};
  1892.     };
  1893.  
  1894.     class red_xkrs_12_black {
  1895.         vItemSpace = 55;
  1896.         conditions = '';
  1897.         price = 132870;
  1898.         textures[] = {};
  1899.     };
  1900.  
  1901.     class red_ambulance_08_EMS {
  1902.         vItemSpace = 50;
  1903.         conditions = '';
  1904.         price = 1500;
  1905.         textures[] = {};
  1906.     };
  1907.  
  1908.     class red_cvpi_06_FD {
  1909.         vItemSpace = 50;
  1910.         conditions = '';
  1911.         price = 750;
  1912.         textures[] = {};
  1913.     };
  1914.     class red_taurus_10_FD {
  1915.         vItemSpace = 50;
  1916.         conditions = '';
  1917.         price = 1500;
  1918.         textures[] = {};
  1919.     };
  1920.     class red_panamera_10_FD1 {
  1921.         vItemSpace = 50;
  1922.         conditions = '';
  1923.         price = 6000;
  1924.         textures[] = {};
  1925.     };
  1926.     class A3MT_Firetruck {
  1927.         vItemSpace = 340;
  1928.         conditions = '';
  1929.         price = 6000;
  1930.         textures[] = {};
  1931.     };
  1932.     class red_charger_15_FD {
  1933.         vItemSpace = 50;
  1934.         conditions = '';
  1935.         price = 2250;
  1936.         textures[] = {};
  1937.     };
  1938.  
  1939.     class red_explorer_16_e_ems {
  1940.         vItemSpace = 50;
  1941.         conditions = '';
  1942.         price = 2500;
  1943.         textures[] = {};
  1944.     };
  1945.  
  1946.     class Jonzie_Ambulance {
  1947.         vItemSpace = 50;
  1948.         conditions = '';
  1949.         price = 1000;
  1950.         textures[] = {};
  1951.     };
  1952.  
  1953.     class red_charger_12_FD {
  1954.         vItemSpace = 50;
  1955.         conditions = '';
  1956.         price = 2000;
  1957.         textures[] = {};
  1958.     };
  1959.  
  1960.     class red_panamera_10_FD2 {
  1961.         vItemSpace = 50;
  1962.         conditions = '';
  1963.         price = 5000;
  1964.         textures[] = {};
  1965.     };
  1966.  
  1967.     class red_suburban_15_e_ems {
  1968.         vItemSpace = 50;
  1969.         conditions = '';
  1970.         price = 1500;
  1971.         textures[] = {};
  1972.     };
  1973.  
  1974.     class red_stretcher_c {
  1975.         vItemSpace = 30;
  1976.         conditions = '';
  1977.         price = 1500;
  1978.         textures[] = {};
  1979.     };
  1980.  
  1981.     class red_venomgt_11_black {
  1982.         vItemSpace = 55;
  1983.         conditions = '';
  1984.         price = 800000;
  1985.         textures[] = {};
  1986.     };
  1987.  
  1988.     class red_venomgt_11_aqua : red_venomgt_11_black {};
  1989.     class red_venomgt_11_green : red_venomgt_11_black {};
  1990.     class red_venomgt_11_red : red_venomgt_11_black {};
  1991.     class red_venomgt_11_pink : red_venomgt_11_black {};
  1992.     class red_venomgt_11_yellow : red_venomgt_11_black {};
  1993.     class red_venomgt_11_orange : red_venomgt_11_black {};
  1994.     class red_venomgt_11_white : red_venomgt_11_black {};
  1995.     class red_venomgt_11_purple : red_venomgt_11_black {};
  1996.     class red_venomgt_11_darkgreen : red_venomgt_11_black {};
  1997.     class red_venomgt_11_darkred : red_venomgt_11_black {};
  1998.  
  1999.     class red_porsche_12_black {
  2000.         vItemSpace = 55;
  2001.         conditions = '';
  2002.         price = 139000;
  2003.         textures[] = {};
  2004.     };
  2005.     class red_porsche_12_aqua : red_porsche_12_black {};
  2006.     class red_porsche_12_green : red_porsche_12_black {};
  2007.     class red_porsche_12_red : red_porsche_12_black {};
  2008.     class red_porsche_12_yellow : red_porsche_12_black {};
  2009.     class red_porsche_12_orange : red_porsche_12_black {};
  2010.     class red_porsche_12_white : red_porsche_12_black {};
  2011.     class red_porsche_12_darkgreen : red_porsche_12_black {};
  2012.     class red_porsche_12_darkred : red_porsche_12_black {};
  2013.     class red_porsche_12_blue : red_porsche_12_black {};
  2014.  
  2015.     class red_corvette_14_black {
  2016.         vItemSpace = 55;
  2017.         conditions = '';
  2018.         price = 75000;
  2019.         textures[] = {};
  2020.     };
  2021.     class red_corvette_14_aqua : red_corvette_14_black {};
  2022.     class red_corvette_14_darkblue : red_corvette_14_black {};
  2023.     class red_corvette_14_green : red_corvette_14_black {};
  2024.     class red_corvette_14_red : red_corvette_14_black {};
  2025.     class red_corvette_14_pink : red_corvette_14_black {};
  2026.     class red_corvette_14_yellow : red_corvette_14_black {};
  2027.     class red_corvette_14_orange : red_corvette_14_black {};
  2028.     class red_corvette_14_white : red_corvette_14_black {};
  2029.     class red_corvette_14_purple : red_corvette_14_black {};
  2030.     class red_corvette_14_darkgreen : red_corvette_14_black {};
  2031.     class red_corvette_14_darkred : red_corvette_14_black {};
  2032.  
  2033.     class red_vanquish_13_black {
  2034.         vItemSpace = 55;
  2035.         conditions = '';
  2036.         price = 277950;
  2037.         textures[] = {};
  2038.     };
  2039.  
  2040.  
  2041.     class red_f12_13_black {
  2042.         vItemSpace = 55;
  2043.         conditions = '';
  2044.         price = 268400;
  2045.         textures[] = {};
  2046.     };
  2047.     class red_f12_13_aqua : red_f12_13_black {};
  2048.     class red_f12_13_green : red_f12_13_black {};
  2049.     class red_f12_13_red : red_f12_13_black {};
  2050.     class red_f12_13_yellow : red_f12_13_black {};
  2051.     class red_f12_13_orange : red_f12_13_black {};
  2052.     class red_f12_13_white : red_f12_13_black {};
  2053.     class red_f12_13_purple : red_f12_13_black {};
  2054.     class red_f12_13_darkred : red_f12_13_black {};
  2055.     class red_f12_13_darkgreen : red_f12_13_black {};
  2056.     class red_f12_13_pink : red_f12_13_black {};
  2057.  
  2058.     class red_beetle_66_black {
  2059.         vItemSpace = 25;
  2060.         conditions = '';
  2061.         price = 30000;
  2062.         textures[] = {};
  2063.     };
  2064.     class red_beetle_66_fontanagrey : red_beetle_66_black {};
  2065.     class red_beetle_66_pearlwhite : red_beetle_66_black {};
  2066.     class red_beetle_66_rubyred : red_beetle_66_black {};
  2067.     class red_beetle_66_seablue : red_beetle_66_black {};
  2068.     class red_beetle_66_vwblue : red_beetle_66_black {};
  2069.     class red_beetle_66_yukonyellow : red_beetle_66_black {};
  2070.     class red_beetle_66_seasand : red_beetle_66_black {};
  2071.     class red_beetle_66_bahamablue : red_beetle_66_black {};
  2072.     class red_beetle_66_javagreen : red_beetle_66_black {};
  2073.  
  2074.     class red_eldorado_57_black {
  2075.         vItemSpace = 75;
  2076.         conditions = '';
  2077.         price = 75000;
  2078.         textures[] = {};
  2079.     };
  2080.     class red_eldorado_57_blue : red_eldorado_57_black {};
  2081.     class red_eldorado_57_red : red_eldorado_57_black {};
  2082.     class red_eldorado_57_white : red_eldorado_57_black {};
  2083.  
  2084.     class red_challenger_15_black {
  2085.         vItemSpace = 75;
  2086.         conditions = '';
  2087.         price = 177200;
  2088.         textures[] = {};
  2089.     };
  2090.     class red_challenger_15_aqua : red_challenger_15_black {};
  2091.     class red_challenger_15_green : red_challenger_15_black {};
  2092.     class red_challenger_15_red : red_challenger_15_black {};
  2093.     class red_challenger_15_pink : red_challenger_15_black {};
  2094.     class red_challenger_15_yellow : red_challenger_15_black {};
  2095.     class red_challenger_15_orange : red_challenger_15_black {};
  2096.     class red_challenger_15_white : red_challenger_15_black {};
  2097.     class red_challenger_15_purple : red_challenger_15_black {};
  2098.     class red_challenger_15_darkgreen : red_challenger_15_black {};
  2099.     class red_challenger_15_darkred : red_challenger_15_black {};
  2100.     class red_challenger_15_blue : red_challenger_15_black {};
  2101.  
  2102.     class red_f350_08_black {
  2103.         vItemSpace = 170;
  2104.         conditions = '';
  2105.         price = 42750;
  2106.         textures[] = {};
  2107.     };
  2108.     class red_f350_08_aqua : red_f350_08_black {};
  2109.     class red_f350_08_darkblue : red_f350_08_black {};
  2110.     class red_f350_08_green : red_f350_08_black {};
  2111.     class red_f350_08_red : red_f350_08_black {};
  2112.     class red_f350_08_pink : red_f350_08_black {};
  2113.     class red_f350_08_yellow : red_f350_08_black {};
  2114.     class red_f350_08_orange : red_f350_08_black {};
  2115.     class red_f350_08_white : red_f350_08_black {};
  2116.     class red_f350_08_purple : red_f350_08_black {};
  2117.     class red_f350_08_darkgreen : red_f350_08_black {};
  2118.     class red_f350_08_darkred : red_f350_08_black {};
  2119.     class red_f350_08_blue : red_f350_08_black {};
  2120.  
  2121.  
  2122.     class Ford_F350_XLT_SuperDuty_Black {
  2123.         vItemSpace = 170;
  2124.         conditions = '';
  2125.         price = 42750;
  2126.         textures[] = {};
  2127.     };
  2128.     class Ford_F350_XLT_SuperDuty_Blue : Ford_F350_XLT_SuperDuty_Black {};
  2129.     class Ford_F350_XLT_SuperDuty_Red : Ford_F350_XLT_SuperDuty_Black {};
  2130.     class Ford_F350_XLT_SuperDuty_White : Ford_F350_XLT_SuperDuty_Black {};
  2131.     class Ford_F350_XLT_SuperDuty_Green : Ford_F350_XLT_SuperDuty_Black {};
  2132.  
  2133.     class A3F_X5_11_Black {
  2134.         vItemSpace = 45;
  2135.         conditions = '';
  2136.         price = 82750;
  2137.         textures[] = {};
  2138.     };
  2139.  
  2140.   class A3F_X5_11_Blue : A3F_X5_11_Black {};
  2141.   class A3F_X5_11_Red : A3F_X5_11_Black {};
  2142.   class A3F_X5_11_White : A3F_X5_11_Black {};
  2143.   class A3F_X5_11_Green : A3F_X5_11_Black {};
  2144.   class A3F_X5_11_Custome : A3F_X5_11_Black {};
  2145.   class A3F_X5_11_Bobo_V1 : A3F_X5_11_Black {};
  2146.   class A3F_X5_11_Bobo_V2 : A3F_X5_11_Black {};
  2147.  
  2148.  
  2149.     class red_suburban_15_black {
  2150.         vItemSpace = 100;
  2151.         conditions = '';
  2152.         price = 86000;
  2153.         textures[] = {};
  2154.     };
  2155.     class red_suburban_15_aqua : red_suburban_15_black {};
  2156.     class red_suburban_15_darkblue : red_suburban_15_black {};
  2157.     class red_suburban_15_green : red_suburban_15_black {};
  2158.     class red_suburban_15_red : red_suburban_15_black {};
  2159.     class red_suburban_15_pink : red_suburban_15_black {};
  2160.     class red_suburban_15_yellow : red_suburban_15_black {};
  2161.     class red_suburban_15_orange : red_suburban_15_black {};
  2162.     class red_suburban_15_white : red_suburban_15_black {};
  2163.     class red_suburban_15_purple : red_suburban_15_black {};
  2164.     class red_suburban_15_darkgreen : red_suburban_15_black {};
  2165.     class red_suburban_15_darkred : red_suburban_15_black {};
  2166.     class red_suburban_15_blue : red_suburban_15_black {};
  2167.  
  2168.     class red_explorer_16_black {
  2169.         vItemSpace = 125;
  2170.         conditions = '';
  2171.         price = 62900;
  2172.         textures[] = {};
  2173.     };
  2174.     class red_cvpi_06_black {
  2175.         vItemSpace = 65;
  2176.         conditions = '';
  2177.         price = 36900;
  2178.         textures[] = {};
  2179.     };
  2180.  
  2181.     class red_explorer_16_aqua : red_explorer_16_black {};
  2182.     class red_explorer_16_darkblue : red_explorer_16_black {};
  2183.     class red_explorer_16_green : red_explorer_16_black {};
  2184.     class red_explorer_16_red : red_explorer_16_black {};
  2185.     class red_explorer_16_pink : red_explorer_16_black {};
  2186.     class red_explorer_16_yellow : red_explorer_16_black {};
  2187.     class red_explorer_16_orange : red_explorer_16_black {};
  2188.     class red_explorer_16_white : red_explorer_16_black {};
  2189.     class red_explorer_16_purple : red_explorer_16_black {};
  2190.     class red_explorer_16_darkgreen : red_explorer_16_black {};
  2191.     class red_explorer_16_darkred : red_explorer_16_black {};
  2192.     class red_explorer_16_blue : red_explorer_16_black {};
  2193.  
  2194.     class red_genesis_16_black {
  2195.         vItemSpace = 40;
  2196.         conditions = '';
  2197.         price = 47570;
  2198.         textures[] = {};
  2199.     };
  2200.  
  2201.     class red_genesis_16_aqua : red_genesis_16_black {};
  2202.     class red_genesis_16_darkblue : red_genesis_16_black {};
  2203.     class red_genesis_16_green : red_genesis_16_black {};
  2204.     class red_genesis_16_red : red_genesis_16_black {};
  2205.     class red_genesis_16_pink : red_genesis_16_black {};
  2206.     class red_genesis_16_yellow : red_genesis_16_black {};
  2207.     class red_genesis_16_orange : red_genesis_16_black {};
  2208.     class red_genesis_16_white : red_genesis_16_black {};
  2209.     class red_genesis_16_purple : red_genesis_16_black {};
  2210.     class red_genesis_16_darkgreen : red_genesis_16_black {};
  2211.     class red_genesis_16_darkred : red_genesis_16_black {};
  2212.  
  2213.     class red_s65_12_black {
  2214.         vItemSpace = 95;
  2215.         conditions = '';
  2216.         price = 132500;
  2217.         textures[] = {};
  2218.     };
  2219.     class red_s65_12_aqua : red_s65_12_black {};
  2220.     class red_s65_12_darkblue : red_s65_12_black {};
  2221.     class red_s65_12_green : red_s65_12_black {};
  2222.     class red_s65_12_red : red_s65_12_black {};
  2223.     class red_s65_12_pink : red_s65_12_black {};
  2224.     class red_s65_12_orange : red_s65_12_black {};
  2225.     class red_s65_12_white : red_s65_12_black {};
  2226.     class red_s65_12_purple : red_s65_12_black {};
  2227.     class red_s65_12_darkgreen : red_s65_12_black {};
  2228.     class red_s65_12_darkred : red_s65_12_black {};
  2229.  
  2230.     class red_taurus_10_black {
  2231.         vItemSpace = 90;
  2232.         conditions = '';
  2233.         price = 37995;
  2234.         textures[] = {};
  2235.     };
  2236.     class red_taurus_10_aqua : red_taurus_10_black {};
  2237.     class red_taurus_10_darkblue : red_taurus_10_black {};
  2238.     class red_taurus_10_green : red_taurus_10_black {};
  2239.     class red_taurus_10_red : red_taurus_10_black {};
  2240.     class red_taurus_10_pink : red_taurus_10_black {};
  2241.     class red_taurus_10_yellow : red_taurus_10_black {};
  2242.     class red_taurus_10_orange : red_taurus_10_black {};
  2243.     class red_taurus_10_white : red_taurus_10_black {};
  2244.     class red_taurus_10_purple : red_taurus_10_black {};
  2245.     class red_taurus_10_darkgreen : red_taurus_10_black {};
  2246.     class red_taurus_10_darkred : red_taurus_10_black {};
  2247.     class red_taurus_10_blue : red_taurus_10_black {};
  2248.  
  2249.     class red_ram_06_black {
  2250.         vItemSpace = 130;
  2251.         conditions = '';
  2252.         price = 45000;
  2253.         textures[] = {};
  2254.     };
  2255.     class red_ram_06_red : red_taurus_10_black {};
  2256.     class red_ram_06_darkblue : red_taurus_10_black {};
  2257.     class red_ram_06_white : red_taurus_10_black {};
  2258.  
  2259.     class red_panamera_10_black {
  2260.         vItemSpace = 90;
  2261.         conditions = '';
  2262.         price = 125750;
  2263.         textures[] = {};
  2264.     };
  2265.     class red_panamera_10_aqua : red_panamera_10_black {};
  2266.     class red_panamera_10_green : red_panamera_10_black {};
  2267.     class red_panamera_10_red : red_panamera_10_black {};
  2268.     class red_panamera_10_pink : red_panamera_10_black {};
  2269.     class red_panamera_10_yellow : red_panamera_10_black {};
  2270.     class red_panamera_10_orange : red_panamera_10_black {};
  2271.     class red_panamera_10_white : red_panamera_10_black {};
  2272.     class red_panamera_10_purple : red_panamera_10_black {};
  2273.     class red_panamera_10_darkgreen : red_panamera_10_black {};
  2274.     class red_panamera_10_darkred : red_panamera_10_black {};
  2275.  
  2276.     class red_camaro_12_black {
  2277.         vItemSpace = 100;
  2278.         conditions = '';
  2279.         price = 188000;
  2280.         textures[] = {};
  2281.     };
  2282.     class red_camaro_12_aqua : red_camaro_12_black {};
  2283.     class red_camaro_12_darkblue : red_camaro_12_black {};
  2284.     class red_camaro_12_green : red_camaro_12_black {};
  2285.     class red_camaro_12_red : red_camaro_12_black {};
  2286.     class red_camaro_12_pink : red_camaro_12_black {};
  2287.     class red_camaro_12_yellow : red_camaro_12_black {};
  2288.     class red_camaro_12_orange : red_camaro_12_black {};
  2289.     class red_camaro_12_white : red_camaro_12_black {};
  2290.     class red_camaro_12_purple : red_camaro_12_black {};
  2291.     class red_camaro_12_darkgreen : red_camaro_12_black {};
  2292.     class red_camaro_12_darkred : red_camaro_12_black {};
  2293.     class red_camaro_12_blue : red_camaro_12_black {};
  2294.  
  2295.     class red_charger_15_black {
  2296.         vItemSpace = 90;
  2297.         conditions = '';
  2298.         price = 95000;
  2299.         textures[] = {};
  2300.     };
  2301.     class red_charger_15_aqua : red_charger_15_black {};
  2302.     class red_charger_15_green : red_charger_15_black {};
  2303.     class red_charger_15_red : red_charger_15_black {};
  2304.     class red_charger_15_pink : red_charger_15_black {};
  2305.     class red_charger_15_yellow : red_charger_15_black {};
  2306.     class red_charger_15_orange : red_charger_15_black {};
  2307.     class red_charger_15_white : red_charger_15_black {};
  2308.     class red_charger_15_purple : red_charger_15_black {};
  2309.     class red_charger_15_darkgreen : red_charger_15_black {};
  2310.     class red_charger_15_darkred : red_charger_15_black {};
  2311.  
  2312.     class red_charger_12_black {
  2313.         vItemSpace = 90;
  2314.         conditions = '';
  2315.         price = 90000;
  2316.         textures[] = {};
  2317.     };
  2318.     class red_charger_12_aqua : red_charger_12_black {};
  2319.     class red_charger_12_darkblue : red_charger_12_black {};
  2320.     class red_charger_12_green : red_charger_12_black {};
  2321.     class red_charger_12_red : red_charger_12_black {};
  2322.     class red_charger_12_pink : red_charger_12_black {};
  2323.     class red_charger_12_yellow : red_charger_12_black {};
  2324.     class red_charger_12_orange : red_charger_12_black {};
  2325.     class red_charger_12_white : red_charger_12_black {};
  2326.     class red_charger_12_purple : red_charger_12_black {};
  2327.     class red_charger_12_darkgreen : red_charger_12_black {};
  2328.     class red_charger_12_darkred : red_charger_12_black {};
  2329.  
  2330.     class red_x6_10_black {
  2331.         vItemSpace = 100;
  2332.         conditions = '';
  2333.         price = 109720;
  2334.         textures[] = {};
  2335.     };
  2336.     class red_x6_10_aqua : red_x6_10_black {};
  2337.     class red_x6_10_darkblue : red_x6_10_black {};
  2338.     class red_x6_10_green : red_x6_10_black {};
  2339.     class red_x6_10_red : red_x6_10_black {};
  2340.     class red_x6_10_pink : red_x6_10_black {};
  2341.     class red_x6_10_yellow : red_x6_10_black {};
  2342.     class red_x6_10_orange : red_x6_10_black {};
  2343.     class red_x6_10_white : red_x6_10_black {};
  2344.     class red_x6_10_purple : red_x6_10_black {};
  2345.     class red_x6_10_darkgreen : red_x6_10_black {};
  2346.     class red_x6_10_darkred : red_x6_10_black {};
  2347.     class red_x6_10_blue : red_x6_10_black {};
  2348.  
  2349.  
  2350.     class A3F_BMW_M5_F10_12_Black {
  2351.         vItemSpace = 100;
  2352.         conditions = '';
  2353.         price = 464541;
  2354.         textures[] = {};
  2355.     };
  2356.  
  2357.     class A3F_BMW_M5_F10_12_Blue : A3F_BMW_M5_F10_12_Black {};
  2358.     class A3F_BMW_M5_F10_12_Red : A3F_BMW_M5_F10_12_Black {};
  2359.     class A3F_BMW_M5_F10_12_White : A3F_BMW_M5_F10_12_Black {};
  2360.     class A3F_BMW_M5_F10_12_Green : A3F_BMW_M5_F10_12_Black {};
  2361.     class A3F_BMW_M5_F10_12_Silver : A3F_BMW_M5_F10_12_Black {};
  2362.  
  2363.     class Jonzie_Western {
  2364.         vItemSpace = 600; // 450
  2365.         conditions = "";
  2366.         price = 136500;
  2367.         textures[] = {};
  2368.     };
  2369.  
  2370.     class Jonzie_Tanker_Truck {
  2371.         vItemSpace = 450;
  2372.         vFuelSpace = 43875;
  2373.         conditions = "";
  2374.         price = 160000; // 65000
  2375.         textures[] = {};
  2376.     };
  2377.  
  2378.     class Jonzie_Box_Truck {
  2379.         vItemSpace = 750;
  2380.         conditions = "";
  2381.         price = 180000;
  2382.         textures[] = {};
  2383.     };
  2384.  
  2385.     class Jonzie_Transit {
  2386.         vItemSpace = 250;
  2387.         conditions = "";
  2388.         price = 80000;
  2389.         textures[] = {};
  2390.     };
  2391.  
  2392.     class ivory_gt500 {
  2393.         vItemSpace = 40;
  2394.         conditions = "";
  2395.         price = 40000;
  2396.         textures[] = {};
  2397.     };
  2398.  
  2399.     class ivory_rs4 {
  2400.         vItemSpace = 45;
  2401.         conditions = "";
  2402.         price = 45000;
  2403.         textures[] = {};
  2404.     };
  2405.  
  2406.     class ivory_suburban {
  2407.         vItemSpace = 50;
  2408.         conditions = "";
  2409.         price = 36000;
  2410.         textures[] = {};
  2411.     };
  2412.  
  2413.     class IVORY_R8 {
  2414.         vItemSpace = 30;
  2415.         conditions = "";
  2416.         price = 30500;
  2417.         textures[] = {};
  2418.     };
  2419.  
  2420.     class Jonzie_Viper {
  2421.         vItemSpace = 30;
  2422.         conditions = "";
  2423.         price = 40000;
  2424.         textures[] = {};
  2425.     };
  2426.  
  2427.     class ivory_isf {
  2428.         vItemSpace = 30;
  2429.         conditions = "";
  2430.         price = 30000;
  2431.         textures[] = {};
  2432.     };
  2433.  
  2434.     class ivory_lfa {
  2435.         vItemSpace = 30;
  2436.         conditions = "";
  2437.         price = 40000;
  2438.         textures[] = {};
  2439.     };
  2440.  
  2441.     class ivory_f1 {
  2442.         vItemSpace = 30;
  2443.         conditions = "";
  2444.         price = 50000;
  2445.         textures[] = {};
  2446.     };
  2447.  
  2448.     class ivory_190e {
  2449.         vItemSpace = 30;
  2450.         conditions = "";
  2451.         price = 25000;
  2452.         textures[] = {};
  2453.     };
  2454.  
  2455.     class ivory_evox {
  2456.         vItemSpace = 60;
  2457.         conditions = "";
  2458.         price = 25000;
  2459.         textures[] = {};
  2460.     };
  2461.  
  2462.     class ivory_r34 {
  2463.         vItemSpace = 30;
  2464.         conditions = "";
  2465.         price = 14500;
  2466.         textures[] = {};
  2467.     };
  2468.  
  2469.     class ivory_wrx {
  2470.         vItemSpace = 60;
  2471.         conditions = "";
  2472.         price = 25000;
  2473.         textures[] = {};
  2474.     };
  2475.  
  2476.     class ivory_gti {
  2477.         vItemSpace = 40;
  2478.         conditions = "";
  2479.         price = 26000;
  2480.         textures[] = {};
  2481.     };
  2482.  
  2483.     class Jonzie_Galant { //PaySex ~ Zitat vom 28.10.2017 um 2:55 Uhr von Mike | Roccatti
  2484.         vItemSpace = 60;
  2485.         conditions = "";
  2486.         price = 850;
  2487.         textures[] = {};
  2488.     };
  2489.  
  2490.     class Jonzie_Mini_Cooper_R_spec {
  2491.         vItemSpace = 35;
  2492.         conditions = "";
  2493.         price = 3000;
  2494.         textures[] = {};
  2495.     };
  2496.  
  2497.     class Jonzie_Mini_Cooper {
  2498.         vItemSpace = 35;
  2499.         conditions = "";
  2500.         price = 1500;
  2501.         textures[] = {};
  2502.     };
  2503.  
  2504.     class Jonzie_VE {
  2505.         vItemSpace = 50;
  2506.         conditions = "";
  2507.         price = 2000;
  2508.         textures[] = {};
  2509.     };
  2510.  
  2511.     class Jonzie_Raptor {
  2512.         vItemSpace = 80;
  2513.         conditions = "";
  2514.         price = 8000;
  2515.         textures[] = {};
  2516.     };
  2517.  
  2518.     class Jonzie_Datsun_510 {
  2519.         vItemSpace = 45;
  2520.         conditions = "";
  2521.         price = 1200;
  2522.         textures[] = {};
  2523.     };
  2524.  
  2525.     class Jonzie_Escalade {
  2526.         vItemSpace = 65;
  2527.         conditions = "";
  2528.         price = 20000;
  2529.         textures[] = {};
  2530.     };
  2531.  
  2532.     class Jonzie_30CSL {
  2533.         vItemSpace = 50;
  2534.         conditions = "";
  2535.         price = 1500;
  2536.         textures[] = {};
  2537.     };
  2538.  
  2539.     // Apex DLC
  2540.     class C_Boat_Transport_02_F {
  2541.         vItemSpace = 100;
  2542.         conditions = "license_civ_boat || {!(playerSide isEqualTo civilian)}";
  2543.         price = 76111;
  2544.         textures[] = {
  2545.             { "Civilian", "civ", {
  2546.                 "\A3\Boat_F_Exp\Boat_Transport_02\Data\Boat_Transport_02_exterior_civilian_CO.paa"
  2547.             }, "" },
  2548.             { "Black", "cop", {
  2549.                 "\A3\Boat_F_Exp\Boat_Transport_02\Data\Boat_Transport_02_exterior_CO.paa"
  2550.             }, "" }
  2551.         };
  2552.     };
  2553.  
  2554.     // Apex DLC
  2555.     class C_Offroad_02_unarmed_F {
  2556.         vItemSpace = 65;
  2557.         conditions = "license_civ_driver || {!(playerSide isEqualTo civilian)}";
  2558.         price = 12500;
  2559.         textures[] = {
  2560.             { "Black", "civ", {
  2561.                 "\A3\Soft_F_Exp\Offroad_02\Data\offroad_02_ext_black_co.paa"
  2562.             }, "" },
  2563.             { "Blue", "civ", {
  2564.                 "\A3\Soft_F_Exp\Offroad_02\Data\offroad_02_ext_blue_co.paa"
  2565.             }, "" },
  2566.             { "Green", "civ", {
  2567.                 "\A3\Soft_F_Exp\Offroad_02\Data\offroad_02_ext_green_co.paa"
  2568.             }, "" },
  2569.             { "Orange", "civ", {
  2570.                 "\A3\Soft_F_Exp\Offroad_02\Data\offroad_02_ext_orange_co.paa"
  2571.             }, "" },
  2572.             { "Red", "civ", {
  2573.                 "\A3\Soft_F_Exp\Offroad_02\Data\offroad_02_ext_red_co.paa"
  2574.             }, "" },
  2575.             { "White", "civ", {
  2576.                 "\A3\Soft_F_Exp\Offroad_02\Data\offroad_02_ext_white_co.paa"
  2577.             }, "" }
  2578.         };
  2579.     };
  2580.  
  2581.     // Apex DLC
  2582.     class C_Plane_Civil_01_F {
  2583.         vItemSpace = 75;
  2584.         conditions = "license_civ_pilot || {!(playerSide isEqualTo civilian)}";
  2585.         price = 150000;
  2586.         textures[] = {
  2587.             { "Racing (Tan Interior)", "civ", {
  2588.                 "A3\Air_F_Exp\Plane_Civil_01\Data\btt_ext_01_Racer_co.paa",
  2589.                 "A3\Air_F_Exp\Plane_Civil_01\Data\btt_ext_02_Racer_co.paa",
  2590.                 "A3\Air_F_Exp\Plane_Civil_01\Data\btt_int_01_tan_co.paa",
  2591.                 "A3\Air_F_Exp\Plane_Civil_01\Data\btt_int_02_tan_co.paa"
  2592.             }, "" },
  2593.             { "Racing", "civ", {
  2594.                 "A3\Air_F_Exp\Plane_Civil_01\Data\btt_ext_01_Racer_co.paa",
  2595.                 "A3\Air_F_Exp\Plane_Civil_01\Data\btt_ext_02_Racer_co.paa",
  2596.                 "A3\Air_F_Exp\Plane_Civil_01\Data\btt_int_01_co.paa",
  2597.                 "A3\Air_F_Exp\Plane_Civil_01\Data\btt_int_02_co.paa"
  2598.             }, "" },
  2599.             { "Red Line (Tan Interior)", "civ", {
  2600.                 "A3\Air_F_Exp\Plane_Civil_01\Data\btt_ext_01_RedLine_co.paa",
  2601.                 "A3\Air_F_Exp\Plane_Civil_01\Data\btt_ext_02_RedLine_co.paa",
  2602.                 "A3\Air_F_Exp\Plane_Civil_01\Data\btt_int_01_tan_co.paa",
  2603.                 "A3\Air_F_Exp\Plane_Civil_01\Data\btt_int_02_tan_co.paa"
  2604.             }, "" },
  2605.             { "Red Line", "civ", {
  2606.                 "A3\Air_F_Exp\Plane_Civil_01\Data\btt_ext_01_RedLine_co.paa",
  2607.                 "A3\Air_F_Exp\Plane_Civil_01\Data\btt_ext_02_RedLine_co.paa",
  2608.                 "A3\Air_F_Exp\Plane_Civil_01\Data\btt_int_01_co.paa",
  2609.                 "A3\Air_F_Exp\Plane_Civil_01\Data\btt_int_02_co.paa"
  2610.             }, "" },
  2611.             { "Tribal (Tan Interior)", "civ", {
  2612.                 "A3\Air_F_Exp\Plane_Civil_01\Data\btt_ext_01_Tribal_co.paa",
  2613.                 "A3\Air_F_Exp\Plane_Civil_01\Data\btt_ext_02_Tribal_co.paa",
  2614.                 "A3\Air_F_Exp\Plane_Civil_01\Data\btt_int_01_tan_co.paa",
  2615.                 "A3\Air_F_Exp\Plane_Civil_01\Data\btt_int_02_tan_co.paa"
  2616.             }, "" },
  2617.             { "Tribal", "civ", {
  2618.                 "A3\Air_F_Exp\Plane_Civil_01\Data\btt_ext_01_Tribal_co.paa",
  2619.                 "A3\Air_F_Exp\Plane_Civil_01\Data\btt_ext_02_Tribal_co.paa",
  2620.                 "A3\Air_F_Exp\Plane_Civil_01\Data\btt_int_01_co.paa",
  2621.                 "A3\Air_F_Exp\Plane_Civil_01\Data\btt_int_02_co.paa"
  2622.             }, "" },
  2623.             { "Blue Wave (Tan Interior)", "civ", {
  2624.                 "A3\Air_F_Exp\Plane_Civil_01\Data\btt_ext_01_Wave_co.paa",
  2625.                 "A3\Air_F_Exp\Plane_Civil_01\Data\btt_ext_02_Wave_co.paa",
  2626.                 "A3\Air_F_Exp\Plane_Civil_01\Data\btt_int_01_tan_co.paa",
  2627.                 "A3\Air_F_Exp\Plane_Civil_01\Data\btt_int_02_tan_co.paa"
  2628.             }, "" },
  2629.             { "Blue Wave", "civ", {
  2630.                 "A3\Air_F_Exp\Plane_Civil_01\Data\btt_ext_01_Wave_co.paa",
  2631.                 "A3\Air_F_Exp\Plane_Civil_01\Data\btt_ext_02_Wave_co.paa",
  2632.                 "A3\Air_F_Exp\Plane_Civil_01\Data\btt_int_01_co.paa",
  2633.                 "A3\Air_F_Exp\Plane_Civil_01\Data\btt_int_02_co.paa"
  2634.             }, "" }
  2635.         };
  2636.     };
  2637.  
  2638.     // Apex DLC
  2639.     class C_Scooter_Transport_01_F {
  2640.         vItemSpace = 30;
  2641.         conditions = "license_civ_boat || {!(playerSide isEqualTo civilian)}";
  2642.         price = 10561;
  2643.         textures[] = {
  2644.             { "Black", "civ", {
  2645.                 "\A3\Boat_F_Exp\Scooter_Transport_01\Data\Scooter_Transport_01_Black_CO.paa",
  2646.                 "\A3\Boat_F_Exp\Scooter_Transport_01\Data\Scooter_Transport_01_VP_Black_CO.paa"
  2647.             }, "" },
  2648.             { "Blue", "civ", {
  2649.                 "\A3\Boat_F_Exp\Scooter_Transport_01\Data\Scooter_Transport_01_Blue_co.paa",
  2650.                 "\A3\Boat_F_Exp\Scooter_Transport_01\Data\Scooter_Transport_01_VP_Blue_co.paa"
  2651.             }, "" },
  2652.             { "Grey", "civ", {
  2653.                 "\A3\Boat_F_Exp\Scooter_Transport_01\Data\Scooter_Transport_01_Grey_co.paa",
  2654.                 "\A3\Boat_F_Exp\Scooter_Transport_01\Data\Scooter_Transport_01_VP_Grey_co.paa"
  2655.             }, "" },
  2656.             { "Green", "civ", {
  2657.                 "\A3\Boat_F_Exp\Scooter_Transport_01\Data\Scooter_Transport_01_Lime_co.paa",
  2658.                 "\A3\Boat_F_Exp\Scooter_Transport_01\Data\Scooter_Transport_01_VP_Lime_co.paa"
  2659.             }, "" },
  2660.             { "Red", "civ", {
  2661.                 "\A3\Boat_F_Exp\Scooter_Transport_01\Data\Scooter_Transport_01_Red_CO.paa",
  2662.                 "\A3\Boat_F_Exp\Scooter_Transport_01\Data\Scooter_Transport_01_VP_CO.paa"
  2663.             }, "" },
  2664.             { "White", "civ", {
  2665.                 "\A3\Boat_F_Exp\Scooter_Transport_01\Data\Scooter_Transport_01_CO.paa",
  2666.                 "\A3\Boat_F_Exp\Scooter_Transport_01\Data\Scooter_Transport_01_VP_CO.paa"
  2667.             }, "" },
  2668.             { "Yellow", "civ", {
  2669.                 "\A3\Boat_F_Exp\Scooter_Transport_01\Data\Scooter_Transport_01_Yellow_CO.paa",
  2670.                 "\A3\Boat_F_Exp\Scooter_Transport_01\Data\Scooter_Transport_01_VP_Yellow_CO.paa"
  2671.             }, "" }
  2672.         };
  2673.     };
  2674.  
  2675.     // Apex DLC
  2676.     class O_T_LSV_02_unarmed_F {
  2677.         vItemSpace = 100;
  2678.         conditions = "";
  2679.         price = 100000;
  2680.         textures[] = {
  2681.             { "Arid", "civ", {
  2682.                 "\A3\Soft_F_Exp\LSV_02\Data\CSAT_LSV_01_arid_CO.paa",
  2683.                 "\A3\Soft_F_Exp\LSV_02\Data\CSAT_LSV_02_arid_CO.paa",
  2684.                 "\A3\Soft_F_Exp\LSV_02\Data\CSAT_LSV_03_arid_CO.paa"
  2685.             }, "" },
  2686.             { "Black", "civ", {
  2687.                 "\A3\Soft_F_Exp\LSV_02\Data\CSAT_LSV_01_black_CO.paa",
  2688.                 "\A3\Soft_F_Exp\LSV_02\Data\CSAT_LSV_02_black_CO.paa",
  2689.                 "\A3\Soft_F_Exp\LSV_02\Data\CSAT_LSV_03_black_CO.paa"
  2690.             }, "" },
  2691.             { "Green Hex", "civ", {
  2692.                 "\A3\Soft_F_Exp\LSV_02\Data\CSAT_LSV_01_ghex_CO.paa",
  2693.                 "\A3\Soft_F_Exp\LSV_02\Data\CSAT_LSV_02_ghex_CO.paa",
  2694.                 "\A3\Soft_F_Exp\LSV_02\Data\CSAT_LSV_03_ghex_CO.paa"
  2695.             }, "" }
  2696.         };
  2697.     };
  2698.  
  2699.     class I_Truck_02_medical_F {
  2700.         vItemSpace = 150;
  2701.         conditions = "";
  2702.         price = 25000;
  2703.         textures[] = {};
  2704.     };
  2705.  
  2706.  
  2707.     class Kenworth_T440_Box_Black {
  2708.         vItemSpace = 700;
  2709.         conditions = "";
  2710.         price = 160000;
  2711.         textures[] = {};
  2712.     };
  2713.  
  2714.  
  2715.     class Kenworth_T440_Box_Blue : Kenworth_T440_Box_Black {};
  2716.     class Kenworth_T440_Box_Red : Kenworth_T440_Box_Black {};
  2717.     class Kenworth_T440_Box_White : Kenworth_T440_Box_Black {};
  2718.     class Kenworth_T440_Box_Green : Kenworth_T440_Box_Black {};
  2719.     class Kenworth_T440_Box_UC : Kenworth_T440_Box_Black {};
  2720.  
  2721.     class O_Truck_03_medical_F {
  2722.         vItemSpace = 200;
  2723.         conditions = "";
  2724.         price = 45000;
  2725.         textures[] = {};
  2726.     };
  2727.  
  2728.     class B_Truck_01_medical_F {
  2729.         vItemSpace = 250;
  2730.         conditions = "";
  2731.         price = 60000;
  2732.         textures[] = {};
  2733.     };
  2734.  
  2735.     class C_Rubberboat {
  2736.         vItemSpace = 45;
  2737.         conditions = "license_civ_boat || {!(playerSide isEqualTo civilian)}";
  2738.         price = 25111;
  2739.         textures[] = { };
  2740.     };
  2741.  
  2742.     class B_Heli_Transport_01_F {
  2743.         vItemSpace = 200;
  2744.         conditions = "license_cop_cAir || {!(playerSide isEqualTo west)}";
  2745.         price = 200000;
  2746.         textures[] = {};
  2747.     };
  2748.  
  2749.     class B_MRAP_01_hmg_F {
  2750.         vItemSpace = 100;
  2751.         conditions = "";
  2752.         price = 750000;
  2753.         textures[] = {
  2754.             { "Black", "cop", {
  2755.                 "#(argb,8,8,3)color(0.05,0.05,0.05,1)",
  2756.                 "#(argb,8,8,3)color(0.05,0.05,0.05,1)",
  2757.                 "#(argb,8,8,3)color(0.05,0.05,0.05,1)"
  2758.             }, "" }
  2759.         };
  2760.     };
  2761.  
  2762.     class B_Boat_Armed_01_minigun_F {
  2763.         vItemSpace = 175;
  2764.         conditions = "";
  2765.         price = 75000;
  2766.         textures[] = { };
  2767.     };
  2768.  
  2769.     class B_Boat_Transport_01_F {
  2770.         vItemSpace = 45;
  2771.         conditions = "";
  2772.         price = 3000;
  2773.         textures[] = { };
  2774.     };
  2775.  
  2776.     class O_Truck_03_transport_F {
  2777.         vItemSpace = 285;
  2778.         conditions = "license_civ_trucking || {!(playerSide isEqualTo civilian)}";
  2779.         price = 200000;
  2780.         textures[] = { };
  2781.     };
  2782.  
  2783.     class O_Truck_03_device_F {
  2784.         vItemSpace = 350;
  2785.         conditions = "license_civ_trucking || {!(playerSide isEqualTo civilian)}";
  2786.         price = 450000;
  2787.         textures[] = { };
  2788.     };
  2789.  
  2790.     class Land_CargoBox_V1_F {
  2791.         vItemSpace = 5000;
  2792.         conditions = "";
  2793.         price = -1;
  2794.         textures[] = {};
  2795.     };
  2796.  
  2797.     class Box_IND_Grenades_F {
  2798.         vItemSpace = 350;
  2799.         conditions = "";
  2800.         price = -1;
  2801.         textures[] = {};
  2802.     };
  2803.  
  2804.     class B_supplyCrate_F {
  2805.         vItemSpace = 700;
  2806.         conditions = "";
  2807.         price = -1;
  2808.         textures[] = {};
  2809.     };
  2810.  
  2811.     class B_G_Offroad_01_F {
  2812.         vItemSpace = 65;
  2813.         conditions = "";
  2814.         price = 12500;
  2815.         textures[] = { };
  2816.     };
  2817.  
  2818.     class B_G_Offroad_01_armed_F {
  2819.         vItemSpace = 65;
  2820.         conditions = "license_civ_rebel || {!(playerSide isEqualTo civilian)}";
  2821.         price = 750000;
  2822.         textures[] = { };
  2823.     };
  2824.  
  2825.     class C_Boat_Civil_01_F {
  2826.         vItemSpace = 85;
  2827.         conditions = "license_civ_boat || {!(playerSide isEqualTo civilian)}";
  2828.         price = 28666;
  2829.         textures[] = { };
  2830.     };
  2831.  
  2832.     class C_Boat_Civil_01_police_F {
  2833.         vItemSpace = 85;
  2834.         conditions = "";
  2835.         price = 20000;
  2836.         textures[] = { };
  2837.     };
  2838.  
  2839.     class B_Truck_01_box_F {
  2840.         vItemSpace = 450;
  2841.         conditions = "license_civ_trucking || {!(playerSide isEqualTo civilian)}";
  2842.         price = 350000;
  2843.         textures[] = { };
  2844.     };
  2845.  
  2846.     class B_Truck_01_transport_F {
  2847.         vItemSpace = 325;
  2848.         conditions = "license_civ_trucking || {!(playerSide isEqualTo civilian)}";
  2849.         price = 275000;
  2850.         textures[] = { };
  2851.     };
  2852.  
  2853.     class O_MRAP_02_F {
  2854.         vItemSpace = 60;
  2855.         conditions = "license_civ_driver || {!(playerSide isEqualTo civilian)}";
  2856.         price = 150000;
  2857.         textures[] = { };
  2858.     };
  2859.  
  2860.     class C_Offroad_01_F {
  2861.         vItemSpace = 65;
  2862.         conditions = "license_civ_driver || {!(playerSide isEqualTo civilian)}";
  2863.         price = 12500;
  2864.         textures[] = {
  2865.             { "Red", "civ", {
  2866.                 "\A3\soft_F\Offroad_01\Data\offroad_01_ext_co.paa",
  2867.                 "\A3\soft_F\Offroad_01\Data\offroad_01_ext_co.paa"
  2868.             }, "" },
  2869.             { "Yellow", "civ", {
  2870.                 "\A3\soft_F\Offroad_01\Data\offroad_01_ext_BASE01_CO.paa",
  2871.                 "\A3\soft_F\Offroad_01\Data\offroad_01_ext_BASE01_CO.paa"
  2872.             }, "" },
  2873.             { "White", "civ", {
  2874.                 "\A3\soft_F\Offroad_01\Data\offroad_01_ext_BASE02_CO.paa",
  2875.                 "\A3\soft_F\Offroad_01\Data\offroad_01_ext_BASE02_CO.paa"
  2876.             }, "" },
  2877.             { "Blue", "civ", {
  2878.                 "\A3\soft_F\Offroad_01\Data\offroad_01_ext_BASE03_CO.paa",
  2879.                 "\A3\soft_F\Offroad_01\Data\offroad_01_ext_BASE03_CO.paa"
  2880.             }, "" },
  2881.             { "Dark Red", "civ", {
  2882.                 "\A3\soft_F\Offroad_01\Data\offroad_01_ext_BASE04_CO.paa",
  2883.                 "\A3\soft_F\Offroad_01\Data\offroad_01_ext_BASE04_CO.paa"
  2884.             }, "" },
  2885.             { "Blue / White", "civ", {
  2886.                 "\A3\soft_F\Offroad_01\Data\offroad_01_ext_BASE05_CO.paa",
  2887.                 "\A3\soft_F\Offroad_01\Data\offroad_01_ext_BASE05_CO.paa"
  2888.             }, "" },
  2889.             { "Taxi", "civ", {
  2890.                 "#(argb,8,8,3)color(0.6,0.3,0.01,1)"
  2891.             }, "" },
  2892.             { "Police", "cop", {
  2893.                 "#(ai,64,64,1)Fresnel(1.3,7)"
  2894.             }, "" }
  2895.         };
  2896.     };
  2897.  
  2898.     class C_Kart_01_Blu_F {
  2899.         vItemSpace = 20;
  2900.         conditions = "license_civ_driver || {!(playerSide isEqualTo civilian)}";
  2901.         price = 15000;
  2902.         textures[] = {};
  2903.     };
  2904. /*
  2905. To edit another information in this classes you can use this exemple.
  2906. class C_Kart_01_Fuel_F : C_Kart_01_Blu_F{
  2907.     vItemSpace = 40;
  2908.     price = ;
  2909. };
  2910.  
  2911. 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 {};
  2912. */
  2913.     class C_Kart_01_Fuel_F : C_Kart_01_Blu_F{}; // Get all information of C_Kart_01_Blu_F
  2914.     class C_Kart_01_Red_F : C_Kart_01_Blu_F{};
  2915.     class C_Kart_01_Vrana_F : C_Kart_01_Blu_F{};
  2916.  
  2917.     class C_Hatchback_01_sport_F {
  2918.         vItemSpace = 45;
  2919.         conditions = "license_civ_driver || {!(playerSide isEqualTo civilian)}";
  2920.         price = 40000;
  2921.         textures[] = {
  2922.             { "Red", "civ", {
  2923.                 "\a3\soft_f_gamma\Hatchback_01\data\hatchback_01_ext_sport01_co.paa"
  2924.             }, "" },
  2925.             { "Dark Blue", "civ", {
  2926.                 "\a3\soft_f_gamma\Hatchback_01\data\hatchback_01_ext_sport02_co.paa"
  2927.             }, "" },
  2928.             { "Orange", "civ", {
  2929.                 "\a3\soft_f_gamma\Hatchback_01\data\hatchback_01_ext_sport03_co.paa"
  2930.             }, "" },
  2931.             { "Black / White", "civ", {
  2932.                 "\a3\soft_f_gamma\Hatchback_01\data\hatchback_01_ext_sport04_co.paa"
  2933.             }, "" },
  2934.             { "Beige", "civ", {
  2935.                 "\a3\soft_f_gamma\Hatchback_01\data\hatchback_01_ext_sport05_co.paa"
  2936.             }, "" },
  2937.             { "Green", "civ", {
  2938.                 "\a3\soft_f_gamma\Hatchback_01\data\hatchback_01_ext_sport06_co.paa"
  2939.             }, "" },
  2940.             { "Police", "cop", {
  2941.                 "#(ai,64,64,1)Fresnel(1.3,7)"
  2942.             }, "" }
  2943.         };
  2944.     };
  2945.  
  2946.     class B_Quadbike_01_F {
  2947.         vItemSpace = 25;
  2948.         conditions = "license_civ_driver || {!(playerSide isEqualTo civilian)}";
  2949.         price = 2500;
  2950.         textures[] = {
  2951.             { "Brown", "cop", {
  2952.                 "\A3\Soft_F\Quadbike_01\Data\Quadbike_01_co.paa"
  2953.             }, "" },
  2954.             { "Digi Desert", "reb", {
  2955.                 "\A3\Soft_F\Quadbike_01\Data\quadbike_01_opfor_co.paa"
  2956.             }, "" },
  2957.             { "Black", "civ", {
  2958.                 "\A3\Soft_F_beta\Quadbike_01\Data\quadbike_01_civ_black_co.paa"
  2959.             }, "" },
  2960.             { "Blue", "civ", {
  2961.                 "\A3\Soft_F_beta\Quadbike_01\Data\quadbike_01_civ_blue_co.paa"
  2962.             }, "" },
  2963.             { "Red", "civ", {
  2964.                 "\A3\Soft_F_beta\Quadbike_01\Data\quadbike_01_civ_red_co.paa"
  2965.             }, "" },
  2966.             { "White", "civ", {
  2967.                 "\A3\Soft_F_beta\Quadbike_01\Data\quadbike_01_civ_white_co.paa"
  2968.             }, "" },
  2969.             { "Digi Green", "civ", {
  2970.                 "\A3\Soft_F_beta\Quadbike_01\Data\quadbike_01_indp_co.paa"
  2971.             }, "" },
  2972.             { "Hunter Camo", "civ", {
  2973.                 "\a3\soft_f_gamma\Quadbike_01\data\quadbike_01_indp_hunter_co.paa"
  2974.             }, "" },
  2975.             { "Rebel Camo", "reb", {
  2976.                 "\a3\soft_f_gamma\Quadbike_01\data\quadbike_01_indp_hunter_co.paa"
  2977.             }, "" }
  2978.         };
  2979.     };
  2980.  
  2981.     class I_Truck_02_covered_F {
  2982.         vItemSpace = 250;
  2983.         conditions = "license_civ_trucking || {!(playerSide isEqualTo civilian)}";
  2984.         price = 100000;
  2985.         textures[] = {
  2986.             { "Orange", "civ", {
  2987.                 "\A3\Soft_F_Beta\Truck_02\data\truck_02_kab_co.paa",
  2988.                 "\a3\soft_f_beta\Truck_02\data\truck_02_kuz_co.paa"
  2989.             }, "" },
  2990.             { "Black", "cop", {
  2991.                 "#(argb,8,8,3)color(0.05,0.05,0.05,1)"
  2992.             }, "" }
  2993.         };
  2994.     };
  2995.  
  2996.     class I_Truck_02_transport_F {
  2997.         vItemSpace = 200;
  2998.         conditions = "license_civ_trucking || {!(playerSide isEqualTo civilian)}";
  2999.         price = 75000;
  3000.         textures[] = {
  3001.             { "Orange", "civ", {
  3002.                 "\A3\Soft_F_Beta\Truck_02\data\truck_02_kab_co.paa",
  3003.                 "\a3\soft_f_beta\Truck_02\data\truck_02_kuz_co.paa"
  3004.             }, "" },
  3005.             { "Black", "cop", {
  3006.                 "#(argb,8,8,3)color(0.05,0.05,0.05,1)"
  3007.             }, "" }
  3008.         };
  3009.     };
  3010.  
  3011.     class O_Truck_03_covered_F {
  3012.         vItemSpace = 300;
  3013.         conditions = "license_civ_trucking || {!(playerSide isEqualTo civilian)}";
  3014.         price = 250000;
  3015.         textures[] = {};
  3016.     };
  3017.  
  3018.     class C_Hatchback_01_F {
  3019.         vItemSpace = 40;
  3020.         conditions = "license_civ_driver || {!(playerSide isEqualTo civilian)}";
  3021.         price = 9500;
  3022.         textures[] = {
  3023.             { "Beige", "civ", {
  3024.                 "\a3\soft_f_gamma\Hatchback_01\data\hatchback_01_ext_base01_co.paa"
  3025.             }, "" },
  3026.             { "Green", "civ", {
  3027.                 "\a3\soft_f_gamma\Hatchback_01\data\hatchback_01_ext_base02_co.paa"
  3028.             }, "" },
  3029.             { "Blue", "civ", {
  3030.                 "\a3\soft_f_gamma\Hatchback_01\data\hatchback_01_ext_base03_co.paa"
  3031.             }, "" },
  3032.             { "Dark Blue", "civ", {
  3033.                 "\a3\soft_f_gamma\Hatchback_01\data\hatchback_01_ext_base04_co.paa"
  3034.             }, "" },
  3035.             { "Yellow", "civ", {
  3036.                 "\a3\soft_f_gamma\Hatchback_01\data\hatchback_01_ext_base06_co.paa"
  3037.             }, "" },
  3038.             { "White", "civ", {
  3039.                 "\a3\soft_f_gamma\Hatchback_01\data\hatchback_01_ext_base07_co.paa"
  3040.             }, "" },
  3041.             { "Grey", "civ", {
  3042.                 "\a3\soft_f_gamma\Hatchback_01\data\hatchback_01_ext_base08_co.paa"
  3043.             }, "" },
  3044.             { "Black", "civ", {
  3045.                 "\a3\soft_f_gamma\Hatchback_01\data\hatchback_01_ext_base09_co.paa"
  3046.             }, "" }
  3047.         };
  3048.     };
  3049.  
  3050.     class C_SUV_01_F {
  3051.         vItemSpace = 50;
  3052.         conditions = "license_civ_driver || {!(playerSide isEqualTo civilian)}";
  3053.         price = 30000;
  3054.         textures[] = {
  3055.             { "Dark Red", "civ", {
  3056.                 "\a3\soft_f_gamma\SUV_01\Data\suv_01_ext_co.paa"
  3057.             }, "" },
  3058.             { "Silver", "civ", {
  3059.                 "\a3\soft_f_gamma\SUV_01\Data\suv_01_ext_03_co.paa"
  3060.             }, "" },
  3061.             { "Orange", "civ", {
  3062.                 "\a3\soft_f_gamma\SUV_01\Data\suv_01_ext_04_co.paa"
  3063.             }, "" },
  3064.             { "Police", "cop", {
  3065.                 "\a3\soft_f_gamma\SUV_01\Data\suv_01_ext_02_co.paa"
  3066.             }, "" }
  3067.         };
  3068.     };
  3069.  
  3070.     class C_Van_01_transport_F {
  3071.         vItemSpace = 100;
  3072.         conditions = "license_civ_driver || {!(playerSide isEqualTo civilian)}";
  3073.         price = 45000;
  3074.         textures[] = {
  3075.             { "White", "civ", {
  3076.                 "\a3\soft_f_gamma\Van_01\Data\van_01_ext_co.paa"
  3077.             }, "" },
  3078.             { "Red", "civ", {
  3079.                 "\a3\soft_f_gamma\Van_01\Data\van_01_ext_red_co.paa"
  3080.             }, "" }
  3081.         };
  3082.     };
  3083.  
  3084.     class C_Van_01_box_F {
  3085.         vItemSpace = 150;
  3086.         conditions = "license_civ_trucking || {!(playerSide isEqualTo civilian)}";
  3087.         price = 60000;
  3088.         textures[] = {
  3089.             { "White", "civ", {
  3090.                 "\a3\soft_f_gamma\Van_01\Data\van_01_ext_co.paa"
  3091.             }, "" },
  3092.             { "Red", "civ", {
  3093.                 "\a3\soft_f_gamma\Van_01\Data\van_01_ext_red_co.paa"
  3094.             }, "" }
  3095.         };
  3096.     };
  3097.  
  3098.     class B_MRAP_01_F {
  3099.         vItemSpace = 65;
  3100.         conditions = "";
  3101.         price = 30000;
  3102.         textures[] = {
  3103.             { "Black", "cop", {
  3104.                 "#(argb,8,8,3)color(0.05,0.05,0.05,1)",
  3105.                 "#(argb,8,8,3)color(0.05,0.05,0.05,1)"
  3106.             }, "" }
  3107.         };
  3108.     };
  3109.  
  3110.     class B_Heli_Light_01_stripped_F {
  3111.         vItemSpace = 15;
  3112.         conditions = "";
  3113.         price = 275000;
  3114.         textures[] = {
  3115.             { "Rebel Digital", "reb", {
  3116.                 "\a3\air_f\Heli_Light_01\Data\Skins\heli_light_01_ext_digital_co.paa"
  3117.             }, "" }
  3118.         };
  3119.     };
  3120.     class EC635_ADAC {
  3121.         vItemSpace = 175;
  3122.         conditions = "license_med_mAir";
  3123.         price = 75000;
  3124.         textures[] = {};
  3125.     };
  3126.     class EC635_EMS {
  3127.         vItemSpace = 175;
  3128.         conditions = "license_med_mAir";
  3129.         price = 45000;
  3130.         textures[] = {};
  3131.     };
  3132.     class MELB_MH6M { //new
  3133.         vItemSpace = 175;
  3134.         conditions = "";
  3135.         price = 80000;
  3136.         textures[] = {};
  3137.     };
  3138.     class MELB_H6M { //new
  3139.         vItemSpace = 175;
  3140.         conditions = "";
  3141.         price = 80000;
  3142.         textures[] = {};
  3143.     };
  3144.     class NH90 { //new
  3145.         vItemSpace = 175;
  3146.         conditions = "";
  3147.         price = 160000;
  3148.         textures[] = {};
  3149.     };
  3150.         class B_Heli_Transport_03_unarmed_F { //new
  3151.         vItemSpace = 175;
  3152.         conditions = "";
  3153.         price = 200000;
  3154.         textures[] = {};
  3155.     };
  3156.     class EC635_Police {
  3157.         vItemSpace = 175;
  3158.         conditions = "";
  3159.         price = 100000;
  3160.         textures[] = {};
  3161.     };
  3162.     class EC635_Unarmed {
  3163.         vItemSpace = 175;
  3164.         conditions = "";
  3165.         price = 275000;
  3166.         textures[] = {};
  3167.     };
  3168.     class B_Heli_Light_01_F {
  3169.         vItemSpace = 15;
  3170.         conditions = "license_civ_pilot || {license_cop_cAir} || {license_med_mAir}";
  3171.         price = 15000;
  3172.         textures[] = {
  3173.             { "Police", "cop", {
  3174.                 "\a3\air_f\Heli_Light_01\Data\heli_light_01_ext_ion_co.paa"
  3175.             }, "" },
  3176.             { "Sheriff", "civ", {
  3177.                 "\a3\air_f\Heli_Light_01\Data\Skins\heli_light_01_ext_sheriff_co.paa"
  3178.             }, "" },
  3179.             { "Civ Blue", "civ", {
  3180.                 "\a3\air_f\Heli_Light_01\Data\heli_light_01_ext_blue_co.paa"
  3181.             }, "" },
  3182.             { "Civ Red", "civ", {
  3183.                 "\a3\air_f\Heli_Light_01\Data\heli_light_01_ext_co.paa"
  3184.             }, "" },
  3185.             { "Blueline", "civ", {
  3186.                 "\a3\air_f\Heli_Light_01\Data\Skins\heli_light_01_ext_blueline_co.paa"
  3187.             }, "" },
  3188.             { "Elliptical", "civ", {
  3189.                 "\a3\air_f\Heli_Light_01\Data\Skins\heli_light_01_ext_elliptical_co.paa"
  3190.             }, "" },
  3191.             { "Furious", "civ", {
  3192.                 "\a3\air_f\Heli_Light_01\Data\Skins\heli_light_01_ext_furious_co.paa"
  3193.             }, "" },
  3194.             { "Jeans Blue", "civ", {
  3195.                 "\a3\air_f\Heli_Light_01\Data\Skins\heli_light_01_ext_jeans_co.paa"
  3196.             }, "" },
  3197.             { "Speedy Redline", "civ", {
  3198.                 "\a3\air_f\Heli_Light_01\Data\Skins\heli_light_01_ext_speedy_co.paa"
  3199.             }, "" },
  3200.             { "Sunset", "civ", {
  3201.                 "\a3\air_f\Heli_Light_01\Data\Skins\heli_light_01_ext_sunset_co.paa"
  3202.             }, "" },
  3203.             { "Vrana", "civ", {
  3204.                 "\a3\air_f\Heli_Light_01\Data\Skins\heli_light_01_ext_vrana_co.paa"
  3205.             }, "" },
  3206.             { "Waves Blue", "civ", {
  3207.                 "\a3\air_f\Heli_Light_01\Data\Skins\heli_light_01_ext_wave_co.paa"
  3208.             }, "" },
  3209.             { "Rebel Digital", "reb", {
  3210.                 "\a3\air_f\Heli_Light_01\Data\Skins\heli_light_01_ext_digital_co.paa"
  3211.             }, "" },
  3212.             { "Digi Green", "reb", {
  3213.                 "\a3\air_f\Heli_Light_01\Data\heli_light_01_ext_indp_co.paa"
  3214.             }, "" },
  3215.             { "EMS White", "med", {
  3216.                 "#(argb,8,8,3)color(1,1,1,0.8)"
  3217.             }, "" }
  3218.         };
  3219.     };
  3220.  
  3221.     class C_Heli_Light_01_civil_F : B_Heli_Light_01_F {
  3222.         vItemSpace = 75;
  3223.         price = 245000;
  3224.     };
  3225.  
  3226.     class O_Heli_Light_02_unarmed_F {
  3227.         vItemSpace = 210;
  3228.         conditions = "license_civ_pilot || {license_med_mAir} || {(playerSide isEqualTo west)}";
  3229.         price = 750000;
  3230.         textures[] = {
  3231.             { "Black", "cop", {
  3232.                 "\a3\air_f\Heli_Light_02\Data\heli_light_02_ext_co.paa"
  3233.             }, "" },
  3234.             { "White / Blue", "civ", {
  3235.                 "\a3\air_f\Heli_Light_02\Data\heli_light_02_ext_civilian_co.paa"
  3236.             }, "" },
  3237.             { "Digi Green", "civ", {
  3238.                 "\a3\air_f\Heli_Light_02\Data\heli_light_02_ext_indp_co.paa"
  3239.             }, "" },
  3240.             { "Desert Digi", "reb", {
  3241.                 "\a3\air_f\Heli_Light_02\Data\heli_light_02_ext_opfor_co.paa"
  3242.             }, "" },
  3243.             { "EMS White", "med", {
  3244.                 "#(argb,8,8,3)color(1,1,1,0.8)"
  3245.             }, "" }
  3246.         };
  3247.     };
  3248.  
  3249.     class B_SDV_01_F {
  3250.         vItemSpace = 50;
  3251.         conditions = "license_civ_boat || {license_cop_cg} || {(playerSide isEqualTo independent)}";
  3252.         price = 375112;
  3253.         textures[] = {};
  3254.     };
  3255.  
  3256.     class sab_boat {
  3257.         vItemSpace = 100;
  3258.         conditions = "license_civ_boat || {license_cop_cg} || {(playerSide isEqualTo independent)}";
  3259.         price = 74125;
  3260.         textures[] = {};
  3261.     };
  3262.     class sab_boat_2 : sab_boat {};
  3263.     class sab_boat_3 : sab_boat {};
  3264.     class sab_boat_4 : sab_boat {};
  3265.     class sab_boat_5 : sab_boat {};
  3266.  
  3267.     class C_Van_01_fuel_F {
  3268.         vItemSpace = 200;
  3269.         vFuelSpace = 19500;
  3270.         conditions = "license_civ_trucking || {!(playerSide isEqualTo civilian)}";
  3271.         price = 35000; // 12000
  3272.         textures[] = {
  3273.             { "White", "civ", {
  3274.                 "\A3\soft_f_gamma\Van_01\data\van_01_ext_co.paa",
  3275.                 "\A3\soft_f_gamma\Van_01\data\van_01_tank_co.paa"
  3276.             }, "" },
  3277.             { "Red", "civ", {
  3278.                 "\A3\soft_f_gamma\Van_01\data\van_01_ext_red_co.paa",
  3279.                 "\A3\soft_f_gamma\Van_01\data\van_01_tank_red_co.paa"
  3280.             }, "" }
  3281.         };
  3282.     };
  3283.  
  3284.     class I_Truck_02_fuel_F {
  3285.         vItemSpace = 350;
  3286.         vFuelSpace = 34125;
  3287.         conditions = "license_civ_trucking || {!(playerSide isEqualTo civilian)}";
  3288.         price = 70000; // 40000
  3289.         textures[] = {
  3290.             { "White", "civ", {
  3291.                 "\A3\Soft_F_Beta\Truck_02\data\truck_02_kab_co.paa",
  3292.                 "\A3\Soft_F_Beta\Truck_02\data\truck_02_fuel_co.paa"
  3293.             }, "" }
  3294.         };
  3295.     };
  3296.  
  3297.     class B_Truck_01_fuel_F {
  3298.         vItemSpace = 50;
  3299.         vFuelSpace = 50000;
  3300.         conditions = "license_civ_trucking || {!(playerSide isEqualTo civilian)}";
  3301.         price = 250000;
  3302.         textures[] = {};
  3303.     };
  3304. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement