Advertisement
Guest User

Untitled

a guest
Oct 13th, 2013
184
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
MySQL 20.36 KB | None | 0 0
  1. /**
  2.  * English and French comments
  3.  * Commentaires anglais et français
  4.  *
  5.  * This file contains the configuration variables of the logistics system.
  6.  * Fichier contenant les variables de configuration du système de logistique.
  7.  *
  8.  * Important note : All the classes names which inherits from the ones used in configuration variables will be also available.
  9.  * Note importante : Tous les noms de classes dérivant de celles utilisées dans les variables de configuration seront aussi valables.
  10.  */
  11.  
  12. /*
  13.  * There are two ways to manage new objects with the logistics system. The first is to add these objects in the
  14.  * folowing appropriate lists. The second is to create a new external file in the /addons_config/ directory,
  15.  * according to the same scheme as the existing ones, and to add a #include at the end of this current file.
  16.  *
  17.  * Deux moyens existent pour gérer de nouveaux objets avec le système logistique. Le premier consiste à ajouter
  18.  * ces objets dans les listes appropriées ci-dessous. Le deuxième est de créer un fichier externe dans le répertoire
  19.  * /addons_config/ selon le même schéma que ceux qui existent déjà, et d'ajouter un #include à la fin de ce présent fichier.
  20.  */
  21.  
  22. /****** TOW WITH VEHICLE / REMORQUER AVEC VEHICULE ******/
  23.  
  24. /**
  25.  * List of class names of (ground or air) vehicles which can tow towables objects.
  26.  * Liste des noms de classes des véhicules terrestres pouvant remorquer des objets remorquables.
  27.  */
  28. R3F_LOG_CFG_remorqueurs =
  29. [
  30.     "Truck",
  31.     "Fishing_Boat",
  32.     "RHIB",
  33.     "Smallboat_1",
  34.     "smallboat_2",
  35.     "ArmoredSUV_PMC_DZ",
  36.     "datsun1_civil_1_open",
  37.     "datsun1_civil_2_covered",
  38.     "datsun1_civil_3_open",
  39.     "GAZ_Vodnik",
  40.     "GAZ_Vodnik_MedEvac",
  41.     "hilux1_civil_1_open",
  42.     "hilux1_civil_2_covered",
  43.     "hilux1_civil_3_open_EP1",
  44.     "HMMWV_Ambulance",
  45.     "HMMWV_Ambulance_CZ_DES_EP1",
  46.     "HMMWV_DES_EP1",
  47.     "HMMWV_DZ",
  48.     "HMMWV_M135_DES_EP1",
  49.     "HMMWV_M1151_M2_CZ_DES_EP1",
  50.     "HMMWV_M998A_SOV_DEV_EP1",
  51.     "Ikarus",
  52.     "Kamaz",
  53.     "KamazRefuel_DZ",
  54.     "LandRover_CZ_EP1",
  55.     "LandRover_MG_TK_EP1",
  56.     "LandRover_Special_CZ_EP1",
  57.     "LandRover_TK_CIV_EP1",
  58.     "M1030_US_DES_EP1",
  59.     "MTVR_DES_EP1",
  60.     "MtvrRefuel_DES_EP1_DZ",
  61.     "Offroad_DSHKM_GUE",
  62.     "Pickup_PK_GUE",
  63.     "Pickup_PK_INS",
  64.     "Pickup_PK_TK_GUE_EP1",
  65.     "SUV_Blue",
  66.     "SUV_Camo",
  67.     "SUV_Charcoal",
  68.     "SUV_Green",
  69.     "SUV_Orange",
  70.     "SUV_Pink",
  71.     "SUV_Red",
  72.     "SUV_Silver",
  73.     "SUV_TK_CIV_EP1",
  74.     "SUV_White",
  75.     "SUV_Yellow",
  76.     "tractor",
  77.     "UAZ_CDF",
  78.     "UAZ_INS",
  79.     "UAZ_MG_TK_EP1",
  80.     "UAZ_RU",
  81.     "UAZ_Unarmed_TK_CIV_EP1",
  82.     "UAZ_Unarmed_UN_EP1",
  83.     "UralCivil",
  84.     "UralCivil2",
  85.     "Ural_CDF",
  86.     "Ural_TK_CIV_EP1",
  87.     "Ural_UN_EP1",
  88.     "UralRefuel_TK_EP1_DZ",
  89.     "V3S_Open_TK_CIV_EP1",
  90.     "V3S_TK_EP1",
  91.     "V3S_Refuel_TK_GUE_EP1_DZ",
  92.     "VIL_ducato_bus",
  93.     "VIL_ducato_cargo",
  94.     "VIL_ducato_cargo2",
  95.     "VIL_hilux1_civi2",
  96.     "VIL_hilux1_civi3",
  97.     "VIL_hilux1_civil",
  98.     "VIL_hilux1_police",
  99.     "VIL_lublin_freez",
  100.     "VIL_panda_civil",
  101.     "VIL_panda_civil1",
  102.     "VIL_sprinter_cargo",
  103.     "VIL_Star_S2000o",
  104.     "VIL_Star_S2000",
  105.     "VIL_transit_civ",
  106.     "VIL_transit_truck",
  107.     "VIL_vivaro_amb",
  108.     "VIL_vivaro_civ",
  109.     "VIL_volvofl",
  110.     "VIL_vwt4_civ",
  111.     "VIL_vwt4_banksec",
  112.     "VIL_assistvan"
  113. ];
  114.  
  115. /**
  116.  * List of class names of towables objects.
  117.  * Liste des noms de classes des objets remorquables.
  118.  */
  119. R3F_LOG_CFG_objets_remorquables =
  120. [
  121.     "HMMWV_Base",
  122.     "Truck",
  123.     "GAZ_Vodnik_HMG",
  124.     "BRDM2_Base",
  125.     "BTR40_MG_base_EP1",
  126.     "Ship",
  127.     "Ikarus",
  128.     "UAZ_Base",
  129.     "SkodaBase",
  130.     "hilux1_civil_1_open",
  131.     "Pickup_PK_base",
  132.     "Offroad_DSHKM_base",
  133.     "Lada_base",
  134.     "VWGolf",
  135.     "hilux1_civil_3_open_EP1",
  136.     "LandRover_Base",
  137.     "S1203_TK_CIV_EP1",
  138.     "ArmoredSUV_Base_PMC",
  139.     "SUV_Base_EP1",
  140.     "Volha_TK_CIV_Base_EP1",
  141.     "BAF_Jackal2_BASE_D",
  142.     "An2_Base_EP1",
  143.     "M119",
  144.     "D30_base",
  145.     "ZU23_base"
  146.     "AH6X_DZ",
  147.     "CH_47F_EP1_DZ",
  148.     "MH6J_DZ",
  149.     "Mi17_Civilian_DZ",
  150.     "Mi17_DZ",
  151.     "UH1H_DZ",
  152.     "UH1Y_DZ",
  153.     "UH60M_EP1_DZ",
  154.     "Mi24_D_TK_EP1",
  155.     "ArmoredSUV_PMC_DZ",
  156.     "datsun1_civil_1_open",
  157.     "datsun1_civil_2_covered",
  158.     "datsun1_civil_3_open",
  159.     "GAZ_Vodnik",
  160.     "GAZ_Vodnik_MedEvac",
  161.     "hilux1_civil_1_open",
  162.     "hilux1_civil_2_covered",
  163.     "hilux1_civil_3_open_EP1",
  164.     "HMMWV_Ambulance",
  165.     "HMMWV_Ambulance_CZ_DES_EP1",
  166.     "HMMWV_DES_EP1",
  167.     "HMMWV_DZ",
  168.     "HMMWV_M135_DES_EP1",
  169.     "HMMWV_M1151_M2_CZ_DES_EP1",
  170.     "HMMWV_M998A_SOV_DEV_EP1",
  171.     "LandRover_CZ_EP1",
  172.     "LandRover_MG_TK_EP1",
  173.     "LandRover_Special_CZ_EP1",
  174.     "LandRover_TK_CIV_EP1",
  175.     "M1030_US_DES_EP1",
  176.     "MTVR_DES_EP1",
  177.     "MtvrRefuel_DES_EP1_DZ",
  178.     "Offroad_DSHKM_GUE",
  179.     "Pickup_PK_GUE",
  180.     "Pickup_PK_INS",
  181.     "Pickup_PK_TK_GUE_EP1",
  182.     "SUV_Blue",
  183.     "SUV_Camo",
  184.     "SUV_Charcoal",
  185.     "SUV_Green",
  186.     "SUV_Orange",
  187.     "SUV_Pink",
  188.     "SUV_Red",
  189.     "SUV_Silver",
  190.     "SUV_TK_CIV_EP1",
  191.     "SUV_White",
  192.     "SUV_Yellow",
  193.     "tractor",
  194.     "UAZ_CDF",
  195.     "UAZ_INS",
  196.     "UAZ_MG_TK_EP1",
  197.     "UAZ_RU",
  198.     "UAZ_Unarmed_TK_CIV_EP1",
  199.     "UAZ_Unarmed_UN_EP1",
  200.     "VIL_ducato_bus",
  201.     "VIL_ducato_cargo",
  202.     "VIL_ducato_cargo2",
  203.     "VIL_hilux1_civi2",
  204.     "VIL_hilux1_civi3",
  205.     "VIL_hilux1_civil",
  206.     "VIL_hilux1_police",
  207.     "VIL_lublin_freez",
  208.     "VIL_panda_civil",
  209.     "VIL_panda_civil1",
  210.     "VIL_sprinter_cargo",
  211.     "VIL_Star_S2000o",
  212.     "VIL_Star_S2000",
  213.     "VIL_transit_civ",
  214.     "VIL_transit_truck",
  215.     "VIL_vivaro_amb",
  216.     "VIL_vivaro_civ",
  217.     "VIL_volvofl",
  218.     "VIL_vwt4_civ",
  219.     "VIL_vwt4_banksec",
  220.     "VIL_assistvan",
  221.     "car_hatchback",
  222.     "car_sedan",
  223.     "Lada1",
  224.     "Lada1_TK_CIV_EP1",
  225.     "Lada2",
  226.     "Lada2_TK_CIV_EP1",
  227.     "LadaLM",
  228.     "policecar",
  229.     "S1203_ambulance_EP1",
  230.     "S1203_TK_CIV_EP1",
  231.     "Skoda",
  232.     "SkodaBlue",
  233.     "SkodaGreen",
  234.     "SkodaRed",
  235.     "VIL_alfa_civil",
  236.     "VIL_alfa_civil2",
  237.     "VIL_berlingo",
  238.     "VIL_bmw7_civil",
  239.     "VIL_bmw7_civil1",
  240.     "VIL_bmw7_civil2",
  241.     "VIL_bmw7_civilvip",
  242.     "VIL_citrone_civil",
  243.     "VIL_citrone_civil1",
  244.     "VIL_citrone_civil2",
  245.     "VIL_citrone_civil3",
  246.     "VIL_fobia_civil",
  247.     "VIL_fobia_civil1",
  248.     "VIL_fobia_civil2",
  249.     "VIL_fobia_civil3",
  250.     "VIL_fobia_civil4",
  251.     "VIL_fobia_civil5",
  252.     "VIL_karoca_civil",
  253.     "VIL_karoca_civil_red",
  254.     "VIL_kia_ceed",
  255.     "VIL_kia_ceed2",
  256.     "VIL_kia_ceed3",
  257.     "VIL_kia_ceed4",
  258.     "VIL_kia_ceeddwa",
  259.     "VIL_kia_ceeddwa2",
  260.     "VIL_kia_ceeddwa3",
  261.     "VIL_kia_ceeddwa4",
  262.     "VIL_kia_ceeddwa5",
  263.     "VIL_kia_ceeddwa6",
  264.     "VIL_mondeo_civil",
  265.     "VIL_mondeo_civil1",
  266.     "VIL_mondeo_civil3",
  267.     "VIL_mondeo_civil4",
  268.     "VIL_mondeo_civil5",
  269.     "VIL_octavia_civil",
  270.     "VIL_octavia_civil2",
  271.     "VIL_octavia_civil3",
  272.     "VIL_octavia_civil4",
  273.     "VIL_passat_civil",
  274.     "VIL_passat_civil1",
  275.     "VIL_passat_civil2",
  276.     "VIL_passat_civil3",
  277.     "VIL_passat_civil4",
  278.     "VIL_passat_civil5",
  279.     "VIL_smart_civil",
  280.     "VIL_smart_civil1",
  281.     "VIL_smart_civil2",
  282.     "VIL_smart_civil3",
  283.     "VIL_smart_civil4",
  284.     "VIL_smart_civil5",
  285.     "VolhaLimo_TK_CIV_EP1",
  286.     "Volha_1_TK_CIV_EP1",
  287.     "Volha_2_TK_CIV_EP1",
  288.     "VWGolf",
  289.     "ATV_CZ_EP1",
  290.     "ATV_US_EP1",
  291.     "Fishing_Boat",
  292.     "JetSkiYanahui_Case_blue",
  293.     "JetSkiYanahui_Case_Green",
  294.     "JetSkiYanahui_Case_Yellow",
  295.     "PBX",
  296.     "RHIB",
  297.     "SmallBoat_1",
  298.     "SmallBoat_2",
  299.     "Zodiac",
  300.     "AN2_DZ",
  301.     "GNT_C185C",
  302.     "GNT_C185R",
  303.     "GNT_C185U",
  304.     "GNT_C185",
  305.     "C130J_US_EP1"
  306. ];
  307.  
  308.  
  309. /****** LIFT WITH VEHICLE / HELIPORTER AVEC VEHICULE ******/
  310.  
  311. /**
  312.  * List of class names of air vehicles which can lift liftables objects.
  313.  * Liste des noms de classes des véhicules aériens pouvant héliporter des objets héliportables.
  314.  */
  315. R3F_LOG_CFG_heliporteurs =
  316. [
  317.     "CH47_base_EP1",
  318.     "Mi17_base",
  319.     "Mi24_Base",
  320.     "UH1H_base",
  321.     "UH1_Base",
  322.     "UH60_Base",
  323.     "MV22",
  324.     "BAF_Merlin_HC3_D",
  325.     "Ka60_Base_PMC",
  326.     "Mi24_Base",
  327.     "AH6X_DZ",
  328.     "CH_47F_EP1_DZ",
  329.     "MH6J_DZ",
  330.     "Mi17_Civilian_DZ",
  331.     "Mi17_DZ",
  332.     "UH1H_DZ",
  333.     "UH1Y_DZ",
  334.     "UH60M_EP1_DZ",
  335.     "Mi24_D_TK_EP1",
  336.     "MV22_DZ"
  337. ];
  338.  
  339. /**
  340.  * List of class names of liftables objects.
  341.  * Liste des noms de classes des objets héliportables.
  342.  */
  343. R3F_LOG_CFG_objets_heliportables =
  344. [
  345.    "HMMWV_Base",
  346.     "Truck",
  347.     "GAZ_Vodnik_HMG",
  348.     "Ship",
  349.     "Ikarus",
  350.     "UAZ_Base",
  351.     "SkodaBase",
  352.     "hilux1_civil_1_open",
  353.     "Pickup_PK_base",
  354.     "Offroad_DSHKM_base",
  355.     "Lada_base",
  356.     "VWGolf",
  357.     "hilux1_civil_3_open_EP1",
  358.     "LandRover_Base",
  359.     "S1203_TK_CIV_EP1",
  360.     "ArmoredSUV_Base_PMC",
  361.     "SUV_Base_EP1",
  362.     "Volha_TK_CIV_Base_EP1",
  363.     "BAF_Jackal2_BASE_D",
  364.     "AH6X_DZ",
  365.     "CH_47F_EP1_DZ",
  366.     "MH6J_DZ",
  367.     "Mi17_Civilian_DZ",
  368.     "Mi17_DZ",
  369.     "UH1H_DZ",
  370.     "UH1Y_DZ",
  371.     "UH60M_EP1_DZ",
  372.     "Mi24_D_TK_EP1",
  373.     "ArmoredSUV_PMC_DZ",
  374.     "datsun1_civil_1_open",
  375.     "datsun1_civil_2_covered",
  376.     "datsun1_civil_3_open",
  377.     "GAZ_Vodnik",
  378.     "GAZ_Vodnik_MedEvac",
  379.     "hilux1_civil_1_open",
  380.     "hilux1_civil_2_covered",
  381.     "hilux1_civil_3_open_EP1",
  382.     "HMMWV_Ambulance",
  383.     "HMMWV_Ambulance_CZ_DES_EP1",
  384.     "HMMWV_DES_EP1",
  385.     "HMMWV_DZ",
  386.     "HMMWV_M135_DES_EP1",
  387.     "HMMWV_M1151_M2_CZ_DES_EP1",
  388.     "HMMWV_M998A_SOV_DEV_EP1",
  389.     "Ikarus",
  390.     "Kamaz",
  391.     "KamazRefuel_DZ",
  392.     "LandRover_CZ_EP1",
  393.     "LandRover_MG_TK_EP1",
  394.     "LandRover_Special_CZ_EP1",
  395.     "LandRover_TK_CIV_EP1",
  396.     "M1030_US_DES_EP1",
  397.     "MTVR_DES_EP1",
  398.     "MtvrRefuel_DES_EP1_DZ",
  399.     "Offroad_DSHKM_GUE",
  400.     "Pickup_PK_GUE",
  401.     "Pickup_PK_INS",
  402.     "Pickup_PK_TK_GUE_EP1",
  403.     "SUV_Blue",
  404.     "SUV_Camo",
  405.     "SUV_Charcoal",
  406.     "SUV_Green",
  407.     "SUV_Orange",
  408.     "SUV_Pink",
  409.     "SUV_Red",
  410.     "SUV_Silver",
  411.     "SUV_TK_CIV_EP1",
  412.     "SUV_White",
  413.     "SUV_Yellow",
  414.     "tractor",
  415.     "UAZ_CDF",
  416.     "UAZ_INS",
  417.     "UAZ_MG_TK_EP1",
  418.     "UAZ_RU",
  419.     "UAZ_Unarmed_TK_CIV_EP1",
  420.     "UAZ_Unarmed_UN_EP1",
  421.     "UralCivil",
  422.     "UralCivil2",
  423.     "Ural_CDF",
  424.     "Ural_TK_CIV_EP1",
  425.     "Ural_UN_EP1",
  426.     "UralRefuel_TK_EP1_DZ",
  427.     "V3S_Open_TK_CIV_EP1",
  428.     "V3S_TK_EP1",
  429.     "V3S_Refuel_TK_GUE_EP1_DZ",
  430.     "VIL_ducato_bus",
  431.     "VIL_ducato_cargo",
  432.     "VIL_ducato_cargo2",
  433.     "VIL_hilux1_civi2",
  434.     "VIL_hilux1_civi3",
  435.     "VIL_hilux1_civil",
  436.     "VIL_hilux1_police",
  437.     "VIL_lublin_freez",
  438.     "VIL_panda_civil",
  439.     "VIL_panda_civil1",
  440.     "VIL_sprinter_cargo",
  441.     "VIL_Star_S2000o",
  442.     "VIL_Star_S2000",
  443.     "VIL_transit_civ",
  444.     "VIL_transit_truck",
  445.     "VIL_vivaro_amb",
  446.     "VIL_vivaro_civ",
  447.     "VIL_volvofl",
  448.     "VIL_vwt4_civ",
  449.     "VIL_vwt4_banksec",
  450.     "VIL_assistvan",
  451.     "car_hatchback",
  452.     "car_sedan",
  453.     "Lada1",
  454.     "Lada1_TK_CIV_EP1",
  455.     "Lada2",
  456.     "Lada2_TK_CIV_EP1",
  457.     "LadaLM",
  458.     "policecar",
  459.     "S1203_ambulance_EP1",
  460.     "S1203_TK_CIV_EP1",
  461.     "Skoda",
  462.     "SkodaBlue",
  463.     "SkodaGreen",
  464.     "SkodaRed",
  465.     "VIL_alfa_civil",
  466.     "VIL_alfa_civil2",
  467.     "VIL_berlingo",
  468.     "VIL_bmw7_civil",
  469.     "VIL_bmw7_civil1",
  470.     "VIL_bmw7_civil2",
  471.     "VIL_bmw7_civilvip",
  472.     "VIL_citrone_civil",
  473.     "VIL_citrone_civil1",
  474.     "VIL_citrone_civil2",
  475.     "VIL_citrone_civil3",
  476.     "VIL_fobia_civil",
  477.     "VIL_fobia_civil1",
  478.     "VIL_fobia_civil2",
  479.     "VIL_fobia_civil3",
  480.     "VIL_fobia_civil4",
  481.     "VIL_fobia_civil5",
  482.     "VIL_karoca_civil",
  483.     "VIL_karoca_civil_red",
  484.     "VIL_kia_ceed",
  485.     "VIL_kia_ceed2",
  486.     "VIL_kia_ceed3",
  487.     "VIL_kia_ceed4",
  488.     "VIL_kia_ceeddwa",
  489.     "VIL_kia_ceeddwa2",
  490.     "VIL_kia_ceeddwa3",
  491.     "VIL_kia_ceeddwa4",
  492.     "VIL_kia_ceeddwa5",
  493.     "VIL_kia_ceeddwa6",
  494.     "VIL_mondeo_civil",
  495.     "VIL_mondeo_civil1",
  496.     "VIL_mondeo_civil3",
  497.     "VIL_mondeo_civil4",
  498.     "VIL_mondeo_civil5",
  499.     "VIL_octavia_civil",
  500.     "VIL_octavia_civil2",
  501.     "VIL_octavia_civil3",
  502.     "VIL_octavia_civil4",
  503.     "VIL_passat_civil",
  504.     "VIL_passat_civil1",
  505.     "VIL_passat_civil2",
  506.     "VIL_passat_civil3",
  507.     "VIL_passat_civil4",
  508.     "VIL_passat_civil5",
  509.     "VIL_smart_civil",
  510.     "VIL_smart_civil1",
  511.     "VIL_smart_civil2",
  512.     "VIL_smart_civil3",
  513.     "VIL_smart_civil4",
  514.     "VIL_smart_civil5",
  515.     "VolhaLimo_TK_CIV_EP1",
  516.     "Volha_1_TK_CIV_EP1",
  517.     "Volha_2_TK_CIV_EP1",
  518.     "ATV_CZ_EP1",
  519.     "ATV_US_EP1",
  520.     "Fishing_Boat",
  521.     "JetSkiYanahui_Case_blue",
  522.     "JetSkiYanahui_Case_Green",
  523.     "JetSkiYanahui_Case_Yellow",
  524.     "PBX",
  525.     "RHIB",
  526.     "SmallBoat_1",
  527.     "SmallBoat_2",
  528.     "Zodiac",
  529.     "AN2_DZ",
  530.     "GNT_C185C",
  531.     "GNT_C185R",
  532.     "GNT_C185U",
  533.     "GNT_C185"
  534. ];
  535.  
  536.  
  537. /****** LOAD IN VEHICLE / CHARGER DANS LE VEHICULE ******/
  538.  
  539. /*
  540.  * This section use a quantification of the volume and/or weight of the objets.
  541.  * The arbitrary referencial used is : an ammo box of type USVehicleBox "weights" 12 units.
  542.  *
  543.  * Cette section utilise une quantification du volume et/ou poids des objets.
  544.  * Le référentiel arbitraire utilisé est : une caisse de munition de type USVehicleBox "pèse" 12 unités.
  545.  *
  546.  * Note : the priority of a declaration of capacity to another corresponds to their order in the tables.
  547.  *   For example : the "Truck" class is in the "Car" class (see http://community.bistudio.com/wiki/ArmA_2:_CfgVehicles).
  548.  *   If "Truck" is declared with a capacity of 140 before "Car". And if "Car" is declared after "Truck" with a capacity of 40,
  549.  *   Then all the sub-classes in "Truck" will have a capacity of 140. And all the sub-classes of "Car", excepted the ones
  550.  *   in "Truck", will have a capacity of 40.
  551.  *
  552.  * Note : la priorité d'une déclaration de capacité sur une autre correspond à leur ordre dans les tableaux.
  553.  *   Par exemple : la classe "Truck" appartient à la classe "Car" (voir http://community.bistudio.com/wiki/ArmA_2:_CfgVehicles).
  554.  *   Si "Truck" est déclaré avec une capacité de 140 avant "Car". Et que "Car" est déclaré après "Truck" avec une capacité de 40,
  555.  *   Alors toutes les sous-classes appartenant à "Truck" auront une capacité de 140. Et toutes les sous-classes appartenant
  556.  *   à "Car", exceptées celles de "Truck", auront une capacité de 40.
  557.  */
  558.  
  559. /**
  560.  * List of class names of (ground or air) vehicles which can transport transportables objects.
  561.  * The second element of the arrays is the load capacity (in relation with the capacity cost of the objects).
  562.  *
  563.  * Liste des noms de classes des véhicules (terrestres ou aériens) pouvant transporter des objets transportables.
  564.  * Le deuxième élément des tableaux est la capacité de chargement (en relation avec le coût de capacité des objets).
  565.  */
  566. R3F_LOG_CFG_transporteurs =
  567. [
  568. ["AH6X_DZ", 50],
  569.     ["CH_47F_EP1_DZ", 100],
  570.     ["MH6J_DZ", 50],
  571.     ["Mi17_Civilian_DZ", 75],
  572.     ["Mi17_DZ", 75],
  573.     ["UH1H_DZ", 50],
  574.     ["UH1Y_DZ", 50],
  575.     ["UH60M_EP1_DZ", 75],
  576.     ["Mi24_D_TK_EP1", 75],
  577.     ["ArmoredSUV_PMC_DZ", 75],
  578.     ["datsun1_civil_1_open", 50],
  579.     ["datsun1_civil_2_covered", 50],
  580.     ["datsun1_civil_3_open", 50],
  581.     ["GAZ_Vodnik", 75],
  582.     ["GAZ_Vodnik_MedEvac", 75],
  583.     ["hilux1_civil_1_open", 50],
  584.     ["hilux1_civil_2_covered", 50],
  585.     ["hilux1_civil_3_open_EP1", 50],
  586.     ["HMMWV_Ambulance", 50],
  587.     ["HMMWV_Ambulance_CZ_DES_EP1", 75],
  588.     ["HMMWV_DES_EP1", 50],
  589.     ["HMMWV_DZ", 50],
  590.     ["HMMWV_M135_DES_EP1", 50],
  591.     ["HMMWV_M1151_M2_CZ_DES_EP1", 50],
  592.     ["HMMWV_M998A_SOV_DEV_EP1", 50],
  593.     ["Ikarus", 100],
  594.     ["Kamaz", 100],
  595.     ["KamazRefuel_DZ", 100],
  596.     ["LandRover_CZ_EP1", 75],
  597.     ["LandRover_MG_TK_EP1", 75],
  598.     ["LandRover_Special_CZ_EP1", 75],
  599.     ["LandRover_TK_CIV_EP1", 75],
  600.     ["M1030_US_DES_EP1", 50],
  601.     ["MTVR_DES_EP1", 100],
  602.     ["MtvrRefuel_DES_EP1_DZ", 100],
  603.     ["Offroad_DSHKM_GUE", 50],
  604.     ["Pickup_PK_GUE", 50],
  605.     ["Pickup_PK_INS", 50],
  606.     ["Pickup_PK_TK_GUE_EP1", 50],
  607.     ["SUV_Blue", 75],
  608.     ["SUV_Camo", 75],
  609.     ["SUV_Charcoal", 75],
  610.     ["SUV_Green", 75],
  611.     ["SUV_Orange", 75],
  612.     ["SUV_Pink", 75],
  613.     ["SUV_Red", 75],
  614.     ["SUV_Silver", 75],
  615.     ["SUV_TK_CIV_EP1", 75],
  616.     ["SUV_White", 75],
  617.     ["SUV_Yellow", 75],
  618.     ["tractor", 25],
  619.     ["UAZ_CDF", 25],
  620.     ["UAZ_INS", 25],
  621.     ["UAZ_MG_TK_EP1", 25],
  622.     ["UAZ_RU", 25],
  623.     ["UAZ_Unarmed_TK_CIV_EP1", 25],
  624.     ["UAZ_Unarmed_UN_EP1", 25],
  625.     ["Ural_CDF", 100],
  626.     ["Ural_TK_CIV_EP1", 100],
  627.     ["Ural_UN_EP1", 100],
  628.     ["UralRefuel_TK_EP1_DZ", 100],
  629.     ["V3S_Open_TK_CIV_EP1", 100],
  630.     ["V3S_TK_EP1", 100],
  631.     ["V3S_Refuel_TK_GUE_EP1_DZ", 100],
  632.     ["VIL_ducato_bus", 100],
  633.     ["VIL_ducato_cargo", 100],
  634.     ["VIL_ducato_cargo2", 100],
  635.     ["VIL_hilux1_civi2", 50],
  636.     ["VIL_hilux1_civi3", 50],
  637.     ["VIL_hilux1_civil", 50],
  638.     ["VIL_hilux1_police", 50],
  639.     ["VIL_lublin_freez", 50],
  640.     ["VIL_panda_civil", 50],
  641.     ["VIL_panda_civil1", 50],
  642.     ["VIL_sprinter_cargo", 50],
  643.     ["VIL_Star_S2000o", 50],
  644.     ["VIL_Star_S2000", 50],
  645.     ["VIL_transit_civ", 50],
  646.     ["VIL_transit_truck", 50],
  647.     ["VIL_vivaro_amb", 50],
  648.     ["VIL_vivaro_civ", 50],
  649.     ["VIL_volvofl", 50],
  650.     ["VIL_vwt4_civ", 50],
  651.     ["VIL_vwt4_banksec", 50],
  652.     ["VIL_assistvan", 75],
  653.     ["C130J_US_EP1",300]
  654. ];
  655.  
  656. /**
  657.  * List of class names of transportables objects.
  658.  * The second element of the arrays is the cost capacity (in relation with the capacity of the vehicles).
  659.  *
  660.  * Liste des noms de classes des objets transportables.
  661.  * Le deuxième élément des tableaux est le coût de capacité (en relation avec la capacité des véhicules).
  662.  */
  663. R3F_LOG_CFG_objets_transportables =
  664. [
  665.     ["AH6X_DZ", 100],
  666.     ["MH6J_DZ", 100],
  667.     ["ArmoredSUV_PMC_DZ", 150],
  668.     ["datsun1_civil_1_open", 100],
  669.     ["datsun1_civil_2_covered", 100],
  670.     ["datsun1_civil_3_open", 100],
  671.     ["GAZ_Vodnik", 125],
  672.     ["GAZ_Vodnik_MedEvac", 125],
  673.     ["hilux1_civil_1_open", 75],
  674.     ["hilux1_civil_2_covered", 75],
  675.     ["hilux1_civil_3_open_EP1", 75],
  676.     ["HMMWV_Ambulance", 125],
  677.     ["HMMWV_Ambulance_CZ_DES_EP1", 125],
  678.     ["HMMWV_DES_EP1", 125],
  679.     ["HMMWV_DZ", 125],
  680.     ["HMMWV_M135_DES_EP1", 125],
  681.     ["HMMWV_M1151_M2_CZ_DES_EP1", 125],
  682.     ["HMMWV_M998A_SOV_DEV_EP1", 125],
  683.     ["LandRover_CZ_EP1", 125],
  684.     ["LandRover_MG_TK_EP1", 125],
  685.     ["LandRover_Special_CZ_EP1", 125],
  686.     ["LandRover_TK_CIV_EP1", 125],
  687.     ["M1030_US_DES_EP1", 125],
  688.     ["Offroad_DSHKM_GUE", 100],
  689.     ["Pickup_PK_GUE", 100],
  690.     ["Pickup_PK_INS", 100],
  691.     ["Pickup_PK_TK_GUE_EP1", 100],
  692.     ["SUV_Blue", 125],
  693.     ["SUV_Camo", 125],
  694.     ["SUV_Charcoal", 125],
  695.     ["SUV_Green", 125],
  696.     ["SUV_Orange", 125],
  697.     ["SUV_Pink", 125],
  698.     ["SUV_Red", 125],
  699.     ["SUV_Silver", 125],
  700.     ["SUV_TK_CIV_EP1", 125],
  701.     ["SUV_White", 125],
  702.     ["SUV_Yellow", 125],
  703.     ["tractor", 50],
  704.     ["UAZ_CDF", 75],
  705.     ["UAZ_INS", 75],
  706.     ["UAZ_MG_TK_EP1", 75],
  707.     ["UAZ_RU", 75],
  708.     ["UAZ_Unarmed_TK_CIV_EP1", 75],
  709.     ["UAZ_Unarmed_UN_EP1", 75],
  710.     ["VIL_ducato_bus", 150],
  711.     ["VIL_ducato_cargo", 150],
  712.     ["VIL_ducato_cargo2", 150],
  713.     ["VIL_hilux1_civi2", 100],
  714.     ["VIL_hilux1_civi3", 100],
  715.     ["VIL_hilux1_civil", 100],
  716.     ["VIL_hilux1_police", 100],
  717.     ["VIL_lublin_freez", 100],
  718.     ["VIL_panda_civil", 100],
  719.     ["VIL_panda_civil1", 100],
  720.     ["VIL_sprinter_cargo", 100],
  721.     ["VIL_Star_S2000o", 100],
  722.     ["VIL_Star_S2000", 100],
  723.     ["VIL_transit_civ", 100],
  724.     ["VIL_transit_truck", 100],
  725.     ["VIL_vivaro_amb", 100],
  726.     ["VIL_vivaro_civ", 100],
  727.     ["VIL_volvofl", 100],
  728.     ["VIL_vwt4_civ", 100],
  729.     ["VIL_vwt4_banksec", 100],
  730.     ["VIL_assistvan", 100],
  731.     ["ATV_CZ_EP1", 25],
  732.     ["ATV_US_EP1", 25],
  733.     ["MMT_Civ", 10],
  734.     ["GLT_M300_LT", 15],
  735.     ["GLT_M300_ST", 15],
  736.     ["Old_Bike_TK_INS_EP1", 25],
  737.     ["Old_Moto_TK_Civ_EP1", 25],
  738.     ["TT650_Civ", 25],
  739.     ["TT650_Ins", 25],
  740.     ["TT650_TK_CIV_EP1", 25]
  741. ];
  742.  
  743. /****** MOVABLE-BY-PLAYER OBJECTS / OBJETS DEPLACABLES PAR LE JOUEUR ******/
  744.  
  745. /**
  746.  * List of class names of objects moveables by player.
  747.  * Liste des noms de classes des objets transportables par le joueur.
  748.  */
  749. R3F_LOG_CFG_objets_deplacables =
  750. [
  751. ];
  752.  
  753. /*
  754.  * List of files adding objects in the arrays of logistics configuration (e.g. R3F_LOG_CFG_remorqueurs)
  755.  * Add an include to the new file here if you want to use the logistics with a new addon.
  756.  *
  757.  * Liste des fichiers ajoutant des objets dans les tableaux de fonctionnalités logistiques (ex : R3F_LOG_CFG_remorqueurs)
  758.  * Ajoutez une inclusion vers votre nouveau fichier ici si vous souhaitez utilisez la logistique avec un nouvel addon.
  759.  */
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement