Advertisement
Guest User

Config.cpp

a guest
Jun 1st, 2016
655
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 90.79 KB | None | 0 0
  1.  
  2. /**
  3.  * config
  4.  *
  5.  * Exile Mod
  6.  * www.exilemod.com
  7.  * © 2015 Exile Mod Team
  8.  *
  9.  * This work is licensed under the Creative Commons Attribution-NonCommercial-NoDerivatives 4.0 International License.
  10.  * To view a copy of this license, visit http://creativecommons.org/licenses/by-nc-nd/4.0/.
  11.  */
  12.  
  13.  
  14. class CfgClans
  15. {
  16.     /*
  17.         Defines the amount of pop tabs needed to register a new clan
  18.  
  19.         Default: 20,000
  20.     */
  21.     registrationFee = 20000;
  22.  
  23.     /*
  24.         A list of all characters allowed in a clan *name*
  25.     */
  26.     clanNameAlphabet = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789 -!";
  27. };
  28. class Exile_AbstractCraftingRecipe
  29. {
  30.     name = "";
  31.     pictureItem = "";
  32.     returnedItems[] = {};
  33.     components[] = {}; // Required components
  34.     tools[] = {}; // Required tools (matches, gas cooker etc.)
  35.     requiredInteractionModelGroup = ""; // See CfgInteractionModels
  36.     requiresOcean = 0; // isSurfaceWater test
  37.     requiresFire = 0; // inflamed object nearby
  38. };
  39.  
  40. class CfgCraftingRecipes
  41. {
  42.     #include "EBM\recipes.hpp"
  43. };
  44.  
  45. class CookBBQSandwich: Exile_AbstractCraftingRecipe
  46. {
  47.     name = "Cook BBQ Sandwich";
  48.     pictureItem = "Exile_Item_BBQSandwich_Cooked";
  49.     requiresFire = 1;
  50.     returnedItems[] =
  51.     {
  52.         {1, "Exile_Item_BBQSandwich_Cooked"}
  53.     };
  54.     tools[] =
  55.     {
  56.         "Exile_Item_CookingPot"
  57.     };
  58.     components[] =
  59.     {
  60.         {1, "Exile_Item_BBQSandwich"}
  61.     };
  62. };
  63.  
  64. class CookCatFood: Exile_AbstractCraftingRecipe
  65. {
  66.     name = "Cook Cat Food";
  67.     pictureItem = "Exile_Item_CatFood_Cooked";
  68.     requiresFire = 1;
  69.     returnedItems[] =
  70.     {
  71.         {1, "Exile_Item_CatFood_Cooked"}
  72.     };
  73.     tools[] =
  74.     {
  75.         "Exile_Item_CookingPot"
  76.     };
  77.     components[] =
  78.     {
  79.         {1, "Exile_Item_CatFood"}
  80.     };
  81. };
  82.  
  83. class CookChristmasTinner: Exile_AbstractCraftingRecipe
  84. {
  85.     name = "Cook Christmas Tinner";
  86.     pictureItem = "Exile_Item_ChristmasTinner_Cooked";
  87.     requiresFire = 1;
  88.     returnedItems[] =
  89.     {
  90.         {1, "Exile_Item_ChristmasTinner_Cooked"}
  91.     };
  92.     tools[] =
  93.     {
  94.         "Exile_Item_CookingPot"
  95.     };
  96.     components[] =
  97.     {
  98.         {1, "Exile_Item_ChristmasTinner"}
  99.     };
  100. };
  101. class CookCoffee: Exile_AbstractCraftingRecipe
  102. {
  103.     name = "Brew Coffee";
  104.     pictureItem = "Exile_Item_PlasticBottleCoffee";
  105.     requiresFire = 1;
  106.     returnedItems[] =
  107.     {
  108.         {1, "Exile_Item_PlasticBottleCoffee"}
  109.     };
  110.     tools[] =
  111.     {
  112.         "Exile_Item_CookingPot"
  113.     };
  114.     components[] =
  115.     {
  116.         {1, "Exile_Item_PlasticBottleFreshWater"},
  117.         {1, "Exile_Item_InstantCoffee"}
  118.     };
  119. };
  120. class CookDogFood: Exile_AbstractCraftingRecipe
  121. {
  122.     name = "Cook Dog Food";
  123.     pictureItem = "Exile_Item_DogFood_Cooked";
  124.     requiresFire = 1;
  125.     returnedItems[] =
  126.     {
  127.         {1, "Exile_Item_DogFood_Cooked"}
  128.     };
  129.     tools[] =
  130.     {
  131.         "Exile_Item_CookingPot"
  132.     };
  133.     components[] =
  134.     {
  135.         {1, "Exile_Item_DogFood"}
  136.     };
  137. };
  138.  
  139. class CookGloriousKnakworst: Exile_AbstractCraftingRecipe
  140. {
  141.     name = "Cook Glorious Knakworst";
  142.     pictureItem = "Exile_Item_GloriousKnakworst_Cooked";
  143.     requiresFire = 1;
  144.     returnedItems[] =
  145.     {
  146.         {1, "Exile_Item_GloriousKnakworst_Cooked"}
  147.     };
  148.     tools[] =
  149.     {
  150.         "Exile_Item_CookingPot"
  151.     };
  152.     components[] =
  153.     {
  154.         {1, "Exile_Item_GloriousKnakworst"}
  155.     };
  156. };
  157.  
  158. class CookPlasticBottleDirtyWater: Exile_AbstractCraftingRecipe
  159. {
  160.     name = "Cook Dirty Water";
  161.     pictureItem = "Exile_Item_PlasticBottleFreshWater";
  162.     requiresFire = 1;
  163.     returnedItems[] =
  164.     {
  165.         {1, "Exile_Item_PlasticBottleFreshWater"}
  166.     };
  167.     tools[] =
  168.     {
  169.         "Exile_Item_CookingPot"
  170.     };
  171.     components[] =
  172.     {
  173.         {1, "Exile_Item_PlasticBottleDirtyWater"}
  174.     };
  175. };
  176. class CookPlasticBottleSaltWater: Exile_AbstractCraftingRecipe
  177. {
  178.     name = "Cook Salt Water";
  179.     pictureItem = "Exile_Item_PlasticBottleFreshWater";
  180.     requiresFire = 1;
  181.     returnedItems[] =
  182.     {
  183.         {1, "Exile_Item_PlasticBottleFreshWater"}
  184.     };
  185.     tools[] =
  186.     {
  187.         "Exile_Item_CookingPot"
  188.     };
  189.     components[] =
  190.     {
  191.         {1, "Exile_Item_PlasticBottleSaltWater"}
  192.     };
  193. };
  194.  
  195. class CookSausageGravy: Exile_AbstractCraftingRecipe
  196. {
  197.     name = "Cook Sausage Gravy";
  198.     pictureItem = "Exile_Item_SausageGravy_Cooked";
  199.     requiresFire = 1;
  200.     returnedItems[] =
  201.     {
  202.         {1, "Exile_Item_SausageGravy_Cooked"}
  203.     };
  204.     tools[] =
  205.     {
  206.         "Exile_Item_CookingPot"
  207.     };
  208.     components[] =
  209.     {
  210.         {1, "Exile_Item_SausageGravy"}
  211.     };
  212. };
  213.  
  214. class CookSurstromming: Exile_AbstractCraftingRecipe
  215. {
  216.     name = "Cook Surströmming";
  217.     pictureItem = "Exile_Item_Surstromming_Cooked";
  218.     requiresFire = 1;
  219.     returnedItems[] =
  220.     {
  221.         {1, "Exile_Item_Surstromming_Cooked"}
  222.     };
  223.     tools[] =
  224.     {
  225.         "Exile_Item_CookingPot"
  226.     };
  227.     components[] =
  228.     {
  229.         {1, "Exile_Item_Surstromming"}
  230.     };
  231. };
  232.  
  233. class CraftBushKitGreen: Exile_AbstractCraftingRecipe
  234. {
  235.     name = "Craft a Bush Kit (Green)";
  236.     pictureItem = "Exile_Item_BushKit_Green";
  237.     requiredInteractionModelGroup = "WorkBench";
  238.     returnedItems[] =
  239.     {
  240.         {1, "Exile_Item_BushKit_Green"}
  241.     };
  242.     components[] =
  243.     {
  244.         {10, "Exile_Item_Leaves"},
  245.         {5, "Exile_Item_WoodSticks"},
  246.         {1, "Exile_Item_Rope"}
  247.     };
  248. };
  249. class CraftFirePlace: Exile_AbstractCraftingRecipe
  250. {
  251.     name = "Craft Fire Place";
  252.     pictureItem = "Exile_Item_CampFireKit";
  253.     returnedItems[] =
  254.     {
  255.         {1, "Exile_Item_CampFireKit"}
  256.     };
  257.     components[] =
  258.     {
  259.         {2, "Exile_Item_WoodLog"}
  260.     };
  261. };
  262. class CraftFloodLight: Exile_AbstractCraftingRecipe
  263. {
  264.     name = "Craft Flood Light";
  265.     pictureItem = "Exile_Item_FloodLightKit";
  266.     requiresFire = 1;
  267.     returnedItems[] =
  268.     {
  269.         {1, "Exile_Item_FloodLightKit"}
  270.     };
  271.     components[] =
  272.     {
  273.         {1, "Exile_Item_MetalPole"},
  274.         {1, "Exile_Item_LightBulb"},
  275.         {1, "Exile_Item_ExtensionCord"}
  276.     };
  277. };
  278. class CraftFortificationUpgrade: Exile_AbstractCraftingRecipe
  279. {
  280.     name = "Craft Fortification Upgrade";
  281.     pictureItem = "Exile_Item_MetalBoard"; //<< CHANGE IT
  282.     requiresFire = 1;
  283.     requiredInteractionModelGroup = "WorkBench";
  284.     returnedItems[] =
  285.     {
  286.         {1, "Exile_Item_FortificationUpgrade"}
  287.     };
  288.     components[] =
  289.     {
  290.         {2, "Exile_Item_MetalPole"},
  291.         {4, "Exile_Item_MetalBoard"}
  292.     };
  293.     tools[] = {"Exile_Item_Grinder"};
  294. };
  295. class CraftMetalBoard: Exile_AbstractCraftingRecipe
  296. {
  297.     name = "Craft Metal Board";
  298.     pictureItem = "Exile_Item_MetalBoard";
  299.     requiresFire = 1;
  300.     returnedItems[] =
  301.     {
  302.         {1, "Exile_Item_MetalBoard"}
  303.     };
  304.     components[] =
  305.     {
  306.         {2, "Exile_Item_JunkMetal"}
  307.     };
  308.     tools[] = {"Exile_Item_Grinder"};
  309. };
  310. class CraftMetalHedgehog: Exile_AbstractCraftingRecipe
  311. {
  312.     name = "Craft Metal Hedgehog";
  313.     pictureItem = "Exile_Item_MetalHedgehogKit";
  314.     requiresFire = 1;
  315.     returnedItems[] =
  316.     {
  317.         {1, "Exile_Item_MetalHedgehogKit"}
  318.     };
  319.     components[] =
  320.     {
  321.         {4, "Exile_Item_MetalPole"}
  322.     };
  323.     tools[] = {"Exile_Item_Grinder"};
  324. };
  325. class CraftMetalPole: Exile_AbstractCraftingRecipe
  326. {
  327.     name = "Craft Metal Pole";
  328.     pictureItem = "Exile_Item_MetalPole";
  329.     requiresFire = 1;
  330.     returnedItems[] =
  331.     {
  332.         {1, "Exile_Item_MetalPole"}
  333.     };
  334.     components[] =
  335.     {
  336.         {4, "Exile_Item_JunkMetal"}
  337.     };
  338.     tools[] = {"Exile_Item_Grinder"};
  339. };
  340. class CraftPortableGenerator: Exile_AbstractCraftingRecipe
  341. {
  342.     name = "Craft Portable Generator";
  343.     pictureItem = "Exile_Item_PortableGeneratorKit";
  344.     requiresFire = 1;
  345.     returnedItems[] =
  346.     {
  347.         {1, "Exile_Item_PortableGeneratorKit"}
  348.     };
  349.     components[] =
  350.     {
  351.         {4, "Exile_Item_MetalBoard"},
  352.         {1, "Exile_Item_FuelCanisterFull"},
  353.         {1, "Exile_Item_ExtensionCord"}
  354.     };
  355. };
  356. class CraftStorageCrate: Exile_AbstractCraftingRecipe
  357. {
  358.     name = "Craft Storage Crate";
  359.     pictureItem = "Exile_Item_StorageCrateKit";
  360.     requiredInteractionModelGroup = "WorkBench";
  361.     returnedItems[] =
  362.     {
  363.         {1, "Exile_Item_StorageCrateKit"}
  364.     };
  365.     components[] =
  366.     {
  367.         {5, "Exile_Item_WoodPlank"}
  368.     };
  369. };
  370. class CraftWaterBarrel: Exile_AbstractCraftingRecipe
  371. {
  372.     name = "Craft Water Barrel";
  373.     pictureItem = "Exile_Item_WaterBarrelKit";
  374.     requiredInteractionModelGroup = "WorkBench";
  375.     requiresFire = 1;
  376.     returnedItems[] =
  377.     {
  378.         {1, "Exile_Item_WaterBarrelKit"}
  379.     };
  380.     components[] =
  381.     {
  382.         {20, "Exile_Item_PlasticBottleEmpty"}
  383.     };
  384. };
  385. class CraftWoodDoorWay: Exile_AbstractCraftingRecipe
  386. {
  387.     name = "Craft Wood Doorway";
  388.     pictureItem = "Exile_Item_WoodDoorwayKit";
  389.     requiredInteractionModelGroup = "WorkBench";
  390.     returnedItems[] =
  391.     {
  392.         {1, "Exile_Item_WoodDoorwayKit"}
  393.     };
  394.     components[] =
  395.     {
  396.         {6, "Exile_Item_WoodPlank"}
  397.     };
  398. };
  399. /*
  400. class CraftWoodDrawBridge: Exile_AbstractCraftingRecipe
  401. {
  402.     name = "Craft Wood Draw-Bridge";
  403.     pictureItem = "Exile_Item_WoodDrawBridgeKit";
  404.     requiredInteractionModelGroup = "WorkBench";
  405.     returnedItems[] =
  406.     {
  407.         {1, "Exile_Item_WoodDrawBridgeKit"}
  408.     };
  409.     components[] =
  410.     {
  411.         {4, "Exile_Item_WoodPlank"},
  412.         {2, "Exile_Item_Rope"}
  413.     };
  414. };
  415. */
  416. class CraftWoodFloor: Exile_AbstractCraftingRecipe
  417. {
  418.     name = "Craft Wood Floor";
  419.     pictureItem = "Exile_Item_WoodFloorKit";
  420.     requiredInteractionModelGroup = "WorkBench";
  421.     returnedItems[] =
  422.     {
  423.         {1, "Exile_Item_WoodFloorKit"}
  424.     };
  425.     components[] =
  426.     {
  427.         {4, "Exile_Item_WoodPlank"}
  428.     };
  429. };
  430. class CraftWoodFloorPort: Exile_AbstractCraftingRecipe
  431. {
  432.     name = "Craft Wood Floor Port";
  433.     pictureItem = "Exile_Item_WoodFloorPortKit";
  434.     requiredInteractionModelGroup = "WorkBench";
  435.     returnedItems[] =
  436.     {
  437.         {1, "Exile_Item_WoodFloorPortKit"}
  438.     };
  439.     components[] =
  440.     {
  441.         {6, "Exile_Item_WoodPlank"}
  442.     };
  443. };
  444. class CraftWoodGate: Exile_AbstractCraftingRecipe
  445. {
  446.     name = "Craft Wood Gate";
  447.     pictureItem = "Exile_Item_WoodGateKit";
  448.     requiredInteractionModelGroup = "WorkBench";
  449.     returnedItems[] =
  450.     {
  451.         {1, "Exile_Item_WoodGateKit"}
  452.     };
  453.     components[] =
  454.     {
  455.         {8, "Exile_Item_WoodPlank"}
  456.     };
  457. };
  458. class CraftWoodPlank: Exile_AbstractCraftingRecipe
  459. {
  460.     name = "Craft Wood Plank";
  461.     pictureItem = "Exile_Item_WoodPlank";
  462.     requiredInteractionModelGroup = "WorkBench";
  463.     returnedItems[] =
  464.     {
  465.         {1, "Exile_Item_WoodPlank"}
  466.     };
  467.     components[] =
  468.     {
  469.         {2, "Exile_Item_WoodLog"}
  470.     };
  471.     tools[] = {"Exile_Item_Handsaw"};
  472. };
  473. class CraftWoodStairs: Exile_AbstractCraftingRecipe
  474. {
  475.     name = "Craft Wood Stairs";
  476.     pictureItem = "Exile_Item_WoodStairsKit";
  477.     requiredInteractionModelGroup = "WorkBench";
  478.     returnedItems[] =
  479.     {
  480.         {1, "Exile_Item_WoodStairsKit"}
  481.     };
  482.     components[] =
  483.     {
  484.         {6, "Exile_Item_WoodPlank"}
  485.     };
  486. };
  487. class CraftWoodSupport: Exile_AbstractCraftingRecipe
  488. {
  489.     name = "Craft Wood Support";
  490.     pictureItem = "Exile_Item_WoodSupportKit";
  491.     requiredInteractionModelGroup = "WorkBench";
  492.     returnedItems[] =
  493.     {
  494.         {1, "Exile_Item_WoodSupportKit"}
  495.     };
  496.     components[] =
  497.     {
  498.         {6, "Exile_Item_WoodPlank"}
  499.     };
  500. };
  501. class CraftWoodWall: Exile_AbstractCraftingRecipe
  502. {
  503.     name = "Craft Wood Wall";
  504.     pictureItem = "Exile_Item_WoodWallKit";
  505.     requiredInteractionModelGroup = "WorkBench";
  506.     returnedItems[] =
  507.     {
  508.         {1, "Exile_Item_WoodWallKit"}
  509.     };
  510.     components[] =
  511.     {
  512.         {4, "Exile_Item_WoodPlank"}
  513.     };
  514. };
  515. class CraftWoodWallHalf: Exile_AbstractCraftingRecipe
  516. {
  517.     name = "Craft 1/2 Wood Wall";
  518.     pictureItem = "Exile_Item_WoodWallHalfKit";
  519.     requiredInteractionModelGroup = "WorkBench";
  520.     returnedItems[] =
  521.     {
  522.         {1, "Exile_Item_WoodWallHalfKit"}
  523.     };
  524.     components[] =
  525.     {
  526.         {2, "Exile_Item_WoodPlank"}
  527.     };
  528. };
  529. class CraftWoodWindow: Exile_AbstractCraftingRecipe
  530. {
  531.     name = "Craft Wood Window";
  532.     pictureItem = "Exile_Item_WoodWindowKit";
  533.     requiredInteractionModelGroup = "WorkBench";
  534.     returnedItems[] =
  535.     {
  536.         {1, "Exile_Item_WoodWindowKit"}
  537.     };
  538.     components[] =
  539.     {
  540.         {6, "Exile_Item_WoodPlank"}
  541.     };
  542. };
  543. class CraftWorkBench: Exile_AbstractCraftingRecipe
  544. {
  545.     name = "Craft Work Bench";
  546.     pictureItem = "Exile_Item_WorkBenchKit";
  547.     returnedItems[] =
  548.     {
  549.         {1, "Exile_Item_WorkBenchKit"}
  550.     };
  551.     components[] =
  552.     {
  553.         {4, "Exile_Item_WoodLog"}
  554.     };
  555. };
  556. class EmptyFuelCanister: Exile_AbstractCraftingRecipe
  557. {
  558.     name = "Empty Fuel Canister";
  559.     pictureItem = "Exile_Item_FuelCanisterEmpty";
  560.     returnedItems[] =
  561.     {
  562.         {1, "Exile_Item_FuelCanisterEmpty"}
  563.     };
  564.     components[] =
  565.     {
  566.         {1, "Exile_Item_FuelCanisterFull"}
  567.     };
  568. };
  569. class EmptyPlasticBottleDirtyWater: Exile_AbstractCraftingRecipe
  570. {
  571.     name = "Empty Dirty Water";
  572.     pictureItem = "Exile_Item_PlasticBottleEmpty";
  573.     returnedItems[] =
  574.     {
  575.         {1, "Exile_Item_PlasticBottleEmpty"}
  576.     };
  577.     components[] =
  578.     {
  579.         {1, "Exile_Item_PlasticBottleDirtyWater"}
  580.     };
  581. };
  582. class EmptyPlasticBottleSaltWater: Exile_AbstractCraftingRecipe
  583. {
  584.     name = "Empty Salt Water";
  585.     pictureItem = "Exile_Item_PlasticBottleEmpty";
  586.     returnedItems[] =
  587.     {
  588.         {1, "Exile_Item_PlasticBottleEmpty"}
  589.     };
  590.     components[] =
  591.     {
  592.         {1, "Exile_Item_PlasticBottleSaltWater"}
  593.     };
  594. };
  595. class FillEmptyPlasticBottleWithDirtyWater: Exile_AbstractCraftingRecipe
  596. {
  597.     name = "Fill Dirty Water";
  598.     pictureItem = "Exile_Item_PlasticBottleDirtyWater";
  599.     requiredInteractionModelGroup = "WaterSource";
  600.     returnedItems[] =
  601.     {
  602.         {1, "Exile_Item_PlasticBottleDirtyWater"}
  603.     };
  604.     components[] =
  605.     {
  606.         {1, "Exile_Item_PlasticBottleEmpty"}
  607.     };
  608. };
  609. class FillEmptyPlasticBottleWithFreshWater: Exile_AbstractCraftingRecipe
  610. {
  611.     name = "Fill Fresh Water";
  612.     pictureItem = "Exile_Item_PlasticBottleFreshWater";
  613.     requiredInteractionModelGroup = "CleanWaterSource";
  614.     returnedItems[] =
  615.     {
  616.         {1, "Exile_Item_PlasticBottleFreshWater"}
  617.     };
  618.     components[] =
  619.     {
  620.         {1, "Exile_Item_PlasticBottleEmpty"}
  621.     };
  622. };
  623. class FillEmptyPlasticBottleWithSaltWater: Exile_AbstractCraftingRecipe
  624. {
  625.     name = "Fill Salt Water";
  626.     pictureItem = "Exile_Item_PlasticBottleSaltWater";
  627.     requiresOcean = 1;
  628.     returnedItems[] =
  629.     {
  630.         {1, "Exile_Item_PlasticBottleSaltWater"}
  631.     };
  632.     components[] =
  633.     {
  634.         {1, "Exile_Item_PlasticBottleEmpty"}
  635.     };
  636. };
  637. class FillFuelCanister: Exile_AbstractCraftingRecipe
  638. {
  639.     name = "Fill Fuel Canister";
  640.     pictureItem = "Exile_Item_FuelCanisterFull";
  641.     requiredInteractionModelGroup = "FuelSource";
  642.     returnedItems[] =
  643.     {
  644.         {1, "Exile_Item_FuelCanisterFull"}
  645.     };
  646.     components[] =
  647.     {
  648.         {1, "Exile_Item_FuelCanisterEmpty"}
  649.     };
  650. };
  651. class UpgradeToWoodDoor: Exile_AbstractCraftingRecipe
  652. {
  653.     name = "Upgrade to Wood Door";
  654.     pictureItem = "Exile_Item_WoodDoorKit";
  655.     requiredInteractionModelGroup = "WorkBench";
  656.     returnedItems[] =
  657.     {
  658.         {1, "Exile_Item_WoodDoorKit"}
  659.     };
  660.     components[] =
  661.     {
  662.         {1, "Exile_Item_WoodDoorwayKit"},
  663.         {2, "Exile_Item_WoodPlank"}
  664.     };
  665. };
  666. class UpgradeToWoodFloorPort: Exile_AbstractCraftingRecipe
  667. {
  668.     name = "Upgrade to Wood Floor Port";
  669.     pictureItem = "Exile_Item_WoodFloorPortKit";
  670.     requiredInteractionModelGroup = "WorkBench";
  671.     returnedItems[] =
  672.     {
  673.         {1, "Exile_Item_WoodFloorPortKit"}
  674.     };
  675.     components[] =
  676.     {
  677.         {1, "Exile_Item_WoodFloorKit"},
  678.         {2, "Exile_Item_WoodPlank"}
  679.     };
  680. };
  681. class UpgradeToWoodGate: Exile_AbstractCraftingRecipe
  682. {
  683.     name = "Upgrade to Wood Gate";
  684.     pictureItem = "Exile_Item_WoodGateKit";
  685.     requiredInteractionModelGroup = "WorkBench";
  686.     returnedItems[] =
  687.     {
  688.         {1, "Exile_Item_WoodGateKit"}
  689.     };
  690.     components[] =
  691.     {
  692.         {1, "Exile_Item_WoodWallKit"},
  693.         {4, "Exile_Item_WoodPlank"}
  694.     };
  695. };
  696. class UpgradeToWoodWall: Exile_AbstractCraftingRecipe
  697. {
  698.     name = "Upgrade to Wood Wall";
  699.     pictureItem = "Exile_Item_WoodWallHalfKit";
  700.     requiredInteractionModelGroup = "WorkBench";
  701.     returnedItems[] =
  702.     {
  703.         {1, "Exile_Item_WoodWallKit"}
  704.     };
  705.     components[] =
  706.     {
  707.         {2, "Exile_Item_WoodWallHalfKit"}
  708.     };
  709. };
  710.  
  711. class UpgradeToWoodWindow: Exile_AbstractCraftingRecipe
  712. {
  713.     name = "Upgrade to Wood Window";
  714.     pictureItem = "Exile_Item_WoodWindowKit";
  715.     requiredInteractionModelGroup = "WorkBench";
  716.     returnedItems[] =
  717.     {
  718.         {1, "Exile_Item_WoodWindowKit"}
  719.     };
  720.     components[] =
  721.     {
  722.         {1, "Exile_Item_WoodWallKit"},
  723.         {2, "Exile_Item_WoodPlank"}
  724.     };
  725. };
  726.  
  727. class CfgExileArsenal
  728. {
  729.     #include "TRADERS\ARMA3V\ItemListARMA3V.hpp"
  730.     #include "TRADERS\ARMA3W\ItemListARMA3W.hpp"
  731.     #include "TRADERS\CUPW\ItemListCUPW.hpp"
  732.     #include "TRADERS\CUPV\ItemListCUPV.hpp"
  733.     #include "TRADERS\HVP\ItemListHVP.hpp"
  734.     #include "TRADERS\CUSTOM\ItemListCUSTOM.hpp"
  735.     #include "TRADERS\Exile\ItemListExile.hpp"
  736. };
  737. class CfgExileCustomCode
  738. {
  739.     /*
  740.         You can overwrite every single file of our code without touching it.
  741.         To do that, add the function name you want to overwrite plus the
  742.         path to your custom file here. If you wonder how this works, have a
  743.         look at our bootstrap/fn_preInit.sqf function.
  744.  
  745.         Simply add the following scheme here:
  746.  
  747.         <Function Name of Exile> = "<New File Name>";
  748.  
  749.         Example:
  750.  
  751.         ExileClient_util_fusRoDah = "myaddon\myfunction.sqf";
  752.     */
  753.     ExileClient_gui_xm8_slide_apps_onOpen = "xm8Apps\ExileClient_gui_xm8_slide_apps_onOpen.sqf";
  754. };
  755. class CfgExileEnvironment
  756. {
  757.     class Altis
  758.     {
  759.         class FireFlies
  760.         {
  761.             // 1 = enabled, 0 = disabled
  762.             enable = 0;
  763.  
  764.             // At this hour fire flies begin to spawn
  765.             startHour = 18;
  766.  
  767.             // At this hour fire flies stop spawning
  768.             endHour = 4;
  769.         };
  770.  
  771.         class Anomalies
  772.         {
  773.             // 1 = enabled, 0 = disabled
  774.             enable = 0;
  775.  
  776.             // At this hour anomalies begin to spawn
  777.             startHour = 19;
  778.  
  779.             // At this hour anomalies stop spawning
  780.             endHour = 6;
  781.         };
  782.  
  783.         class Breathing
  784.         {
  785.             // 1 = enabled, 0 = disabled
  786.             enable = 0;
  787.         };
  788.  
  789.         class Snow
  790.         {
  791.             // 1 = enabled, 0 = disabled
  792.             enable = 0;
  793.  
  794.             // https://community.bistudio.com/wiki/surfaceType
  795.             surfaces[] = {};
  796.         };
  797.  
  798.         class Radiation
  799.         {
  800.             // 1 = enabled, 0 = disabled
  801.             enable = 0;
  802.  
  803.             /*
  804.                 Defines contaminated zones in a specific map.
  805.                 You can define multiple zones per map. The format
  806.                 of the zones is:
  807.  
  808.                 [Position ASL(!), Full Radiation Radius, Maximum Radius]
  809.  
  810.                 The radius works as follows:
  811.  
  812.                 |-------------------------------------------------------|
  813.                                     Maximum Radius
  814.  
  815.                 |------------------------|
  816.                   Full Radiation Radius
  817.  
  818.                 Within the full radiation radius, radiation factor is
  819.                 always at a maximum. Outside of this, it lowers down
  820.                 to no radiation smoothly.
  821.  
  822.                 Radiation:
  823.  
  824.                 |------------------------|------------------------------|
  825.                 1        1      1        1     0.75    0.5     0.25    0
  826.             */
  827.             contaminatedZones[] = {};
  828.         };
  829.  
  830.         class Temperature
  831.         {
  832.             // Temperature in °C for the time of day, per hour
  833.             // Add the first index to the last index, so it is 25 indizes!
  834.             daytimeTemperature[] = {15.93,16.89,18.42,20.40,22.68,25.10,27.48,29.63,31.40,32.66,33.32,33.80,33.80,33.32,32.66,31.40,29.63,27.48,25.10,22.68,20.40,18.42,16.89,15.93,15.93};
  835.  
  836.             // Temperature change in °C when it is 100% overcast
  837.             overcast = -2;
  838.  
  839.             // Temperature change in °C when it is 100% raining
  840.             rain = -5;
  841.  
  842.             // Temperature change in °C when it is 100% windy
  843.             wind = -1;
  844.  
  845.             // Temperature change per 100m altitude in °C
  846.             altitude = -0.5;
  847.  
  848.             // Difference from the daytime temperature to the water temperature
  849.             water = -5;
  850.         };
  851.     };
  852.  
  853.     class Namalsk: Altis
  854.     {
  855.         class FireFlies: FireFlies
  856.         {
  857.             enable = 1;
  858.         };
  859.  
  860.         class Anomalies: Anomalies
  861.         {
  862.             enable = 1;
  863.         };
  864.  
  865.         class Breathing: Breathing
  866.         {
  867.             enable = 1;
  868.         };
  869.  
  870.         class Snow: Snow
  871.         {
  872.             enable = 1;
  873.             surfaces[] = {"#nam_snow"};
  874.         };
  875.  
  876.         class Radiation: Radiation
  877.         {
  878.             enable = 1;
  879.             contaminatedZones[] =
  880.             {
  881.                 {{3960.148454.75,    152.862},   80,     140},   // Object A1
  882.                 {{4974.706632.82,    4.74293},   40,     150},   // Object A2
  883.                 {{6487.929302.03,    36.0014},   60,     110}    // Sebjan Chemical Factory
  884.             };
  885.         };
  886.  
  887.         class Temperature: Temperature
  888.         {
  889.             daytimeTemperature[] = {-2.00,-1.77,-1.12,-0.10,1.24,2.78,4.40,6.00,7.46,8.65,9.50,9.90,9.90,9.50,8.65,7.46,6.00,4.40,2.78,1.24,-0.10,-1.12,-1.77,-2.00,-2.00};
  890.         };
  891.     };
  892. };
  893. class CfgExileHUD
  894. {
  895.     class ShortItemNames
  896.     {
  897.         SmokeShell[]                        = {"WHITE",     "SMOKE"};
  898.         1Rnd_Smoke_Grenade_shell[]          = {"WHITE",     "SMOKE"};
  899.         3Rnd_Smoke_Grenade_shell[]          = {"WHITE",     "SMOKE"};
  900.  
  901.         SmokeShellBlue[]                    = {"BLUE",      "SMOKE"};
  902.         1Rnd_SmokeBlue_Grenade_shell[]      = {"BLUE",      "SMOKE"};
  903.         3Rnd_SmokeBlue_Grenade_shell[]      = {"BLUE",      "SMOKE"};
  904.  
  905.         SmokeShellGreen[]                   = {"GREEN",     "SMOKE"};
  906.         1Rnd_SmokeGreen_Grenade_shell[]     = {"GREEN",     "SMOKE"};
  907.         3Rnd_SmokeGreen_Grenade_shell[]     = {"GREEN",     "SMOKE"};
  908.  
  909.         SmokeShellOrange[]                  = {"ORANGE",    "SMOKE"};
  910.         1Rnd_SmokeOrange_Grenade_shell[]    = {"ORANGE",    "SMOKE"};
  911.         3Rnd_SmokeOrange_Grenade_shell[]    = {"ORANGE",    "SMOKE"};
  912.  
  913.         SmokeShellPurple[]                  = {"PURPLE",    "SMOKE"};
  914.         1Rnd_SmokePurple_Grenade_shell[]    = {"PURPLE",    "SMOKE"};
  915.         3Rnd_SmokePurple_Grenade_shell[]    = {"PURPLE",    "SMOKE"};
  916.  
  917.         SmokeShellRed[]                     = {"RED",       "SMOKE"};
  918.         1Rnd_SmokeRed_Grenade_shell[]       = {"RED",       "SMOKE"};
  919.         3Rnd_SmokeRed_Grenade_shell[]       = {"RED",       "SMOKE"};
  920.  
  921.         SmokeShellYellow[]                  = {"YELLOW",    "SMOKE"};
  922.         1Rnd_SmokeYellow_Grenade_shell[]    = {"YELLOW",    "SMOKE"};
  923.         3Rnd_SmokeYellow_Grenade_shell[]    = {"YELLOW",    "SMOKE"};
  924.  
  925.         UGL_FlareCIR_F[]                    = {"IR",        "FLARE"};
  926.         3Rnd_UGL_FlareCIR_F[]               = {"IR",        "FLARE"};
  927.  
  928.         UGL_FlareGreen_F[]                  = {"GREEN",     "FLARE"};
  929.         3Rnd_UGL_FlareGreen_F[]             = {"GREEN",     "FLARE"};
  930.  
  931.         UGL_FlareRed_F[]                    = {"RED",       "FLARE"};
  932.         3Rnd_UGL_FlareRed_F[]               = {"RED",       "FLARE"};
  933.  
  934.         UGL_FlareWhite_F[]                  = {"WHITE",     "FLARE"};
  935.         3Rnd_UGL_FlareWhite_F[]             = {"WHITE",     "FLARE"};
  936.  
  937.         UGL_FlareYellow_F[]                 = {"YELLOW",    "FLARE"};
  938.         3Rnd_UGL_FlareYellow_F[]            = {"YELLOW",    "FLARE"};
  939.  
  940.         Chemlight_blue[]                    = {"BLUE",      "LIGHT"};
  941.         Chemlight_green[]                   = {"GREEN",     "LIGHT"};
  942.         Chemlight_red[]                     = {"RED",       "LIGHT"};
  943.         Chemlight_yellow[]                  = {"YELLOW",    "LIGHT"};
  944.  
  945.         1Rnd_HE_Grenade_shell[]             = {"40MM"};
  946.         3Rnd_HE_Grenade_shell[]             = {"40MM"};
  947.  
  948.         O_IR_Grenade[]                      = {"IR"};
  949.         I_IR_Grenade[]                      = {"IR"};
  950.         B_IR_Grenade[]                      = {"IR"};
  951.  
  952.         HandGrenade[]                       = {"RGO"};
  953.         MiniGrenade[]                       = {"RGN"};
  954.  
  955.         Exile_Item_ZipTie[]                 = {"ZIP", "TIE"};
  956.     };
  957. };
  958. class CfgExileLootSettings
  959. {
  960.     /**
  961.      * Lifetime of loot in minutes. Synchronize this with
  962.      * the garbage collector settings of your server
  963.      * CfgSettings!
  964.      */
  965.     lifeTime = 8;
  966.  
  967.     /**
  968.      * Interval in seconds when the client searches for
  969.      * new buildings to spawn loot in
  970.      */
  971.     spawnInterval = 30;
  972.  
  973.     /**
  974.      * This is a percentage value to determine how many loot
  975.      * positions should contain loot when the system spawns loot.
  976.      *
  977.      * If a building has 20 positions defined, Exile will
  978.      * spawn loot in 10 random positions of them.
  979.      *
  980.      * This means smaller buildings spawn less loot and larger
  981.      * ones spawn more loot.
  982.      *
  983.      * You can also cap it at a maximum value. See below.
  984.      */
  985.     maximumPositionCoverage = 30;
  986.  
  987.     /**
  988.      * Limit the number of loot positions per building. If the
  989.      * above percentage value exceeds this value, it will be capped.
  990.      *
  991.      * Example: Coverage is 50%. Building has 60 loot positions defined.
  992.      * This results in 30 loot positions and that is too much. So we
  993.      * cap this at 10
  994.      */
  995.     maximumNumberOfLootSpotsPerBuilding = 3;
  996.  
  997.     /**
  998.      * Exile spawns a random number of items per loot spot. This
  999.      * is the upper cap for that. So 3 means it could spawn 1, 2
  1000.      * or 3.
  1001.      */
  1002.     maximumNumberOfItemsPerLootSpot = 2;
  1003.  
  1004.     /**
  1005.      * Radius in meter to spawn loot AROUND each player.
  1006.      * Do NOT touch this value if you dont know what you do.
  1007.      * The higher the number, the higher the drop rates, the
  1008.      * easier your server will lag.
  1009.      *
  1010.      * 50m  = Minimum
  1011.      * 200m = Maximum
  1012.      */
  1013.     spawnRadius = 60;
  1014.  
  1015.     /**
  1016.      * Defines the radius around trader cities where the system should
  1017.      * not spawn loot. Set this to 0 if you want to have loot spawning
  1018.      * in trader citites, ugh.
  1019.      */
  1020.     minimumDistanceToTraderZones = 500;
  1021.  
  1022.     /**
  1023.      * Defines the radius around territories where no loot spawns.
  1024.      * This does not regard the actual size of a territory. So do not
  1025.      * set this to a lower value than the maximum radius of a territory,
  1026.      * which is 150m by default.
  1027.      */
  1028.     minimumDistanceToTerritories = 150;
  1029. };
  1030. class CfgExileMusic
  1031. {
  1032.     Ambient[] = {"ExileTrack03","ExileTrack04"};
  1033.     Combat[] = {"ExileTrack06","ExileTrack07"};
  1034.     Intro[] = {"ExileTrack02","ExileTrack03"};
  1035. };
  1036. class CfgExileParty
  1037. {
  1038.     showESP = 1;
  1039.     allow3DMarkers = 1;
  1040. };
  1041. class CfgFlags
  1042. {
  1043.     class USA
  1044.     {
  1045.         name = "USA";
  1046.         texture = "\A3\Data_F\Flags\flag_us_co.paa";
  1047.         uids[] = {};
  1048.     };
  1049. };
  1050.  
  1051. class ExileAbstractAction
  1052. {
  1053.     title = "";
  1054.     condition = "true";
  1055.     action = "";
  1056.     priority = 1.5;
  1057.     showWindow = false;
  1058. };
  1059.  
  1060. /**
  1061.  * Sort this by probability of occurence to speed things up a bit
  1062.  */
  1063. class CfgInteractionMenus
  1064. {
  1065. #include "EBM\menus.hpp"
  1066. };
  1067.  
  1068.     class Car
  1069.     {
  1070.         targetType = 2;
  1071.         target = "Car";
  1072.  
  1073.         class Actions
  1074.         {
  1075.             class ScanLock: ExileAbstractAction
  1076.             {
  1077.                 title = "Scan Lock";
  1078.                 condition = "('Exile_Item_ThermalScannerPro' in (magazines player)) && !ExilePlayerInSafezone && ((locked ExileClientInteractionObject) != 1)";
  1079.                 action = "_this call ExileClient_object_lock_scan";
  1080.             };
  1081.  
  1082.             // Locks a vehicle
  1083.             class Lock: ExileAbstractAction
  1084.             {
  1085.                 title = "Lock";
  1086.                 condition = "((locked ExileClientInteractionObject) isEqualTo 0) && ((locked ExileClientInteractionObject) != 1)";
  1087.                 action = "true spawn ExileClient_object_lock_toggle";
  1088.             };
  1089.  
  1090.             // Unlocks a vehicle
  1091.             class Unlock: ExileAbstractAction
  1092.             {
  1093.                 title = "Unlock";
  1094.                 condition = "((locked ExileClientInteractionObject) isEqualTo 2) && ((locked ExileClientInteractionObject) != 1)";
  1095.                 action = "false spawn ExileClient_object_lock_toggle";
  1096.             };
  1097.  
  1098.             // Repairs a vehicle to 100%. Requires Duckttape
  1099.             class Repair: ExileAbstractAction
  1100.             {
  1101.                 title = "Repair";
  1102.                 condition = "true";
  1103.                 action = "['RepairVehicle', _this select 0] call ExileClient_action_execute";
  1104.             };
  1105.  
  1106.             // Hot-wires a vehicle
  1107.             class Hotwire: ExileAbstractAction
  1108.             {
  1109.                 title = "Hotwire";
  1110.                 condition = "((locked ExileClientInteractionObject) isEqualTo 2) && ((locked ExileClientInteractionObject) != 1)";
  1111.                 action = "['HotwireVehicle', _this select 0] call ExileClient_action_execute";
  1112.             };
  1113.  
  1114.             // Flips a vehicle so the player doesnt have to call an admin
  1115.             // Check if vector up is fucked
  1116.             class Flip: ExileAbstractAction
  1117.             {
  1118.                 title = "Flip";
  1119.                 condition = "call ExileClient_object_vehicle_interaction_show";
  1120.                 action = "_this call ExileClient_object_vehicle_flip";
  1121.             };
  1122.  
  1123.             // Fills fuel from a can into a car
  1124.             class Refuel: ExileAbstractAction
  1125.             {
  1126.                 title = "Refuel";
  1127.                 condition = "call ExileClient_object_vehicle_interaction_show";
  1128.                 action = "_this call ExileClient_object_vehicle_refuel";
  1129.             };
  1130.  
  1131.             // Drains fuel from a car into an empty jerry can
  1132.             class DrainFuel: ExileAbstractAction
  1133.             {
  1134.                 title = "Drain Fuel";
  1135.                 condition = "call ExileClient_object_vehicle_interaction_show";
  1136.                 action = "_this call ExileClient_object_vehicle_drain";
  1137.             };
  1138.         };
  1139.     };
  1140.  
  1141.     class Air
  1142.     {
  1143.         target = "Air";
  1144.         targetType = 2;
  1145.  
  1146.         class Actions
  1147.         {
  1148.             class ScanLock: ExileAbstractAction
  1149.             {
  1150.                 title = "Scan Lock";
  1151.                 condition = "('Exile_Item_ThermalScannerPro' in (magazines player)) && ((locked ExileClientInteractionObject) != 1) && !ExilePlayerInSafezone";
  1152.                 action = "_this call ExileClient_object_lock_scan";
  1153.             };
  1154.  
  1155.             // Locks a vehicle
  1156.             class Lock: ExileAbstractAction
  1157.             {
  1158.                 title = "Lock";
  1159.                 condition = "((locked ExileClientInteractionObject) isEqualTo 0) && ((locked ExileClientInteractionObject) != 1)";
  1160.                 action = "true spawn ExileClient_object_lock_toggle";
  1161.             };
  1162.  
  1163.             // Unlocks a vehicle
  1164.             class Unlock: ExileAbstractAction
  1165.             {
  1166.                 title = "Unlock";
  1167.                 condition = "((locked ExileClientInteractionObject) isEqualTo 2) && ((locked ExileClientInteractionObject) != 1)";
  1168.                 action = "false spawn ExileClient_object_lock_toggle";
  1169.             };
  1170.  
  1171.             // Hot-wires a vehicle
  1172.             class Hotwire: ExileAbstractAction
  1173.             {
  1174.                 title = "Hotwire";
  1175.                 condition = "((locked ExileClientInteractionObject) isEqualTo 2) && ((locked ExileClientInteractionObject) != 1)";
  1176.                 action = "['HotwireVehicle', _this select 0] call ExileClient_action_execute";
  1177.             };
  1178.  
  1179.             // Repairs a vehicle to 100%. Requires Duckttape
  1180.             class Repair: ExileAbstractAction
  1181.             {
  1182.                 title = "Repair";
  1183.                 condition = "true";
  1184.                 action = "['RepairVehicle', _this select 0] call ExileClient_action_execute";
  1185.             };
  1186.  
  1187.             // Flips a vehicle so the player doesnt have to call an admin
  1188.             // Check if vector up is fucked
  1189.             class Flip: ExileAbstractAction
  1190.             {
  1191.                 title = "Flip";
  1192.                 condition = "call ExileClient_object_vehicle_interaction_show";
  1193.                 action = "_this call ExileClient_object_vehicle_flip";
  1194.             };
  1195.  
  1196.             // Fills fuel from a can into a car
  1197.             class Refuel: ExileAbstractAction
  1198.             {
  1199.                 title = "Refuel";
  1200.                 condition = "call ExileClient_object_vehicle_interaction_show";
  1201.                 action = "_this call ExileClient_object_vehicle_refuel";
  1202.             };
  1203.  
  1204.             // Drains fuel from a car into an empty jerry can
  1205.             class DrainFuel: ExileAbstractAction
  1206.             {
  1207.                 title = "Drain Fuel";
  1208.                 condition = "call ExileClient_object_vehicle_interaction_show";
  1209.                 action = "_this call ExileClient_object_vehicle_drain";
  1210.             };
  1211.  
  1212.             class RotateLeft: ExileAbstractAction
  1213.             {
  1214.                 title = "Rotate Left";
  1215.                 condition = "call ExileClient_object_vehicle_interaction_show";
  1216.                 action = "[ExileClientInteractionObject,-15] call ExileClient_object_vehicle_rotate";
  1217.             };
  1218.  
  1219.             class RotateRight: ExileAbstractAction
  1220.             {
  1221.                 title = "Rotate Right";
  1222.                 condition = "call ExileClient_object_vehicle_interaction_show";
  1223.                 action = "[ExileClientInteractionObject,15] call ExileClient_object_vehicle_rotate";
  1224.             };
  1225.         };
  1226.     };
  1227.  
  1228.     class Safe
  1229.     {
  1230.         targetType = 2;
  1231.         target = "Exile_Container_Safe";
  1232.  
  1233.         class Actions
  1234.         {
  1235.             class ScanLock: ExileAbstractAction
  1236.             {
  1237.                 title = "Scan Lock";
  1238.                 condition = "('Exile_Item_ThermalScannerPro' in (magazines player)) && !((ExileClientInteractionObject getvariable ['ExileIsLocked',1]) isEqualTo 1) && !ExilePlayerInSafezone";
  1239.                 action = "_this call ExileClient_object_lock_scan";
  1240.             };
  1241.  
  1242.             // Locks a vehicle
  1243.             class Lock : ExileAbstractAction
  1244.             {
  1245.                 title = "Lock";
  1246.                 condition = "((ExileClientInteractionObject getvariable ['ExileIsLocked',1]) isEqualTo 0)";
  1247.                 action = "true spawn ExileClient_object_lock_toggle";
  1248.             };
  1249.  
  1250.             class Unlock : ExileAbstractAction
  1251.             {
  1252.                 title = "Unlock";
  1253.                 condition = "((ExileClientInteractionObject getvariable ['ExileIsLocked',1]) isEqualTo -1)";
  1254.                 action = "false spawn ExileClient_object_lock_toggle";
  1255.             };
  1256.  
  1257.             class Pack : ExileAbstractAction
  1258.             {
  1259.                 title = "Pack";
  1260.                 condition = "((ExileClientInteractionObject getvariable ['ExileIsLocked',1]) isEqualTo 0)";
  1261.                 action = "_this spawn ExileClient_object_container_pack";
  1262.             };
  1263.  
  1264.             class SetPinCode : ExileAbstractAction
  1265.             {
  1266.                 title = "Set PIN";
  1267.                 condition = "((ExileClientInteractionObject getvariable ['ExileIsLocked',1]) isEqualTo 0)";
  1268.                 action = "_this spawn ExileClient_object_lock_setPin";
  1269.             };
  1270.         };
  1271.     };
  1272.  
  1273.     class Laptop
  1274.     {
  1275.         targetType = 2;
  1276.         target = "Exile_Construction_Laptop_Static";
  1277.  
  1278.         class Actions
  1279.         {
  1280.             class CameraSystem: ExileAbstractAction
  1281.             {
  1282.                 title = "CCTV Access";
  1283.                 condition = "((ExileClientInteractionObject animationPhase 'LaptopLidRotation') >= 0.5)";
  1284.                 action = "_this call ExileClient_gui_baseCamera_show";
  1285.             };
  1286.         };
  1287.     };
  1288.  
  1289.     class SupplyBox
  1290.     {
  1291.         targetType = 2;
  1292.         target = "Exile_Container_SupplyBox";
  1293.  
  1294.         class Actions
  1295.         {
  1296.             class Mount: ExileAbstractAction
  1297.             {
  1298.                 title = "Mount";
  1299.                 condition = "(isNull (attachedTo ExileClientInteractionObject)) && ((ExileClientInteractionObject getvariable ['ExileOwnerUID',1]) isEqualTo 1)";
  1300.                 action = "_this call ExileClient_object_supplyBox_mount";
  1301.             };
  1302.  
  1303.             class Install: ExileAbstractAction
  1304.             {
  1305.                 title = "Install";
  1306.                 condition = "isNull (attachedTo ExileClientInteractionObject) && ((ExileClientInteractionObject getvariable ['ExileOwnerUID',1]) isEqualTo 1)";
  1307.                 action = "_this call ExileClient_object_supplyBox_install";
  1308.             };
  1309.  
  1310.             class Unmount: ExileAbstractAction
  1311.             {
  1312.                 title = "Unmount";
  1313.                 condition = "!(isNull (attachedTo ExileClientInteractionObject)) && ((ExileClientInteractionObject getvariable ['ExileOwnerUID',1]) isEqualTo 1)";
  1314.                 action = "_this call ExileClient_object_supplyBox_unmount";
  1315.             };
  1316.         };
  1317.     };
  1318.  
  1319.     class Construction
  1320.     {
  1321.         targetType = 2;
  1322.         target = "Exile_Construction_Abstract_Static";
  1323.  
  1324.         class Actions
  1325.         {
  1326.             class ScanLock: ExileAbstractAction
  1327.             {
  1328.                 title = "Scan Lock";
  1329.                 condition = "('Exile_Item_ThermalScannerPro' in (magazines player)) && !((ExileClientInteractionObject getvariable ['ExileIsLocked',1]) isEqualTo 1)";
  1330.                 action = "_this call ExileClient_object_lock_scan";
  1331.             };
  1332.  
  1333.             class Unlock : ExileAbstractAction
  1334.             {
  1335.                 title = "Unlock";
  1336.                 condition = "((ExileClientInteractionObject getvariable ['ExileIsLocked',1]) isEqualTo -1)";
  1337.                 action = "false spawn ExileClient_object_lock_toggle";
  1338.             };
  1339.  
  1340.             class Lock : ExileAbstractAction
  1341.             {
  1342.                 title = "Lock";
  1343.                 condition = "((ExileClientInteractionObject getvariable ['ExileIsLocked',1]) isEqualTo 0)";
  1344.                 action = "true spawn ExileClient_object_lock_toggle";
  1345.             };
  1346.  
  1347.             // Picks up the construction so you can move it
  1348.             class Move: ExileAbstractAction
  1349.             {
  1350.                 title = "Move";
  1351.                 condition = "true";
  1352.                 action = "_this spawn ExileClient_object_construction_move";
  1353.             };
  1354.  
  1355.             // Removes the construction. Does not refund anything YET!
  1356.             class Deconstruct: ExileAbstractAction
  1357.             {
  1358.                 title = "Remove";
  1359.                 condition = "true";
  1360.                 action = "_this spawn ExileClient_object_construction_deconstruct";
  1361.             };
  1362.  
  1363.             class AddALock : ExileAbstractAction
  1364.             {
  1365.                 title = "Add a Lock";
  1366.                 condition = "call ExileClient_object_construction_lockAddShow";
  1367.                 action = "_this spawn ExileClient_object_construction_lockAdd";
  1368.             };
  1369.  
  1370.             class Upgrade : ExileAbstractAction
  1371.             {
  1372.                 title = "Upgrade";
  1373.                 condition = "call ExileClient_object_construction_upgradeShow";
  1374.                 action = "_this call ExileClient_object_construction_upgrade";
  1375.             };
  1376.  
  1377.         };
  1378.     };
  1379.  
  1380.     /*
  1381.         Tent, Storage crate etc.
  1382.     */
  1383.     class Container
  1384.     {
  1385.         targetType = 2;
  1386.         target = "Exile_Container_Abstract";
  1387.  
  1388.         class Actions
  1389.         {
  1390.             class Pack
  1391.             {
  1392.                 title = "Pack";
  1393.                 condition = "!((typeOf ExileClientInteractionObject) isEqualTo 'Exile_Container_SupplyBox')";
  1394.                 action = "_this spawn ExileClient_object_container_pack";
  1395.             };
  1396.             // Picks up the container so you can move it
  1397.             class Move: ExileAbstractAction
  1398.             {
  1399.                 title = "Move";
  1400.                 condition = "(getNumber(configFile >> 'CfgVehicles' >> typeOf ExileClientInteractionObject >> 'exileIsLockable') isEqualTo 0) || ((ExileClientInteractionObject getvariable ['ExileIsLocked',1]) isEqualTo 0)";
  1401.                 action = "_this spawn ExileClient_object_construction_move";
  1402.             };
  1403.         };
  1404.     };
  1405.  
  1406.     class Flag
  1407.     {
  1408.         targetType = 2;
  1409.         target = "Exile_Construction_Flag_Static";
  1410.  
  1411.         class Actions
  1412.         {
  1413.             /*
  1414.             class Manage : ExileAbstractAction
  1415.             {
  1416.                 title = "Manage";
  1417.                 condition = "true";
  1418.                 action = "_this call ExileClient_gui_baseManagement_event_show";
  1419.             };
  1420.             */
  1421.             class Upgrade: ExileAbstractAction
  1422.             {
  1423.                 title = "Upgrade";
  1424.                 condition = "true";
  1425.                 action = "_this call ExileClient_gui_upgradeterritoryDialog_request";
  1426.             };
  1427.         };
  1428.     };
  1429.  
  1430.     class Boat
  1431.     {
  1432.         targetType = 2;
  1433.         target = "Ship";
  1434.  
  1435.         class Actions
  1436.         {
  1437.             // Locks a vehicle
  1438.             class Lock: ExileAbstractAction
  1439.             {
  1440.                 title = "Lock";
  1441.                 condition = "((locked ExileClientInteractionObject) isEqualTo 0) && ((locked ExileClientInteractionObject) != 1)";
  1442.                 action = "true spawn ExileClient_object_lock_toggle";
  1443.             };
  1444.  
  1445.             // Unlocks a vehicle
  1446.             class Unlock: ExileAbstractAction
  1447.             {
  1448.                 title = "Unlock";
  1449.                 condition = "((locked ExileClientInteractionObject) isEqualTo 2) && ((locked ExileClientInteractionObject) != 1)";
  1450.                 action = "false spawn ExileClient_object_lock_toggle";
  1451.             };
  1452.  
  1453.             // Hot-wires a vehicle
  1454.             class Hotwire: ExileAbstractAction
  1455.             {
  1456.                 title = "Hotwire";
  1457.                 condition = "((locked ExileClientInteractionObject) isEqualTo 2) && ((locked ExileClientInteractionObject) != 1)";
  1458.                 action = "['HotwireVehicle', _this select 0] call ExileClient_action_execute";
  1459.             };
  1460.  
  1461.             // Repairs a vehicle to 100%. Requires Duckttape
  1462.             class Repair: ExileAbstractAction
  1463.             {
  1464.                 title = "Repair";
  1465.                 condition = "true";
  1466.                 action = "['RepairVehicle', _this select 0] call ExileClient_action_execute";
  1467.             };
  1468.  
  1469.             // Fills fuel from a can into a car
  1470.             class Refuel: ExileAbstractAction
  1471.             {
  1472.                 title = "Refuel";
  1473.                 condition = "call ExileClient_object_vehicle_interaction_show";
  1474.                 action = "_this call ExileClient_object_vehicle_refuel";
  1475.             };
  1476.  
  1477.             // Drains fuel from a car into an empty jerry can
  1478.             class DrainFuel: ExileAbstractAction
  1479.             {
  1480.                 title = "Drain Fuel";
  1481.                 condition = "call ExileClient_object_vehicle_interaction_show";
  1482.                 action = "_this call ExileClient_object_vehicle_drain";
  1483.             };
  1484.  
  1485.             // Pushes a boat into look direction to move into water
  1486.             class Push: ExileAbstractAction
  1487.             {
  1488.                 title = "Fus Ro Dah!";
  1489.                 condition = "((crew ExileClientInteractionObject) isEqualTo [])";
  1490.                 action = "_this call ExileClient_object_vehicle_push";
  1491.             };
  1492.         };
  1493.     };
  1494.  
  1495.     class Bikes
  1496.     {
  1497.         targetType = 2;
  1498.         target = "Bicycle";
  1499.  
  1500.         class Actions
  1501.         {
  1502.             class Flip: ExileAbstractAction
  1503.             {
  1504.                 title = "Flip";
  1505.                 condition = "true";
  1506.                 action = "_this call ExileClient_object_vehicle_flip";
  1507.             };
  1508.         };
  1509.     };
  1510.  
  1511.     class Player
  1512.     {
  1513.         targetType = 2;
  1514.         target = "Exile_Unit_Player";
  1515.  
  1516.         class Actions
  1517.         {
  1518.             class Free: ExileAbstractAction
  1519.             {
  1520.                 title = "Free";
  1521.                 condition = "(alive ExileClientInteractionObject) && (ExileClientInteractionObject getVariable ['ExileIsHandcuffed', false]) && !ExileClientIsHandcuffed";
  1522.                 action = "_this call ExileClient_object_handcuffs_free";
  1523.             };
  1524.  
  1525.             class Search: ExileAbstractAction
  1526.             {
  1527.                 title = "Search Gear";
  1528.                 condition = "(alive ExileClientInteractionObject) && (ExileClientInteractionObject getVariable ['ExileIsHandcuffed', false]) && !ExileClientIsHandcuffed";
  1529.                 action = "_this call ExileClient_object_handcuffs_searchGear";
  1530.             };
  1531.  
  1532.             class Identify: ExileAbstractAction
  1533.             {
  1534.                 title = "Identify Body";
  1535.                 condition = "!(alive ExileClientInteractionObject)";
  1536.                 action = "_this call ExileClient_object_player_identifyBody";
  1537.             };
  1538.         };
  1539.     };
  1540.  
  1541. /**
  1542.  * Classname is used for reference
  1543.  * name is displayed in crafting requirements
  1544.  * models is used for crafting and interaction menus
  1545.  */
  1546. class CfgInteractionModels
  1547. {
  1548.     class WaterSource
  1549.     {
  1550.         name = "Water tanks, barrels, coolers or pumps";
  1551.         models[] =
  1552.         {
  1553.             "barrelwater_f",
  1554.             "barrelwater_grey_f",
  1555.             "waterbarrel_f",
  1556.             "watertank_f",
  1557.             "stallwater_f",
  1558.             "waterpump_01_f",
  1559.             "water_source_f",
  1560.  
  1561.             // Namalsk
  1562.             "wellpump",
  1563.             "Land_jhad_stand_water",
  1564.             "Land_Jbad_Misc_Well_L",
  1565.             "Land_jbad_Fridge",
  1566.             "Land_jbad_reservoir",
  1567.             "Land_jbad_teapot",
  1568.             "Land_KBud"
  1569.         };
  1570.     };
  1571.  
  1572.     class CleanWaterSource
  1573.     {
  1574.         name = "Water cooler";
  1575.         models[] =
  1576.         {
  1577.             "watercooler"
  1578.         };
  1579.     };
  1580.  
  1581.     class WorkBench
  1582.     {
  1583.         name = "Work Bench";
  1584.         models[] =
  1585.         {
  1586.             "workstand_f.p3d"
  1587.         };
  1588.     };
  1589.  
  1590.     class WoodSource
  1591.     {
  1592.         name = "Trees";
  1593.         models[] =
  1594.         {
  1595.             " t_",
  1596.             " bo_t_",
  1597.  
  1598.             // A2 trees
  1599.             " str_",
  1600.             " Smrk_",
  1601.             " les_",
  1602.             " brg_"
  1603.         };
  1604.     };
  1605.  
  1606.     class BushSource
  1607.     {
  1608.         name = "Bushes";
  1609.         models[] = {" b_"};
  1610.     };
  1611.  
  1612.     class StoneSource
  1613.     {
  1614.         name = "Stones, stone walls or rocks";
  1615.         models[] =
  1616.         {
  1617.             // We are using find() so this should match everything that is out of stone/rock
  1618.             "stone",
  1619.             "Stone",
  1620.             "Rock",
  1621.             "rock",
  1622.             "cobble",
  1623.             "Cobble",
  1624.             "sea_wall_f.p3d"
  1625.         };
  1626.     };
  1627.  
  1628.     // TODO: Add https://community.bistudio.com/wikidata/images/thumb/6/60/Arma3_CfgVehicles_Land_Tank_rust_F.jpg/150px-Arma3_CfgVehicles_Land_Tank_rust_F.jpg
  1629.     class FuelSource
  1630.     {
  1631.         name = "Fuel pumps, stations or barrels";
  1632.         models[] =
  1633.         {
  1634.             "fuelstation_feed_f.p3d",
  1635.             "Tank_rust_F", // added new
  1636.             "metalbarrel_f.p3d",
  1637.             "flexibletank_01_f.p3d",
  1638.             "fs_feed_f.p3d"
  1639.         };
  1640.     };
  1641.  
  1642.     class Wrecks
  1643.     {
  1644.         name = "Wrecks";
  1645.         models[] =
  1646.         {
  1647.             "wreck_"
  1648. /*
  1649.             "wreck_bmp2_f.p3d",
  1650.             "wreck_brdm2_f.p3d",
  1651.             "wreck_car2_f.p3d",
  1652.             "wreck_car3_f.p3d",
  1653.             "wreck_car_f.p3d",
  1654.             "wreck_cardismantled_f.p3d",
  1655.             "wreck_hmmwv_f.p3d",
  1656.             "wreck_hunter_f.p3d",
  1657.             "wreck_offroad2_f.p3d",
  1658.             "wreck_offroad_f.p3d",
  1659.             "wreck_skodovka_f.p3d",
  1660.             "wreck_slammer_f.p3d",
  1661.             "wreck_slammer_hull_f.p3d",
  1662.             "wreck_slammer_turret_f.p3d",
  1663.             "wreck_t72_hull_f.p3d",
  1664.             "wreck_t72_turret_f.p3d",
  1665.             "wreck_truck_dropside_f.p3d",
  1666.             "wreck_truck_f.p3d",
  1667.             "wreck_uaz_f.p3d",
  1668.             "wreck_ural_f.p3d"
  1669.             "wreck_van_f.p3d",
  1670.             */
  1671.         };
  1672.     };
  1673.  
  1674.     class Trash
  1675.     {
  1676.         name = "Trash";
  1677.         models[] =
  1678.         {
  1679.             "trash",
  1680.             "garbage",
  1681.             "crabcages_f.p3d",
  1682.             "fishinggear",
  1683.             "junkpile_f.p3d",
  1684.             "wheeliebin_01_f.p3d"
  1685. /*
  1686.             "barreltrash_f.p3d",
  1687.             "barreltrash_grey_f.p3d",
  1688.             "crabcages_f.p3d",
  1689.             "fishinggear_01_f.p3d",
  1690.             "fishinggear_02_f.p3d",
  1691.             "garbage_square3_f.p3d",
  1692.             "garbage_square5_f.p3d",
  1693.             "garbagebags_f.p3d",
  1694.             "garbagebarrel_01_f.p3d",
  1695.             "garbagecontainer_closed_f.p3d",
  1696.             "garbagecontainer_open_f.p3d",
  1697.             "garbagepallet_f.p3d",
  1698.             "garbagewashingmachine_f.p3d",
  1699.             "junkpile_f.p3d",
  1700.             "wheeliebin_01_f.p3d"
  1701. */
  1702.         };
  1703.     };
  1704. };
  1705. class CfgPlayer
  1706. {
  1707.     // In minutes ammount of time it takes to go from 100 - 0 if stationary
  1708.     hungerDecay = 90;
  1709.     thirstDecay = 60;
  1710.  
  1711.     // Damage taken from 0 (health||thirst)/sec
  1712.     healthDecay = 5.0;
  1713.  
  1714.     // Health regen if over BOTH
  1715.     thirstRegen = 90;
  1716.     hungerRegen = 90;
  1717.  
  1718.     // IF above meet recover HP%/MIN
  1719.     recoveryPerMinute = 2;
  1720.  
  1721.     // Set custom aim precision coefficient for weapon sway
  1722.     // https://community.bistudio.com/wiki/Arma_3_Stamina
  1723.     // Set to -1 if you want to use Arma 3 default value
  1724.     // setCustomAimCoef
  1725.     customAimCoefficient = 0.5;
  1726.  
  1727.     // 0 or 1
  1728.     enableFatigue = 0;
  1729.     enableStamina = 0;
  1730. };
  1731. class CfgTerritories
  1732. {
  1733.     // Base Cost / Radius
  1734.     // Level 1 is allways for Pop Tabs, >= 2 for Respect
  1735.     prices[] =
  1736.     {
  1737.         // Purchase Price       Radius      Number of Objects
  1738.         {5000,                  15,         30                  }, // Level 1
  1739.         {10000,                 30,         60                  }, // Level 2
  1740.         {15000,                 45,         90                  }, // Level 3
  1741.         {20000,                 60,         120                 }, // Level 4
  1742.         {25000,                 75,         150                 }, // Level 5
  1743.         {30000,                 90,         180                 }, // Level 6
  1744.         {35000,                 105,        210                 }, // Level 7
  1745.         {40000,                 120,        240                 }, // Level 8
  1746.         {45000,                 135,        270                 }, // Level 9
  1747.         {50000,                 150,        300                 }  // Level 10
  1748.     };
  1749.  
  1750.     // A shortcut of the above maximum radius
  1751.     maximumRadius = 150;
  1752.  
  1753.     // The above * 2 plus coverving the 20m you can move while placing things
  1754.     minimumDistanceToOtherTerritories = 325;
  1755.  
  1756.     // Maximum number of territories a player can own
  1757.     maximumNumberOfTerritoriesPerPlayer = 2;
  1758.  
  1759.     /**
  1760.      * Defines the minimum distance to safe zones / trader cities where players
  1761.      * cannot build territories
  1762.      */
  1763.     minimumDistanceToTraderZones = 1000;
  1764.  
  1765.     /**
  1766.      * Defines the minimum distance to spawn zones where players
  1767.      * cannot build territories
  1768.      */
  1769.     minimumDistanceToSpawnZones = 1000;
  1770.  
  1771.     // Amount of pop tabs or respect per object to pay
  1772.     popTabAmountPerObject = 10;
  1773.     respectAmountPerObject = 5;
  1774. };
  1775. class CfgTraderCategories
  1776. {
  1777.     #include "TRADERS\ARMA3V\TraderCategoriesARMA3V.hpp"
  1778.     #include "TRADERS\ARMA3W\TraderCategoriesARMA3W.hpp"
  1779.     #include "TRADERS\CUPW\TraderCategoriesCUPW.hpp"
  1780.     #include "TRADERS\CUPV\TraderCategoriesCUPV.hpp"
  1781.     #include "TRADERS\HVP\TraderCategoriesHVP.hpp"
  1782.     #include "TRADERS\CUSTOM\TraderCategoriesCUSTOM.hpp"
  1783.     #include "TRADERS\Exile\TraderCategoriesExile.hpp"
  1784. };
  1785.  
  1786. class CfgTraders
  1787. {
  1788.     /**
  1789.      * Weapons, scopes, silencers, ammo
  1790.      */
  1791.     class Exile_Trader_Armory
  1792.     {
  1793.         name = "ARMORY";
  1794.         showWeaponFilter = 1;
  1795.         categories[] =
  1796.         {
  1797.             "PointerAttachments",
  1798.             "CUPPointerAttachments",
  1799.             "MASPointerAttachments",
  1800.             "R3FPointerAttachments",
  1801.             "RHSPointerAttachments",
  1802.             "BipodAttachments",
  1803.             "R3FBipodAttachments",
  1804.             "RHSBipodAttachments",
  1805.             "MuzzleAttachments",
  1806.             "HLCMuzzleAttachments",
  1807.             "CUPMuzzleAttachments",
  1808.             "MASMuzzleAttachments",
  1809.             "R3FMuzzleAttachments",
  1810.             "RHSMuzzleAttachments",
  1811.             "OpticAttachments",
  1812.             "HLCOpticAttachments",
  1813.             "CUPOpticAttachments",
  1814.             "MASOpticAttachments",
  1815.             "R3FOpticAttachments",
  1816.             "RHSOpticAttachments",
  1817.             "Ammunition",
  1818.             "HLCAmmunition",
  1819.             "CUPAmmunition",
  1820.             "MASAmmunition",
  1821.             "R3FAmmunition",
  1822.             "RHSAmmunition",
  1823.             "Pistols",
  1824.             "CUPPistols",
  1825.             "MASPistols",
  1826.             "R3FPistols",
  1827.             "RHSPistols",
  1828.             "SubMachineGuns",
  1829.             "CUPSubMachineGuns",
  1830.             "MASSubMachineGuns",
  1831.             "R3FSubMachineGuns",
  1832.             "LightMachineGuns",
  1833.             "HLCLightMachineGuns",
  1834.             "CUPLightMachineGuns",
  1835.             "MASLightMachineGuns",
  1836.             "R3FLightMachineGuns",
  1837.             "RHSLightMachineGuns",
  1838.             "AssaultRifles",
  1839.             "HLCAssaultRifles",
  1840.             "CUPAssaultRifles",
  1841.             "MASAssaultRifles",
  1842.             "R3FAssaultRifles",
  1843.             "RHSAssaultRifles",
  1844.             "SniperRifles",
  1845.             "HLCSniperRifles",
  1846.             "HWPweapons",
  1847.             "CUPSniperRifles",
  1848.             "MASSniperRifles",
  1849.             "R3FSniperRifles",
  1850.             "RHSSniperRifles"
  1851.         };
  1852.     };
  1853.  
  1854.     /**
  1855.      * Satchels, nades, UAVs, static MGs
  1856.      */
  1857.     class Exile_Trader_SpecialOperations
  1858.     {
  1859.         name = "SPECIAL OPERATIONS";
  1860.         showWeaponFilter = 1; // for noob tubes
  1861.         categories[] =
  1862.         {
  1863.             "Flares",
  1864.             "Smokes",
  1865.             "UAVs",
  1866.             "StaticMGs",
  1867.             "Navigation",
  1868.             "ExplosiveWeapons",
  1869.             "Explosives",
  1870.             "A3Launchers",
  1871.             "CUPLaunchers",
  1872.             "MASLaunchers",
  1873.             "R3FLaunchers",
  1874.             "RHSLaunchers",
  1875.             "CUPLauncherAmmo",
  1876.             "MASLauncherAmmo",
  1877.             "R3FLauncherAmmo",
  1878.             "RHSLauncherAmmo",
  1879.             "A3LauncherAmmo",
  1880.             "CUPExplosive",
  1881.             "MASExplosive",
  1882.             "RHSMines"
  1883.         };
  1884.     };
  1885.  
  1886.     /**
  1887.      * Uniforms, vests, helmets, backpacks
  1888.      */
  1889.     class Exile_Trader_Equipment
  1890.     {
  1891.         name = "EQUIPMENT";
  1892.         showWeaponFilter = 0;
  1893.         categories[] =
  1894.         {
  1895.             "Headgear",
  1896.             "A3Headgear",
  1897.             "MASHeadgear",
  1898.             "RHSHeadgear",
  1899.             "TRYKHeadgear",
  1900.             "Uniforms",
  1901.             "RHSUniforms",
  1902.             "TRYKUniforms",
  1903.             "Vests",
  1904.             "RHSVests",
  1905.             "TRYKVests",
  1906.             "Backpacks",
  1907.             "A3Backpacks",
  1908.             "MASBackpacks",
  1909.             "TRYKBackpacks",
  1910.             "Tools",
  1911.             "MASTools",
  1912.             "FirstAid"
  1913.         };
  1914.     };
  1915.  
  1916.     /**
  1917.      * Cans, cans, cans
  1918.      */
  1919.     class Exile_Trader_Food
  1920.     {
  1921.         name = "FAST FOOD";
  1922.         showWeaponFilter = 0;
  1923.         categories[] =
  1924.         {
  1925.             "Food",
  1926.             "Drinks"
  1927.         };
  1928.     };
  1929.  
  1930.     /**
  1931.      * Light bulbs, metal, etc.
  1932.      */
  1933.     class Exile_Trader_Hardware
  1934.     {
  1935.         name = "HARDWARE";
  1936.         showWeaponFilter = 0;
  1937.         categories[] =
  1938.         {
  1939.             "Hardware",
  1940.             //"R3FTools",
  1941.             "CBuilding"
  1942.         };
  1943.     };
  1944.  
  1945.     /**
  1946.      * Sells cars and general vehicles
  1947.      */
  1948.     class Exile_Trader_Vehicle
  1949.     {
  1950.         name = "VEHICLE";
  1951.         showWeaponFilter = 0;
  1952.         categories[] =
  1953.         {
  1954.             "Bikes",
  1955.             "Cars",
  1956.             "A3Cars",
  1957.             "HVPCars",
  1958.             "MASCars",
  1959.             "CUPUnarmed",
  1960.             "MASTrucks",
  1961.             "CUPArmed",
  1962.             "MASArmed",
  1963.             "A3Armed",
  1964.             "RHSVehicles",
  1965.             "CTrucks",
  1966.             "Trucks",
  1967.             "A3Trucks",
  1968.             "CUGVs"
  1969.             //"MASTanks"
  1970.             //"A3Tanks"
  1971.             //"UGV"
  1972.             //"A3UGVs"
  1973.         };
  1974.     };
  1975.  
  1976.     /**
  1977.      * Sells choppers and planes
  1978.      */
  1979.     class Exile_Trader_Aircraft
  1980.     {
  1981.         name = "AIRCRAFT";
  1982.         showWeaponFilter = 0;
  1983.         categories[] =
  1984.         {
  1985.             "Choppers",
  1986.             "CChoppers",
  1987.             "CUPChoppers",
  1988.             "MASChoppers",
  1989.             "RHSChoppers",
  1990.             "A3unarmedChoppers",
  1991.             "A3armedChoppers",
  1992.             "Planes",
  1993.             "A3Planes",
  1994.             "CPlanes",
  1995.             "HVPPlanes",
  1996.             "MASPlanes",
  1997.             "RHSPlanes",
  1998.             //"CUAVs",
  1999.             //"A3UAVs",
  2000.             "Pods"
  2001.         };
  2002.     };
  2003.  
  2004.     /**
  2005.      * Sells ships and boats
  2006.      */
  2007.     class Exile_Trader_Boat
  2008.     {
  2009.         name = "BOAT";
  2010.         showWeaponFilter = 0;
  2011.         categories[] =
  2012.         {
  2013.             "Boats",
  2014.             "A3Boats",
  2015.         };
  2016.     };
  2017.  
  2018.     /**
  2019.      * Sells Community Items
  2020.      */
  2021.     class Exile_Trader_CommunityCustoms
  2022.     {
  2023.         name = "COMMUNITY";
  2024.         showWeaponFilter = 0;
  2025.         categories[] =
  2026.         {
  2027.             "Community"
  2028.         };
  2029.     };
  2030.     class Exile_Trader_CommunityCustoms2
  2031.     {
  2032.         name = "COMMUNITY";
  2033.         showWeaponFilter = 0;
  2034.         categories[] =
  2035.         {
  2036.             "Community2"
  2037.         };
  2038.     };
  2039.  
  2040.     class Exile_Trader_CommunityCustoms3
  2041.     {
  2042.         name = "COMMUNITY";
  2043.         showWeaponFilter = 0;
  2044.         categories[] =
  2045.         {
  2046.             "Community3"
  2047.         };
  2048.     };
  2049.  
  2050.     class Exile_Trader_CommunityCustoms4
  2051.     {
  2052.         name = "COMMUNITY";
  2053.         showWeaponFilter = 0;
  2054.         categories[] =
  2055.         {
  2056.             "Community4"
  2057.         };
  2058.     };
  2059.  
  2060.     class Exile_Trader_CommunityCustoms5
  2061.     {
  2062.         name = "COMMUNITY";
  2063.         showWeaponFilter = 0;
  2064.         categories[] =
  2065.         {
  2066.             "Community5"
  2067.         };
  2068.     };
  2069.  
  2070.     class Exile_Trader_CommunityCustoms6
  2071.     {
  2072.         name = "COMMUNITY";
  2073.         showWeaponFilter = 0;
  2074.         categories[] =
  2075.         {
  2076.             "Community6"
  2077.         };
  2078.     };
  2079.  
  2080.     class Exile_Trader_CommunityCustoms7
  2081.     {
  2082.         name = "COMMUNITY";
  2083.         showWeaponFilter = 0;
  2084.         categories[] =
  2085.         {
  2086.             "Community7"
  2087.         };
  2088.     };
  2089.  
  2090.     class Exile_Trader_CommunityCustoms8
  2091.     {
  2092.         name = "COMMUNITY";
  2093.         showWeaponFilter = 0;
  2094.         categories[] =
  2095.         {
  2096.             "Community8"
  2097.         };
  2098.     };
  2099.  
  2100.     class Exile_Trader_CommunityCustoms9
  2101.     {
  2102.         name = "COMMUNITY";
  2103.         showWeaponFilter = 0;
  2104.         categories[] =
  2105.         {
  2106.             "Community9"
  2107.         };
  2108.     };
  2109.  
  2110.     class Exile_Trader_CommunityCustoms10
  2111.     {
  2112.         name = "COMMUNITY";
  2113.         showWeaponFilter = 0;
  2114.         categories[] =
  2115.         {
  2116.             "Community10"
  2117.         };
  2118.     };
  2119.  
  2120. };
  2121. class CfgTrading
  2122. {
  2123.     /*
  2124.     * This factor defines the difference between sales/purchase price of
  2125.     * items and vehicles. It is used if there is no sales price defined
  2126.     * in CfgExileArsenal.
  2127.     */
  2128.     sellPriceFactor = 0.5;
  2129.  
  2130.     rekeyPriceFactor = 0.1;
  2131. };
  2132. class CfgVehicleCustoms
  2133. {
  2134.     ///////////////////////////////////////////////////////////////////////////////
  2135.     // QUAD BIKES
  2136.     ///////////////////////////////////////////////////////////////////////////////
  2137.     class Exile_Bike_QuadBike_Abstract
  2138.     {
  2139.         skins[] =
  2140.         {
  2141.  
  2142.             {"Exile_Bike_QuadBike_Blue",        100, "Blue",        {"\A3\Soft_F_Beta\Quadbike_01\Data\Quadbike_01_CIV_BLUE_CO.paa","\A3\Soft_F_Beta\Quadbike_01\Data\Quadbike_01_wheel_CIVBLUE_CO.paa"};},
  2143.             {"Exile_Bike_QuadBike_Red",         100, "Red",         {"\A3\Soft_F_Beta\Quadbike_01\Data\Quadbike_01_CIV_RED_CO.paa","\A3\Soft_F_Beta\Quadbike_01\Data\Quadbike_01_wheel_CIVRED_CO.paa"};},
  2144.             {"Exile_Bike_QuadBike_White",       100, "White",       {"\A3\Soft_F_Beta\Quadbike_01\Data\Quadbike_01_CIV_WHITE_CO.paa","\A3\Soft_F_Beta\Quadbike_01\Data\Quadbike_01_wheel_CIVWHITE_CO.paa"};},
  2145.             {"Exile_Bike_QuadBike_Nato",        150, "NATO",        {"\A3\Soft_F\Quadbike_01\Data\Quadbike_01_co.paa","\A3\Soft_F\Quadbike_01\Data\Quadbike_01_wheel_co.paa"};},
  2146.             {"Exile_Bike_QuadBike_Csat",        150, "CSAT",        {"\A3\Soft_F\Quadbike_01\Data\Quadbike_01_OPFOR_CO.paa","\A3\Soft_F\Quadbike_01\Data\Quadbike_01_wheel_OPFOR_CO.paa"};},
  2147.             {"Exile_Bike_QuadBike_Fia",         150, "FIA",         {"\A3\Soft_F_Beta\Quadbike_01\Data\Quadbike_01_INDP_CO.paa","\A3\Soft_F_Beta\Quadbike_01\Data\Quadbike_01_wheel_INDP_CO.paa"};},
  2148.             {"Exile_Bike_QuadBike_Guerilla01"150, "Guerilla 01", {"\A3\Soft_F_Bootcamp\Quadbike_01\Data\Quadbike_01_IG_CO.paa","\A3\soft_f_gamma\Quadbike_01\Data\Quadbike_01_wheel_IG_CO.paa"};},
  2149.             {"Exile_Bike_QuadBike_Guerilla02"150, "Guerilla 02", {"\A3\Soft_F_Bootcamp\Quadbike_01\Data\Quadbike_01_INDP_Hunter_CO.paa","\A3\soft_f_gamma\Quadbike_01\Data\Quadbike_01_wheel_INDP_Hunter_CO.paa"};},
  2150.             {"Exile_Bike_QuadBike_Black",       100, "Black",       {"\A3\Soft_F_Beta\Quadbike_01\Data\Quadbike_01_CIV_BLACK_CO.paa","\A3\Soft_F_Beta\Quadbike_01\Data\Quadbike_01_wheel_CIVBLACK_CO.paa"};}
  2151.         };
  2152.     };
  2153.  
  2154.     ///////////////////////////////////////////////////////////////////////////////
  2155.     // MOTOR BOATS
  2156.     ///////////////////////////////////////////////////////////////////////////////
  2157.     class Exile_Boat_MotorBoat_Abstract
  2158.     {
  2159.         skins[] =
  2160.         {
  2161.             {"Exile_Boat_MotorBoat_Police",     350, "Police", {"\a3\boat_f_gamma\Boat_Civil_01\data\Boat_Civil_01_ext_police_co.paa","\a3\boat_f_gamma\Boat_Civil_01\data\Boat_Civil_01_int_police_co.paa"};},
  2162.             {"Exile_Boat_MotorBoat_Orange",     300, "Orange", {"\a3\boat_f_gamma\Boat_Civil_01\data\Boat_Civil_01_ext_rescue_co.paa","\a3\boat_f_gamma\Boat_Civil_01\data\Boat_Civil_01_int_rescue_co.paa"};},
  2163.             {"Exile_Boat_MotorBoat_White",      300, "White",  {"\a3\boat_f_gamma\Boat_Civil_01\data\Boat_Civil_01_ext_co.paa","\a3\boat_f_gamma\Boat_Civil_01\data\Boat_Civil_01_int_co.paa"};}
  2164.         };
  2165.     };
  2166.  
  2167.     ///////////////////////////////////////////////////////////////////////////////
  2168.     // RUBBER DUCKS
  2169.     ///////////////////////////////////////////////////////////////////////////////
  2170.     class Exile_Boat_RubberDuck_Abstract
  2171.     {
  2172.         skins[] =
  2173.         {
  2174.             {"Exile_Boat_RubberDuck_CSAT",      200, "CSAT", {"\A3\boat_F\Boat_Transport_01\data\Boat_Transport_01_OPFOR_CO.paa"};},
  2175.             {"Exile_Boat_RubberDuck_Digital",   200, "Digital",{"\A3\boat_F\Boat_Transport_01\data\Boat_Transport_01_INDP_CO.paa"};},
  2176.             {"Exile_Boat_RubberDuck_Orange",    150, "Orange", {"\A3\boat_F\Boat_Transport_01\data\Boat_Transport_01_rescue_CO.paa"};},
  2177.             {"Exile_Boat_RubberDuck_Blue",      150, "Blue", {"\A3\boat_F\Boat_Transport_01\data\Boat_Transport_01_civilian_CO.paa"};},
  2178.             {"Exile_Boat_RubberDuck_Black",     150, "Black", {"\A3\boat_F\Boat_Transport_01\data\boat_transport_01_co.paa"};}
  2179.         };
  2180.     };
  2181.  
  2182.     ///////////////////////////////////////////////////////////////////////////////
  2183.     // SDV
  2184.     ///////////////////////////////////////////////////////////////////////////////
  2185.     class Exile_Boat_SDV_Abstract
  2186.     {
  2187.         skins[] =
  2188.         {
  2189.             {"Exile_Boat_SDV_CSAT",     200, "CSAT", {"\A3\boat_f_beta\SDV_01\data\SDV_ext_opfor_CO.paa"};},
  2190.             {"Exile_Boat_SDV_Digital"200, "Digital", {"\A3\boat_f_beta\SDV_01\data\SDV_ext_INDP_CO.paa"};},
  2191.             {"Exile_Boat_SDV_Grey",     100, "Grey", {"\A3\boat_f_beta\SDV_01\data\SDV_ext_CO.paa"};}
  2192.         };
  2193.     };
  2194.  
  2195.     ///////////////////////////////////////////////////////////////////////////////
  2196.     // Hellcat
  2197.     ///////////////////////////////////////////////////////////////////////////////
  2198.     class Exile_Chopper_Hellcat_Abstract
  2199.     {
  2200.         skins[] =
  2201.         {
  2202.             {"Exile_Chopper_Hellcat_Green", 350, "Green",   {"\A3\Air_F_EPB\Heli_Light_03\data\Heli_Light_03_base_CO.paa"};},
  2203.             {"Exile_Chopper_Hellcat_FIA",   500, "FIA",     {"\A3\Air_F_EPB\Heli_Light_03\data\heli_light_03_base_indp_co.paa"};}
  2204.         };
  2205.     };
  2206.  
  2207.     ///////////////////////////////////////////////////////////////////////////////
  2208.     // Karts
  2209.     ///////////////////////////////////////////////////////////////////////////////
  2210.     class Exile_Car_Kart_Abstract
  2211.     {
  2212.         skins[] =
  2213.         {
  2214.             {"Exile_Car_Kart_BluKing",              100, "Bluking",     {"\a3\Soft_F_Kart\Kart_01\Data\Kart_01_blu_CO.paa","\a3\Soft_F_Kart\Kart_01\Data\Kart_01_logos_blu_CA.paa","\a3\Soft_F_Kart\Kart_01\Data\Kart_num_1_CA.paa","\a3\Soft_F_Kart\Kart_01\Data\Kart_num_3_CA.paa"};},
  2215.             {"Exile_Car_Kart_RedStone",             100, "RedStone",    {"\a3\Soft_F_Kart\Kart_01\Data\Kart_01_black_CO.paa","\a3\Soft_F_Kart\Kart_01\Data\Kart_01_logos_black_CA.paa","\a3\Soft_F_Kart\Kart_01\Data\Kart_num_1_CA.paa","\a3\Soft_F_Kart\Kart_01\Data\Kart_num_3_CA.paa"};},
  2216.             {"Exile_Car_Kart_Vrana",                100, "Vrana",       {"\a3\Soft_F_Kart\Kart_01\Data\Kart_01_vrana_CO.paa","\a3\Soft_F_Kart\Kart_01\Data\Kart_01_logos_vrana_CA.paa","\a3\Soft_F_Kart\Kart_01\Data\Kart_num_1_CA.paa","\a3\Soft_F_Kart\Kart_01\Data\Kart_num_3_CA.paa"};},
  2217.             {"Exile_Car_Kart_Green",                100, "Green",       {"\a3\Soft_F_Kart\Kart_01\Data\Kart_01_base_green_CO.paa","\a3\Soft_F_Kart\Kart_01\Data\Kart_01_logos_blu_CA.paa","\a3\Soft_F_Kart\Kart_01\Data\Kart_num_1_CA.paa","\a3\Soft_F_Kart\Kart_01\Data\Kart_num_3_CA.paa"};},
  2218.             {"Exile_Car_Kart_Blue",                 100, "Blue",        {"\a3\Soft_F_Kart\Kart_01\Data\Kart_01_base_blue_CO.paa","\a3\Soft_F_Kart\Kart_01\Data\Kart_01_logos_blu_CA.paa","\a3\Soft_F_Kart\Kart_01\Data\Kart_num_1_CA.paa","\a3\Soft_F_Kart\Kart_01\Data\Kart_num_3_CA.paa"};},
  2219.             {"Exile_Car_Kart_Orange",               100, "Orange",      {"\a3\Soft_F_Kart\Kart_01\Data\Kart_01_base_orange_CO.paa","\a3\Soft_F_Kart\Kart_01\Data\Kart_01_logos_blu_CA.paa","\a3\Soft_F_Kart\Kart_01\Data\Kart_num_1_CA.paa","\a3\Soft_F_Kart\Kart_01\Data\Kart_num_3_CA.paa"};},
  2220.             {"Exile_Car_Kart_White",                100, "White",       {"\a3\Soft_F_Kart\Kart_01\Data\Kart_01_base_white_CO.paa","","\a3\Soft_F_Kart\Kart_01\Data\Kart_num_1_CA.paa","\a3\Soft_F_Kart\Kart_01\Data\Kart_num_3_CA.paa"};},
  2221.             {"Exile_Car_Kart_Yellow",               100, "Yellow",      {"\a3\Soft_F_Kart\Kart_01\Data\Kart_01_base_yellow_CO.paa","","\a3\Soft_F_Kart\Kart_01\Data\Kart_num_1_CA.paa","\a3\Soft_F_Kart\Kart_01\Data\Kart_num_3_CA.paa"};},
  2222.             {"Exile_Car_Kart_Black",                100, "Black",       {"\a3\Soft_F_Kart\Kart_01\Data\Kart_01_base_black_CO.paa","\a3\Soft_F_Kart\Kart_01\Data\Kart_01_logos_black_CA.paa","\a3\Soft_F_Kart\Kart_01\Data\Kart_num_1_CA.paa","\a3\Soft_F_Kart\Kart_01\Data\Kart_num_3_CA.paa"};}
  2223.         };
  2224.     };
  2225.  
  2226.     ///////////////////////////////////////////////////////////////////////////////
  2227.     // Hummingbird (Civillian)
  2228.     ///////////////////////////////////////////////////////////////////////////////
  2229.     class Exile_Chopper_Hummingbird_Civillian_Abstract
  2230.     {
  2231.         skins[] =
  2232.         {
  2233.             {"Exile_Chopper_Hummingbird_Civillian_Blue",        350, "Blue",        {"\a3\air_f\Heli_Light_01\Data\heli_light_01_ext_blue_co.paa"};},
  2234.             {"Exile_Chopper_Hummingbird_Civillian_Red",         350, "Red",         {"\a3\air_f\Heli_Light_01\Data\heli_light_01_ext_co.paa"};},
  2235.             {"Exile_Chopper_Hummingbird_Civillian_ION",         350, "ION",         {"\a3\air_f\Heli_Light_01\Data\heli_light_01_ext_ion_co.paa"};},
  2236.             {"Exile_Chopper_Hummingbird_Civillian_BlueLine",    350, "BlueLine",    {"\a3\air_f\Heli_Light_01\Data\Skins\heli_light_01_ext_blueLine_co.paa"};},
  2237.             {"Exile_Chopper_Hummingbird_Civillian_Digital",     350, "Digital",     {"\a3\air_f\Heli_Light_01\Data\Skins\heli_light_01_ext_digital_co.paa"};},
  2238.             {"Exile_Chopper_Hummingbird_Civillian_Elliptical",  350, "Elliptical",  {"\a3\air_f\Heli_Light_01\Data\Skins\heli_light_01_ext_elliptical_co.paa"};},
  2239.             {"Exile_Chopper_Hummingbird_Civillian_Furious",     350, "Furious",     {"\a3\air_f\Heli_Light_01\Data\Skins\heli_light_01_ext_furious_co.paa"};},
  2240.             {"Exile_Chopper_Hummingbird_Civillian_GrayWatcher", 350, "GrayWatcher", {"\a3\air_f\Heli_Light_01\Data\Skins\heli_light_01_ext_graywatcher_co.paa"};},
  2241.             {"Exile_Chopper_Hummingbird_Civillian_Jeans",       350, "Jeans",       {"\a3\air_f\Heli_Light_01\Data\Skins\heli_light_01_ext_jeans_co.paa"};},
  2242.             {"Exile_Chopper_Hummingbird_Civillian_Light",       350, "Light",       {"\a3\air_f\Heli_Light_01\Data\Skins\heli_light_01_ext_light_co.paa"};},
  2243.             {"Exile_Chopper_Hummingbird_Civillian_Shadow",      350, "Shadow",      {"\a3\air_f\Heli_Light_01\Data\Skins\heli_light_01_ext_shadow_co.paa"};},
  2244.             {"Exile_Chopper_Hummingbird_Civillian_Sheriff",     350, "Sheriff",     {"\a3\air_f\Heli_Light_01\Data\Skins\heli_light_01_ext_sheriff_co.paa"};},
  2245.             {"Exile_Chopper_Hummingbird_Civillian_Speedy",      350, "Speedy",      {"\a3\air_f\Heli_Light_01\Data\Skins\heli_light_01_ext_speedy_co.paa"};},
  2246.             {"Exile_Chopper_Hummingbird_Civillian_Sunset",      350, "Sunset",      {"\a3\air_f\Heli_Light_01\Data\Skins\heli_light_01_ext_sunset_co.paa"};},
  2247.             {"Exile_Chopper_Hummingbird_Civillian_Vrana",       350, "Vrana",       {"\a3\air_f\Heli_Light_01\Data\Skins\heli_light_01_ext_vrana_co.paa"};},
  2248.             {"Exile_Chopper_Hummingbird_Civillian_Wasp",        350, "Wasp",        {"\a3\air_f\Heli_Light_01\Data\Skins\heli_light_01_ext_wasp_co.paa"};},
  2249.             {"Exile_Chopper_Hummingbird_Civillian_Wave",        350, "Wave",        {"\a3\air_f\Heli_Light_01\Data\Skins\heli_light_01_ext_wave_co.paa"};}
  2250.         };
  2251.     };
  2252.  
  2253.     ///////////////////////////////////////////////////////////////////////////////
  2254.     // Huron
  2255.     ///////////////////////////////////////////////////////////////////////////////
  2256.     class Exile_Chopper_Huron_Abstract
  2257.     {
  2258.         skins[] =
  2259.         {
  2260.             {"Exile_Chopper_Huron_Black",   450, "Black", {"\A3\Air_F_Heli\Heli_Transport_03\Data\Heli_Transport_03_ext01_black_CO.paa","\a3\air_f_heli\heli_transport_03\data\heli_transport_03_ext02_black_co.paa"};},
  2261.             {"Exile_Chopper_Huron_Green",   450, "Green", {"\a3\air_f_heli\heli_transport_03\data\heli_transport_03_ext01_co.paa","\a3\air_f_heli\heli_transport_03\data\heli_transport_03_ext02_co.paa"};}
  2262.         };
  2263.     };
  2264.  
  2265.     ///////////////////////////////////////////////////////////////////////////////
  2266.     // Orca
  2267.     ///////////////////////////////////////////////////////////////////////////////
  2268.     class Exile_Chopper_Orca_Abstract
  2269.     {
  2270.         skins[] =
  2271.         {
  2272.             {"Exile_Chopper_Orca_CSAT",         350, "CSAT",            {"\A3\Air_F\Heli_Light_02\Data\Heli_Light_02_ext_OPFOR_CO.paa"};},
  2273.             {"Exile_Chopper_Orca_Black",        350, "Black",           {"\A3\Air_F\Heli_Light_02\Data\Heli_Light_02_ext_CO.paa"};},
  2274.             {"Exile_Chopper_Orca_BlackCustom",  350, "Black Custom",    {"\A3\Air_F_Heli\Heli_Light_02\Data\Heli_Light_02_ext_OPFOR_V2_CO.paa"};}
  2275.         };
  2276.     };
  2277.  
  2278.     ///////////////////////////////////////////////////////////////////////////////
  2279.     // Taru
  2280.     ///////////////////////////////////////////////////////////////////////////////
  2281.     class Exile_Chopper_Taru_Abstract
  2282.     {
  2283.         skins[] =
  2284.         {
  2285.             {"Exile_Chopper_Taru_CSAT",     500, "CSAT",    {"A3\Air_F_Heli\Heli_Transport_04\Data\Heli_Transport_04_base_01_co.paa","A3\Air_F_Heli\Heli_Transport_04\Data\Heli_Transport_04_base_02_co.paa"};},
  2286.             {"Exile_Chopper_Taru_Black",    500, "BLACK",   {"A3\Air_F_Heli\Heli_Transport_04\Data\Heli_Transport_04_base_01_black_CO.paa","A3\Air_F_Heli\Heli_Transport_04\Data\Heli_Transport_04_base_02_black_CO.paa"};}
  2287.         };
  2288.     };
  2289.  
  2290.     ///////////////////////////////////////////////////////////////////////////////
  2291.     // Taru (Transport)
  2292.     ///////////////////////////////////////////////////////////////////////////////
  2293.     class Exile_Chopper_Taru_Transport_Abstract
  2294.     {
  2295.         skins[] =
  2296.         {
  2297.             {"Exile_Chopper_Taru_Transport_CSAT",   500, "CSAT",    {"A3\Air_F_Heli\Heli_Transport_04\Data\Heli_Transport_04_base_01_co.paa","A3\Air_F_Heli\Heli_Transport_04\Data\Heli_Transport_04_base_02_co.paa"};},
  2298.             {"Exile_Chopper_Taru_Transport_Black"500, "Black",   {"A3\Air_F_Heli\Heli_Transport_04\Data\Heli_Transport_04_base_01_black_CO.paa","A3\Air_F_Heli\Heli_Transport_04\Data\Heli_Transport_04_base_02_black_CO.paa"};}
  2299.         };
  2300.     };
  2301.  
  2302.     ///////////////////////////////////////////////////////////////////////////////
  2303.     // Taru (Covered)
  2304.     ///////////////////////////////////////////////////////////////////////////////
  2305.     class Exile_Chopper_Taru_Covered_Abstract
  2306.     {
  2307.         skins[] =
  2308.         {
  2309.             {"Exile_Chopper_Taru_Covered_CSAT",     500, "CSAT",    {"A3\Air_F_Heli\Heli_Transport_04\Data\Heli_Transport_04_base_01_CO.paa","A3\Air_F_Heli\Heli_Transport_04\Data\Heli_Transport_04_base_02_CO.paa","A3\Air_F_Heli\Heli_Transport_04\Data\Heli_Transport_04_Pod_Ext01_CO.paa","A3\Air_F_Heli\Heli_Transport_04\Data\Heli_Transport_04_Pod_Ext02_CO.paa"};},
  2310.             {"Exile_Chopper_Taru_Covered_Black",    500, "Black",   {"A3\Air_F_Heli\Heli_Transport_04\Data\heli_transport_04_base_01_black_co.paa","A3\Air_F_Heli\Heli_Transport_04\Data\heli_transport_04_base_02_black_co.paa","A3\Air_F_Heli\Heli_Transport_04\Data\heli_transport_04_pod_ext01_black_co.paa","A3\Air_F_Heli\Heli_Transport_04\Data\heli_transport_04_pod_ext02_black_co.paa"};}
  2311.         };
  2312.     };
  2313.  
  2314.     ///////////////////////////////////////////////////////////////////////////////
  2315.     // Hatchback
  2316.     ///////////////////////////////////////////////////////////////////////////////
  2317.     class Exile_Car_Hatchback_Abstract
  2318.     {
  2319.         skins[] =
  2320.         {
  2321.             {"Exile_Car_Hatchback_Rusty1",          50, "Rusty White",      {"\exile_assets\model\RTV\Exile_Car_Hatchback_01_co.paa"};},
  2322.             {"Exile_Car_Hatchback_Rusty2",          50, "Rusty Red",        {"\exile_assets\model\RTV\Exile_Car_Hatchback_02_co.paa"};},
  2323.             {"Exile_Car_Hatchback_Rusty3",          50, "Rusty Yellow",     {"\exile_assets\model\RTV\Exile_Car_Hatchback_03_co.paa"};},
  2324.             {"Exile_Car_Hatchback_Beige",           100, "Beige",           {"\A3\Soft_F_Gamma\Hatchback_01\data\Hatchback_01_ext_BASE01_CO.paa"};},
  2325.             {"Exile_Car_Hatchback_Green",           100, "Green",           {"\A3\Soft_F_Gamma\Hatchback_01\data\Hatchback_01_ext_BASE02_CO.paa"};},
  2326.             {"Exile_Car_Hatchback_Blue",            100, "Blue",            {"\A3\Soft_F_Gamma\Hatchback_01\data\Hatchback_01_ext_BASE03_CO.paa"};},
  2327.             {"Exile_Car_Hatchback_BlueCustom",      100, "Blue Custom",     {"\A3\Soft_F_Gamma\Hatchback_01\data\Hatchback_01_ext_BASE04_CO.paa"};},
  2328.             {"Exile_Car_Hatchback_BeigeCustom",     100, "Beige Custom",    {"\A3\Soft_F_Gamma\Hatchback_01\data\Hatchback_01_ext_BASE05_CO.paa"};},
  2329.             {"Exile_Car_Hatchback_Yellow",          100, "Yellow",          {"\A3\Soft_F_Gamma\Hatchback_01\data\Hatchback_01_ext_BASE06_CO.paa"};},
  2330.             {"Exile_Car_Hatchback_Grey",            100, "Grey",            {"\A3\Soft_F_Gamma\Hatchback_01\data\Hatchback_01_ext_BASE07_CO.paa"};},
  2331.             {"Exile_Car_Hatchback_Black",           100, "Black",           {"\A3\Soft_F_Gamma\Hatchback_01\data\Hatchback_01_ext_BASE08_CO.paa"};},
  2332.             {"Exile_Car_Hatchback_Dark",            100, "Dark",            {"\A3\Soft_F_Gamma\Hatchback_01\data\Hatchback_01_ext_BASE09_CO.paa"};}
  2333.         };
  2334.     };
  2335.  
  2336.     ///////////////////////////////////////////////////////////////////////////////
  2337.     // Hatchback (Sport)
  2338.     ///////////////////////////////////////////////////////////////////////////////
  2339.     class Exile_Car_Hatchback_Sport_Abstract
  2340.     {
  2341.         skins[] =
  2342.         {
  2343.             {"Exile_Car_Hatchback_Sport_Red",       100, "Red",     {"\A3\soft_f_gamma\Hatchback_01\data\Hatchback_01_ext_SPORT01_CO.paa"};},
  2344.             {"Exile_Car_Hatchback_Sport_Blue",      100, "Blue",    {"\A3\soft_f_gamma\Hatchback_01\data\Hatchback_01_ext_SPORT02_CO.paa"};},
  2345.             {"Exile_Car_Hatchback_Sport_Orange",    100, "Orange"{"\A3\soft_f_gamma\Hatchback_01\data\Hatchback_01_ext_SPORT03_CO.paa"};},
  2346.             {"Exile_Car_Hatchback_Sport_White",     100, "White",   {"\A3\soft_f_gamma\Hatchback_01\data\Hatchback_01_ext_SPORT04_CO.paa"};},
  2347.             {"Exile_Car_Hatchback_Sport_Beige",     100, "Beige",   {"\A3\soft_f_gamma\Hatchback_01\data\Hatchback_01_ext_SPORT05_CO.paa"};},
  2348.             {"Exile_Car_Hatchback_Sport_Green",     100, "Green",   {"\A3\soft_f_gamma\Hatchback_01\data\Hatchback_01_ext_SPORT06_CO.paa"};}
  2349.         };
  2350.     };
  2351.  
  2352.     ///////////////////////////////////////////////////////////////////////////////
  2353.     // Offroad
  2354.     ///////////////////////////////////////////////////////////////////////////////
  2355.     class Exile_Car_Offroad_Abstract
  2356.     {
  2357.         skins[] =
  2358.         {
  2359.             {"Exile_Car_Offroad_Rusty1",        50, "Rusty White"{"\exile_assets\model\RTV\Exile_offroad_03_co.paa","\exile_assets\model\RTV\Exile_offroad_03_co.paa"};},
  2360.             {"Exile_Car_Offroad_Rusty2",        50, "Rusty Red",    {"\exile_assets\model\RTV\Exile_offroad_01_co.paa","\exile_assets\model\RTV\Exile_offroad_01_co.paa"};},
  2361.             {"Exile_Car_Offroad_Rusty3",        50, "Rusty Blue",   {"\exile_assets\model\RTV\Exile_offroad_02_co.paa","\exile_assets\model\RTV\Exile_offroad_02_co.paa"};},
  2362.             {"Exile_Car_Offroad_Red",           500, "Red",         {"\a3\Soft_F\Offroad_01\data\Offroad_01_ext_CO.paa","\a3\Soft_F\Offroad_01\data\Offroad_01_ext_CO.paa"};},
  2363.             {"Exile_Car_Offroad_Beige",         500, "Beige",       {"\a3\Soft_F\Offroad_01\data\Offroad_01_ext_BASE01_CO.paa","\a3\Soft_F\Offroad_01\data\Offroad_01_ext_BASE01_CO.paa"};},
  2364.             {"Exile_Car_Offroad_White",         500, "White",       {"\a3\Soft_F\Offroad_01\data\Offroad_01_ext_BASE02_CO.paa","\a3\Soft_F\Offroad_01\data\Offroad_01_ext_BASE02_CO.paa"};},
  2365.             {"Exile_Car_Offroad_Blue",          500, "Blue",        {"\a3\Soft_F\Offroad_01\data\Offroad_01_ext_BASE03_CO.paa","\a3\Soft_F\Offroad_01\data\Offroad_01_ext_BASE03_CO.paa"};},
  2366.             {"Exile_Car_Offroad_DarkRed",       500, "Dark Red",    {"\a3\Soft_F\Offroad_01\data\Offroad_01_ext_BASE04_CO.paa","\a3\Soft_F\Offroad_01\data\Offroad_01_ext_BASE04_CO.paa"};},
  2367.             {"Exile_Car_Offroad_BlueCustom",    500, "Blue Custom", {"\a3\Soft_F\Offroad_01\data\Offroad_01_ext_BASE05_CO.paa","\a3\Soft_F\Offroad_01\data\Offroad_01_ext_BASE05_CO.paa"};},
  2368.             {"Exile_Car_Offroad_Guerilla01",    700, "Guerilla 01", {"\A3\Soft_F_Bootcamp\Offroad_01\Data\offroad_01_ext_IG_01_CO.paa","\A3\Soft_F_Bootcamp\Offroad_01\Data\offroad_01_ext_IG_01_CO.paa"};},
  2369.             {"Exile_Car_Offroad_Guerilla02",    700, "Guerilla 02", {"\A3\Soft_F_Bootcamp\Offroad_01\Data\offroad_01_ext_IG_02_CO.paa","\A3\Soft_F_Bootcamp\Offroad_01\Data\offroad_01_ext_IG_02_CO.paa"};},
  2370.             {"Exile_Car_Offroad_Guerilla03",    700, "Guerilla 03", {"\A3\Soft_F_Bootcamp\Offroad_01\Data\offroad_01_ext_IG_03_CO.paa","\A3\Soft_F_Bootcamp\Offroad_01\Data\offroad_01_ext_IG_03_CO.paa"};},
  2371.             {"Exile_Car_Offroad_Guerilla04",    700, "Guerilla 04", {"\A3\Soft_F_Bootcamp\Offroad_01\Data\offroad_01_ext_IG_04_CO.paa","\A3\Soft_F_Bootcamp\Offroad_01\Data\offroad_01_ext_IG_04_CO.paa"};},
  2372.             {"Exile_Car_Offroad_Guerilla05",    700, "Guerilla 05", {"\A3\Soft_F_Bootcamp\Offroad_01\Data\offroad_01_ext_IG_05_CO.paa","\A3\Soft_F_Bootcamp\Offroad_01\Data\offroad_01_ext_IG_05_CO.paa"};},
  2373.             {"Exile_Car_Offroad_Guerilla06",    700, "Guerilla 06", {"\A3\Soft_F_Bootcamp\Offroad_01\Data\offroad_01_ext_IG_06_CO.paa","\A3\Soft_F_Bootcamp\Offroad_01\Data\offroad_01_ext_IG_06_CO.paa"};},
  2374.             {"Exile_Car_Offroad_Guerilla07",    700, "Guerilla 07", {"\A3\Soft_F_Bootcamp\Offroad_01\Data\offroad_01_ext_IG_07_CO.paa","\A3\Soft_F_Bootcamp\Offroad_01\Data\offroad_01_ext_IG_07_CO.paa"};},
  2375.             {"Exile_Car_Offroad_Guerilla08",    700, "Guerilla 08", {"\A3\Soft_F_Bootcamp\Offroad_01\Data\offroad_01_ext_IG_08_CO.paa","\A3\Soft_F_Bootcamp\Offroad_01\Data\offroad_01_ext_IG_08_CO.paa"};},
  2376.             {"Exile_Car_Offroad_Guerilla09",    700, "Guerilla 09", {"\A3\Soft_F_Bootcamp\Offroad_01\Data\offroad_01_ext_IG_09_CO.paa","\A3\Soft_F_Bootcamp\Offroad_01\Data\offroad_01_ext_IG_09_CO.paa"};},
  2377.             {"Exile_Car_Offroad_Guerilla10",    700, "Guerilla 10", {"\A3\Soft_F_Bootcamp\Offroad_01\Data\offroad_01_ext_IG_10_CO.paa","\A3\Soft_F_Bootcamp\Offroad_01\Data\offroad_01_ext_IG_10_CO.paa"};},
  2378.             {"Exile_Car_Offroad_Guerilla11",    700, "Guerilla 11", {"\A3\Soft_F_Bootcamp\Offroad_01\Data\offroad_01_ext_IG_11_CO.paa","\A3\Soft_F_Bootcamp\Offroad_01\Data\offroad_01_ext_IG_11_CO.paa"};},
  2379.             {"Exile_Car_Offroad_Guerilla12",    700, "Guerilla 12", {"\A3\Soft_F_Bootcamp\Offroad_01\Data\offroad_01_ext_IG_12_CO.paa","\A3\Soft_F_Bootcamp\Offroad_01\Data\offroad_01_ext_IG_12_CO.paa"};},
  2380.             {"Exile_Car_Offroad_DarkRed",       700, "Exile Black", {"exile_assets\texture\vehicle\Exile_Offroad_Black_co.paa"};},
  2381.             {"Exile_Car_Offroad_DarkRed",       700, "Exile Light Blue", {"exile_assets\texture\vehicle\Exile_Offroad_LightBlue_co.paa"};},
  2382.             {"Exile_Car_Offroad_DarkRed",       700, "Exile Orange",{"exile_assets\texture\vehicle\Exile_Offroad_Orange_co.paa"};},
  2383.             {"Exile_Car_Offroad_DarkRed",       700, "Exile Pink"{"exile_assets\texture\vehicle\Exile_Offroad_Pink_co.paa"};},
  2384.             {"Exile_Car_Offroad_DarkRed",       700, "Exile White", {"exile_assets\texture\vehicle\Exile_Offroad_White_co.paa"};},
  2385.             {"Exile_Car_Offroad_DarkRed",       700, "Exile Yellow",{"exile_assets\texture\vehicle\Exile_Offroad_Yellow_co.paa"};}
  2386.         };
  2387.     };
  2388.  
  2389.     ///////////////////////////////////////////////////////////////////////////////
  2390.     // Land Rover
  2391.     ///////////////////////////////////////////////////////////////////////////////
  2392.     class Exile_Car_LandRover_Abstract
  2393.     {
  2394.         skins[] =
  2395.         {
  2396.             {"Exile_Car_LandRover_Red", 250, "Red", {"Exile_psycho_LRC\data\r_lr_base_co.paa","Exile_psycho_LRC\data\r_lr_special_co.paa"};},
  2397.             {"Exile_Car_LandRover_Urban", 250, "Urban", {"Exile_psycho_LRC\data\textures\lr_base_urbancamo_co.paa","Exile_psycho_LRC\data\textures\lr_special_urbancamo_co.paa"};},
  2398.             {"Exile_Car_LandRover_Green", 250, "Green", {"Exile_psycho_LRC\data\lr_acr_base_co.paa","Exile_psycho_LRC\data\lr_acr_spec_co.paa"};},
  2399.             {"Exile_Car_LandRover_Sand", 250, "Sand", {"Exile_psycho_LRC\data\lr_acr_sand_base_co.paa","Exile_psycho_LRC\data\lr_special_acr_co.paa"};},
  2400.             {"Exile_Car_LandRover_Desert", 250, "Desert", {"Exile_psycho_LRC\data\lr_acrs_base_co.paa","Exile_psycho_LRC\data\lr_special_acr_co.paa"};}
  2401.         };
  2402.     };
  2403.  
  2404.     ///////////////////////////////////////////////////////////////////////////////
  2405.     // Land Rover (Ambulance)
  2406.     ///////////////////////////////////////////////////////////////////////////////
  2407.     class Exile_Car_LandRover_Ambulance_Abstract
  2408.     {
  2409.         skins[] =
  2410.         {
  2411.             {"Exile_Car_LandRover_Ambulance_Green", 250, "Green", {"Exile_psycho_LRC\data\lr_acr_base_co.paa","Exile_psycho_LRC\data\lr_amb_ext_co.paa","Exile_psycho_LRC\data\lr_acr_spec_co.paa"};},
  2412.             {"Exile_Car_LandRover_Ambulance_Desert", 250, "Desert", {"Exile_psycho_LRC\data\lr_acrs_base_co.paa","Exile_psycho_LRC\data\lr_amb_ext_co.paa","Exile_psycho_LRC\data\lr_special_acr_co.paa"};},
  2413.             {"Exile_Car_LandRover_Ambulance_Sand", 250, "Sand", {"Exile_psycho_LRC\data\lr_acr_sand_base_co.paa","Exile_psycho_LRC\data\lr_amb_ext_co.paa","Exile_psycho_LRC\data\lr_special_acr_co.paa"};}
  2414.         };
  2415.     };
  2416.  
  2417.     ///////////////////////////////////////////////////////////////////////////////
  2418.     // Octavius
  2419.     ///////////////////////////////////////////////////////////////////////////////
  2420.     class Exile_Car_Octavius_Abstract
  2421.     {
  2422.         skins[] =
  2423.         {
  2424.             {"Exile_Car_Octavius_White", 250, "White", {"exile_psycho_Octavia\Data\car_body_co.paa"};},
  2425.             {"Exile_Car_Octavius_Black", 250, "Black", {"exile_psycho_Octavia\Data\car_body_bl_co.paa"};}
  2426.         };
  2427.     };
  2428.  
  2429.     ///////////////////////////////////////////////////////////////////////////////
  2430.     // UH-1H Huey
  2431.     ///////////////////////////////////////////////////////////////////////////////
  2432.     class Exile_Chopper_Huey_Abstract
  2433.     {
  2434.         skins[] =
  2435.         {
  2436.             {"Exile_Chopper_Huey_Green", 700, "Green", {"Exile_psycho_UH1H\data\uh1h_co.paa","Exile_psycho_UH1H\data\uh1h_in_co.paa","Exile_psycho_UH1H\data\default_co.paa","Exile_psycho_UH1H\data\alpha_ca.paa"};},
  2437.             {"Exile_Chopper_Huey_Desert", 700, "Desert", {"Exile_psycho_UH1H\data\uh1d_tka_co.paa","Exile_psycho_UH1H\data\uh1d_in_tka_co.paa","Exile_psycho_UH1H\data\default_co.paa","Exile_psycho_UH1H\data\alpha_ca.paa"};}
  2438.         };
  2439.     };
  2440.  
  2441.     ///////////////////////////////////////////////////////////////////////////////
  2442.     // UH-1H Huey (Armed)
  2443.     ///////////////////////////////////////////////////////////////////////////////
  2444.     class Exile_Chopper_Huey_Armed_Abstract
  2445.     {
  2446.         skins[] =
  2447.         {
  2448.             {"Exile_Chopper_Huey_Armed_Green", 700, "Green", {"Exile_psycho_UH1H\data\uh1h_co.paa","Exile_psycho_UH1H\data\uh1h_in_co.paa","Exile_psycho_UH1H\data\default_co.paa","Exile_psycho_UH1H\data\alpha_ca.paa"};},
  2449.             {"Exile_Chopper_Huey_Armed_Desert", 700, "Desert", {"Exile_psycho_UH1H\data\uh1d_tka_co.paa","Exile_psycho_UH1H\data\uh1d_in_tka_co.paa","Exile_psycho_UH1H\data\default_co.paa","Exile_psycho_UH1H\data\alpha_ca.paa"};}
  2450.         };
  2451.     };
  2452.  
  2453.     ///////////////////////////////////////////////////////////////////////////////
  2454.     // Offroad (Armed)
  2455.     ///////////////////////////////////////////////////////////////////////////////
  2456.     class Exile_Car_Offroad_Armed_Abstract
  2457.     {
  2458.         skins[] =
  2459.         {
  2460.             {"Exile_Car_Offroad_Armed_Guerilla01"250, "Guerilla 01", {"\A3\Soft_F_Bootcamp\Offroad_01\Data\offroad_01_ext_IG_01_CO.paa","\A3\Soft_F_Bootcamp\Offroad_01\Data\offroad_01_ext_IG_01_CO.paa"};},
  2461.             {"Exile_Car_Offroad_Armed_Guerilla02"250, "Guerilla 02", {"\A3\Soft_F_Bootcamp\Offroad_01\Data\offroad_01_ext_IG_02_CO.paa","\A3\Soft_F_Bootcamp\Offroad_01\Data\offroad_01_ext_IG_02_CO.paa"};},
  2462.             {"Exile_Car_Offroad_Armed_Guerilla03"250, "Guerilla 03", {"\A3\Soft_F_Bootcamp\Offroad_01\Data\offroad_01_ext_IG_03_CO.paa","\A3\Soft_F_Bootcamp\Offroad_01\Data\offroad_01_ext_IG_03_CO.paa"};},
  2463.             {"Exile_Car_Offroad_Armed_Guerilla04"250, "Guerilla 04", {"\A3\Soft_F_Bootcamp\Offroad_01\Data\offroad_01_ext_IG_04_CO.paa","\A3\Soft_F_Bootcamp\Offroad_01\Data\offroad_01_ext_IG_04_CO.paa"};},
  2464.             {"Exile_Car_Offroad_Armed_Guerilla05"250, "Guerilla 05", {"\A3\Soft_F_Bootcamp\Offroad_01\Data\offroad_01_ext_IG_05_CO.paa","\A3\Soft_F_Bootcamp\Offroad_01\Data\offroad_01_ext_IG_05_CO.paa"};},
  2465.             {"Exile_Car_Offroad_Armed_Guerilla06"250, "Guerilla 06", {"\A3\Soft_F_Bootcamp\Offroad_01\Data\offroad_01_ext_IG_06_CO.paa","\A3\Soft_F_Bootcamp\Offroad_01\Data\offroad_01_ext_IG_06_CO.paa"};},
  2466.             {"Exile_Car_Offroad_Armed_Guerilla07"250, "Guerilla 07", {"\A3\Soft_F_Bootcamp\Offroad_01\Data\offroad_01_ext_IG_07_CO.paa","\A3\Soft_F_Bootcamp\Offroad_01\Data\offroad_01_ext_IG_07_CO.paa"};},
  2467.             {"Exile_Car_Offroad_Armed_Guerilla08"250, "Guerilla 08", {"\A3\Soft_F_Bootcamp\Offroad_01\Data\offroad_01_ext_IG_08_CO.paa","\A3\Soft_F_Bootcamp\Offroad_01\Data\offroad_01_ext_IG_08_CO.paa"};},
  2468.             {"Exile_Car_Offroad_Armed_Guerilla09"250, "Guerilla 09", {"\A3\Soft_F_Bootcamp\Offroad_01\Data\offroad_01_ext_IG_09_CO.paa","\A3\Soft_F_Bootcamp\Offroad_01\Data\offroad_01_ext_IG_09_CO.paa"};},
  2469.             {"Exile_Car_Offroad_Armed_Guerilla10"250, "Guerilla 10", {"\A3\Soft_F_Bootcamp\Offroad_01\Data\offroad_01_ext_IG_10_CO.paa","\A3\Soft_F_Bootcamp\Offroad_01\Data\offroad_01_ext_IG_10_CO.paa"};},
  2470.             {"Exile_Car_Offroad_Armed_Guerilla11"250, "Guerilla 11", {"\A3\Soft_F_Bootcamp\Offroad_01\Data\offroad_01_ext_IG_11_CO.paa","\A3\Soft_F_Bootcamp\Offroad_01\Data\offroad_01_ext_IG_11_CO.paa"};},
  2471.             {"Exile_Car_Offroad_Armed_Guerilla12"250, "Guerilla 12", {"\A3\Soft_F_Bootcamp\Offroad_01\Data\offroad_01_ext_IG_12_CO.paa","\A3\Soft_F_Bootcamp\Offroad_01\Data\offroad_01_ext_IG_12_CO.paa"};}
  2472.         };
  2473.     };
  2474.  
  2475.     ///////////////////////////////////////////////////////////////////////////////
  2476.     // Offroad (Repair)
  2477.     ///////////////////////////////////////////////////////////////////////////////
  2478.     class Exile_Car_Offroad_Repair_Abstract
  2479.     {
  2480.         skins[] =
  2481.         {
  2482.             {"Exile_Car_Offroad_Repair_Civillian",      150, "Civillian",   {"\A3\Soft_F_Bootcamp\Offroad_01\Data\Offroad_01_ext_repair_CIV_CO.paa","\A3\Soft_F_Bootcamp\Offroad_01\Data\Offroad_01_ext_repair_CIV_CO.paa"};},
  2483.             {"Exile_Car_Offroad_Repair_Red",            150, "Red",         {"\a3\Soft_F\Offroad_01\data\Offroad_01_ext_CO.paa","\a3\Soft_F\Offroad_01\data\Offroad_01_ext_CO.paa"};},
  2484.             {"Exile_Car_Offroad_Repair_Beige",          150, "Beige",       {"\a3\Soft_F\Offroad_01\data\Offroad_01_ext_BASE01_CO.paa","\a3\Soft_F\Offroad_01\data\Offroad_01_ext_BASE01_CO.paa"};},
  2485.             {"Exile_Car_Offroad_Repair_White",          150, "White",       {"\a3\Soft_F\Offroad_01\data\Offroad_01_ext_BASE02_CO.paa","\a3\Soft_F\Offroad_01\data\Offroad_01_ext_BASE02_CO.paa"};},
  2486.             {"Exile_Car_Offroad_Repair_Blue",           150, "Blue",        {"\a3\Soft_F\Offroad_01\data\Offroad_01_ext_BASE03_CO.paa","\a3\Soft_F\Offroad_01\data\Offroad_01_ext_BASE03_CO.paa"};},
  2487.             {"Exile_Car_Offroad_Repair_DarkRed",        150, "DarkRed",     {"\a3\Soft_F\Offroad_01\data\Offroad_01_ext_BASE04_CO.paa","\a3\Soft_F\Offroad_01\data\Offroad_01_ext_BASE04_CO.paa"};},
  2488.             {"Exile_Car_Offroad_Repair_BlueCustom",     150, "BlueCustom"{"\a3\Soft_F\Offroad_01\data\Offroad_01_ext_BASE05_CO.paa","\a3\Soft_F\Offroad_01\data\Offroad_01_ext_BASE05_CO.paa"};},
  2489.             {"Exile_Car_Offroad_Repair_Guerilla01",     250, "Guerilla 01", {"\A3\Soft_F_Bootcamp\Offroad_01\Data\offroad_01_ext_IG_01_CO.paa","\A3\Soft_F_Bootcamp\Offroad_01\Data\offroad_01_ext_IG_01_CO.paa"};},
  2490.             {"Exile_Car_Offroad_Repair_Guerilla02",     250, "Guerilla 02", {"\A3\Soft_F_Bootcamp\Offroad_01\Data\offroad_01_ext_IG_02_CO.paa","\A3\Soft_F_Bootcamp\Offroad_01\Data\offroad_01_ext_IG_02_CO.paa"};},
  2491.             {"Exile_Car_Offroad_Repair_Guerilla03",     250, "Guerilla 03", {"\A3\Soft_F_Bootcamp\Offroad_01\Data\offroad_01_ext_IG_03_CO.paa","\A3\Soft_F_Bootcamp\Offroad_01\Data\offroad_01_ext_IG_03_CO.paa"};},
  2492.             {"Exile_Car_Offroad_Repair_Guerilla04",     250, "Guerilla 04", {"\A3\Soft_F_Bootcamp\Offroad_01\Data\offroad_01_ext_IG_04_CO.paa","\A3\Soft_F_Bootcamp\Offroad_01\Data\offroad_01_ext_IG_04_CO.paa"};},
  2493.             {"Exile_Car_Offroad_Repair_Guerilla05",     250, "Guerilla 05", {"\A3\Soft_F_Bootcamp\Offroad_01\Data\offroad_01_ext_IG_05_CO.paa","\A3\Soft_F_Bootcamp\Offroad_01\Data\offroad_01_ext_IG_05_CO.paa"};},
  2494.             {"Exile_Car_Offroad_Repair_Guerilla06",     250, "Guerilla 06", {"\A3\Soft_F_Bootcamp\Offroad_01\Data\offroad_01_ext_IG_06_CO.paa","\A3\Soft_F_Bootcamp\Offroad_01\Data\offroad_01_ext_IG_06_CO.paa"};},
  2495.             {"Exile_Car_Offroad_Repair_Guerilla07",     250, "Guerilla 07", {"\A3\Soft_F_Bootcamp\Offroad_01\Data\offroad_01_ext_IG_07_CO.paa","\A3\Soft_F_Bootcamp\Offroad_01\Data\offroad_01_ext_IG_07_CO.paa"};},
  2496.             {"Exile_Car_Offroad_Repair_Guerilla08",     250, "Guerilla 08", {"\A3\Soft_F_Bootcamp\Offroad_01\Data\offroad_01_ext_IG_08_CO.paa","\A3\Soft_F_Bootcamp\Offroad_01\Data\offroad_01_ext_IG_08_CO.paa"};},
  2497.             {"Exile_Car_Offroad_Repair_Guerilla09",     250, "Guerilla 09", {"\A3\Soft_F_Bootcamp\Offroad_01\Data\offroad_01_ext_IG_09_CO.paa","\A3\Soft_F_Bootcamp\Offroad_01\Data\offroad_01_ext_IG_09_CO.paa"};},
  2498.             {"Exile_Car_Offroad_Repair_Guerilla10",     250, "Guerilla 10", {"\A3\Soft_F_Bootcamp\Offroad_01\Data\offroad_01_ext_IG_10_CO.paa","\A3\Soft_F_Bootcamp\Offroad_01\Data\offroad_01_ext_IG_10_CO.paa"};},
  2499.             {"Exile_Car_Offroad_Repair_Guerilla11",     250, "Guerilla 11", {"\A3\Soft_F_Bootcamp\Offroad_01\Data\offroad_01_ext_IG_11_CO.paa","\A3\Soft_F_Bootcamp\Offroad_01\Data\offroad_01_ext_IG_11_CO.paa"};},
  2500.             {"Exile_Car_Offroad_Repair_Guerilla12",     250, "Guerilla 12", {"\A3\Soft_F_Bootcamp\Offroad_01\Data\offroad_01_ext_IG_12_CO.paa","\A3\Soft_F_Bootcamp\Offroad_01\Data\offroad_01_ext_IG_12_CO.paa"};}
  2501.         };
  2502.     };
  2503.  
  2504.     ///////////////////////////////////////////////////////////////////////////////
  2505.     // SUV
  2506.     ///////////////////////////////////////////////////////////////////////////////
  2507.     class Exile_Car_SUV_Abstract
  2508.     {
  2509.         skins[] =
  2510.         {
  2511.             {"Exile_Car_SUV_Red",       100, "Red",                 {"\A3\Soft_F_Gamma\SUV_01\Data\SUV_01_ext_CO.paa"};},
  2512.             {"Exile_Car_SUV_Black",     150, "Black",               {"\A3\Soft_F_Gamma\SUV_01\Data\SUV_01_ext_02_CO.paa"};},
  2513.             {"Exile_Car_SUV_Grey",      100, "Grey",                {"\A3\Soft_F_Gamma\SUV_01\Data\SUV_01_ext_03_CO.paa"};},
  2514.             {"Exile_Car_SUV_Orange",    100, "Orange",              {"\A3\Soft_F_Gamma\SUV_01\Data\SUV_01_ext_04_CO.paa"};},
  2515.             {"Exile_Car_SUV_Black",     150, "Snow Camo",           {"exile_assets\texture\vehicle\Exile_SUV_Snow_co.paa"};},
  2516.             {"Exile_Car_SUV_Black",     150, "Leaf Camo",           {"exile_assets\texture\vehicle\Exile_SUV_Leaf_Light_co.paa"};},
  2517.             {"Exile_Car_SUV_Black",     150, "Leaf Camo (Dark)",    {"exile_assets\texture\vehicle\Exile_SUV_Leaf_Dark_co.paa"};}
  2518.         };
  2519.     };
  2520.  
  2521.     ///////////////////////////////////////////////////////////////////////////////
  2522.     // SUV XL
  2523.     ///////////////////////////////////////////////////////////////////////////////
  2524.     class Exile_Car_SUVXL_Abstract
  2525.     {
  2526.         skins[] =
  2527.         {
  2528.             {"Exile_Car_SUVXL_Black", 100, "Black", {""};}
  2529.         };
  2530.     };
  2531.  
  2532.     ///////////////////////////////////////////////////////////////////////////////
  2533.     // Van
  2534.     ///////////////////////////////////////////////////////////////////////////////
  2535.     class Exile_Car_Van_Abstract
  2536.     {
  2537.         skins[] =
  2538.         {
  2539.             {"Exile_Car_Van_Black",         100, "Black",       {"\A3\soft_f_gamma\van_01\Data\Van_01_ext_black_CO.paa","\A3\soft_f_gamma\van_01\Data\van_01_adds_CO.paa"};},
  2540.             {"Exile_Car_Van_White",         100, "White",       {"\A3\soft_f_gamma\van_01\Data\van_01_ext_CO.paa","\A3\soft_f_gamma\van_01\Data\van_01_adds_CO.paa"};},
  2541.             {"Exile_Car_Van_Red",           100, "Red",         {"\A3\soft_f_gamma\van_01\Data\Van_01_ext_red_CO.paa","\A3\soft_f_gamma\van_01\Data\van_01_adds_CO.paa"};},
  2542.             {"Exile_Car_Van_Guerilla01",    150, "Guerilla 01", {"\A3\Soft_F_Bootcamp\Van_01\Data\Van_01_ext_IG_01_CO.paa","\A3\Soft_F_Bootcamp\Van_01\Data\Van_01_adds_IG_01_CO.paa"};},
  2543.             {"Exile_Car_Van_Guerilla02",    150, "Guerilla 02", {"\A3\Soft_F_Bootcamp\Van_01\Data\Van_01_ext_IG_02_CO.paa","\A3\Soft_F_Bootcamp\Van_01\Data\Van_01_adds_IG_02_CO.paa"};},
  2544.             {"Exile_Car_Van_Guerilla03",    150, "Guerilla 03", {"\A3\Soft_F_Bootcamp\Van_01\Data\Van_01_ext_IG_03_CO.paa","\A3\Soft_F_Bootcamp\Van_01\Data\Van_01_adds_IG_03_CO.paa"};},
  2545.             {"Exile_Car_Van_Guerilla04",    150, "Guerilla 04", {"\A3\Soft_F_Bootcamp\Van_01\Data\Van_01_ext_IG_04_CO.paa","\A3\Soft_F_Bootcamp\Van_01\Data\Van_01_adds_IG_04_CO.paa"};},
  2546.             {"Exile_Car_Van_Guerilla05",    150, "Guerilla 05", {"\A3\Soft_F_Bootcamp\Van_01\Data\Van_01_ext_IG_05_CO.paa","\A3\Soft_F_Bootcamp\Van_01\Data\Van_01_adds_IG_05_CO.paa"};},
  2547.             {"Exile_Car_Van_Guerilla06",    150, "Guerilla 06", {"\A3\Soft_F_Bootcamp\Van_01\Data\Van_01_ext_IG_06_CO.paa","\A3\Soft_F_Bootcamp\Van_01\Data\Van_01_adds_IG_06_CO.paa"};},
  2548.             {"Exile_Car_Van_Guerilla07",    150, "Guerilla 07", {"\A3\Soft_F_Bootcamp\Van_01\Data\Van_01_ext_IG_07_CO.paa","\A3\Soft_F_Bootcamp\Van_01\Data\Van_01_adds_IG_07_CO.paa"};},
  2549.             {"Exile_Car_Van_Guerilla08",    150, "Guerilla 08", {"\A3\Soft_F_Bootcamp\Van_01\Data\Van_01_ext_IG_08_CO.paa","\A3\Soft_F_Bootcamp\Van_01\Data\Van_01_adds_IG_08_CO.paa"};}
  2550.         };
  2551.     };
  2552.  
  2553.     ///////////////////////////////////////////////////////////////////////////////
  2554.     // Van (Box)
  2555.     ///////////////////////////////////////////////////////////////////////////////
  2556.     class Exile_Car_Van_Box_Abstract
  2557.     {
  2558.         skins[] =
  2559.         {
  2560.             {"Exile_Car_Van_Box_Black",             100, "Black",       {"\A3\soft_f_gamma\van_01\Data\Van_01_ext_black_CO.paa","\A3\soft_f_gamma\van_01\Data\van_01_adds_CO.paa"};},
  2561.             {"Exile_Car_Van_Box_White",             100, "White",       {"\A3\soft_f_gamma\van_01\Data\van_01_ext_CO.paa","\A3\soft_f_gamma\van_01\Data\van_01_adds_CO.paa"};},
  2562.             {"Exile_Car_Van_Box_Red",               100, "Red",         {"\A3\soft_f_gamma\van_01\Data\Van_01_ext_red_CO.paa","\A3\soft_f_gamma\van_01\Data\van_01_adds_CO.paa"};},
  2563.             {"Exile_Car_Van_Box_Guerilla01",        150, "Guerilla 01", {"\A3\Soft_F_Bootcamp\Van_01\Data\Van_01_ext_IG_01_CO.paa","\A3\Soft_F_Bootcamp\Van_01\Data\Van_01_adds_IG_01_CO.paa"};},
  2564.             {"Exile_Car_Van_Box_Guerilla02",        150, "Guerilla 02", {"\A3\Soft_F_Bootcamp\Van_01\Data\Van_01_ext_IG_02_CO.paa","\A3\Soft_F_Bootcamp\Van_01\Data\Van_01_adds_IG_02_CO.paa"};},
  2565.             {"Exile_Car_Van_Box_Guerilla03",        150, "Guerilla 03", {"\A3\Soft_F_Bootcamp\Van_01\Data\Van_01_ext_IG_03_CO.paa","\A3\Soft_F_Bootcamp\Van_01\Data\Van_01_adds_IG_03_CO.paa"};},
  2566.             {"Exile_Car_Van_Box_Guerilla04",        150, "Guerilla 04", {"\A3\Soft_F_Bootcamp\Van_01\Data\Van_01_ext_IG_04_CO.paa","\A3\Soft_F_Bootcamp\Van_01\Data\Van_01_adds_IG_04_CO.paa"};},
  2567.             {"Exile_Car_Van_Box_Guerilla05",        150, "Guerilla 05", {"\A3\Soft_F_Bootcamp\Van_01\Data\Van_01_ext_IG_05_CO.paa","\A3\Soft_F_Bootcamp\Van_01\Data\Van_01_adds_IG_05_CO.paa"};},
  2568.             {"Exile_Car_Van_Box_Guerilla06",        150, "Guerilla 06", {"\A3\Soft_F_Bootcamp\Van_01\Data\Van_01_ext_IG_06_CO.paa","\A3\Soft_F_Bootcamp\Van_01\Data\Van_01_adds_IG_06_CO.paa"};},
  2569.             {"Exile_Car_Van_Box_Guerilla07",        150, "Guerilla 07", {"\A3\Soft_F_Bootcamp\Van_01\Data\Van_01_ext_IG_07_CO.paa","\A3\Soft_F_Bootcamp\Van_01\Data\Van_01_adds_IG_07_CO.paa"};},
  2570.             {"Exile_Car_Van_Box_Guerilla08",        150, "Guerilla 08", {"\A3\Soft_F_Bootcamp\Van_01\Data\Van_01_ext_IG_08_CO.paa","\A3\Soft_F_Bootcamp\Van_01\Data\Van_01_adds_IG_08_CO.paa"};}
  2571.         };
  2572.     };
  2573.  
  2574.     ///////////////////////////////////////////////////////////////////////////////
  2575.     // Van (Fuel)
  2576.     ///////////////////////////////////////////////////////////////////////////////
  2577.     class Exile_Car_Van_Fuel_Abstract
  2578.     {
  2579.         skins[] =
  2580.         {
  2581.             {"Exile_Car_Van_Fuel_Black",            100, "Black",       {"\A3\soft_f_gamma\van_01\Data\Van_01_ext_black_CO.paa","\A3\soft_f_gamma\Van_01\Data\Van_01_tank_CO.paa"};},
  2582.             {"Exile_Car_Van_Fuel_White",            100, "White",       {"\A3\soft_f_gamma\van_01\Data\van_01_ext_CO.paa","\A3\soft_f_gamma\Van_01\Data\Van_01_tank_CO.paa"};},
  2583.             {"Exile_Car_Van_Fuel_Red",              100, "Red",         {"\A3\soft_f_gamma\van_01\Data\Van_01_ext_red_CO.paa","\A3\soft_f_gamma\Van_01\Data\Van_01_tank_CO.paa"};},
  2584.             {"Exile_Car_Van_Fuel_Guerilla01",       150, "Guerilla 01", {"\A3\Soft_F_Bootcamp\Van_01\Data\Van_01_ext_IG_01_CO.paa","\A3\Soft_F_Bootcamp\Van_01\Data\Van_01_tank_IG_01_CO.paa"};},
  2585.             {"Exile_Car_Van_Fuel_Guerilla02",       150, "Guerilla 02", {"\A3\Soft_F_Bootcamp\Van_01\Data\Van_01_ext_IG_02_CO.paa","\A3\Soft_F_Bootcamp\Van_01\Data\Van_01_tank_IG_02_CO.paa"};},
  2586.             {"Exile_Car_Van_Fuel_Guerilla03",       150, "Guerilla 03", {"\A3\Soft_F_Bootcamp\Van_01\Data\Van_01_ext_IG_03_CO.paa","\A3\Soft_F_Bootcamp\Van_01\Data\Van_01_tank_IG_03_CO.paa"};}
  2587.         };
  2588.     };
  2589.  
  2590.     ///////////////////////////////////////////////////////////////////////////////
  2591.     // Ikarus
  2592.     ///////////////////////////////////////////////////////////////////////////////
  2593.     class Exile_Car_Ikarus_Abstract
  2594.     {
  2595.         skins[] =
  2596.         {
  2597.             {"Exile_Car_Ikarus_Blue",       200, "Blue",    {"Exile_psycho_Ikarus\Data\bus_exterior_co.paa"};},
  2598.             {"Exile_Car_Ikarus_Red",        200, "Red",     {"Exile_psycho_Ikarus\Data\bus_exterior_eciv_co.paa"};},
  2599.             {"Exile_Car_Ikarus_Party",      500, "Party",   {"Exile_psycho_Ikarus\Data\bus_exterior_eciv_co.paa"};}
  2600.         };
  2601.     };
  2602.  
  2603.     ///////////////////////////////////////////////////////////////////////////////
  2604.     // Ural (Open)
  2605.     ///////////////////////////////////////////////////////////////////////////////
  2606.     class Exile_Car_Ural_Open_Abstract
  2607.     {
  2608.         skins[] =
  2609.         {
  2610.             {"Exile_Car_Ural_Open_Blue",            300, "Blue",        {"Exile_psycho_Ural\data\Ural_kabina_civil_co.paa","Exile_psycho_Ural\data\ural_plachta_civil_co.paa"};},
  2611.             {"Exile_Car_Ural_Open_Yellow",          300, "Yellow",      {"Exile_psycho_Ural\data\ural_kabina_civ1_co.paa","Exile_psycho_Ural\data\ural_plachta_civ1_co.paa"};},
  2612.             {"Exile_Car_Ural_Open_Worker",          300, "Worker",      {"Exile_psycho_Ural\data\ural_kabina_civ2_co.paa","Exile_psycho_Ural\data\Ural_plachta_civil_co.paa"};},
  2613.             {"Exile_Car_Ural_Open_Military",        300, "Military",    {"Exile_psycho_Ural\data\ural_kabina_khk_co.paa","Exile_psycho_Ural\data\ural_plachta_co.paa"};}
  2614.         };
  2615.     };
  2616.  
  2617.     ///////////////////////////////////////////////////////////////////////////////
  2618.     // Ural (Covered)
  2619.     ///////////////////////////////////////////////////////////////////////////////
  2620.     class Exile_Car_Ural_Covered_Abstract
  2621.     {
  2622.         skins[] =
  2623.         {
  2624.             {"Exile_Car_Ural_Covered_Blue",         300, "Blue",        {"Exile_psycho_Ural\data\ural_kabina_civil_co.paa","Exile_psycho_Ural\data\ural_plachta_civil_co.paa"};},
  2625.             {"Exile_Car_Ural_Covered_Yellow",       300, "Yellow",      {"Exile_psycho_Ural\data\ural_kabina_civ1_co.paa","Exile_psycho_Ural\data\ural_plachta_civ1_co.paa"};},
  2626.             {"Exile_Car_Ural_Covered_Worker",       300, "Worker",      {"Exile_psycho_Ural\data\ural_kabina_civ2_co.paa","Exile_psycho_Ural\data\Ural_plachta_civil_co.paa"};},
  2627.             {"Exile_Car_Ural_Covered_Military",     300, "Military",    {"Exile_psycho_Ural\data\ural_kabina_khk_co.paa","Exile_psycho_Ural\data\ural_plachta_co.paa"};}
  2628.         };
  2629.     };
  2630.  
  2631.     ///////////////////////////////////////////////////////////////////////////////
  2632.     // Lada
  2633.     ///////////////////////////////////////////////////////////////////////////////
  2634.     class Exile_Car_Lada_Abstract
  2635.     {
  2636.         skins[] =
  2637.         {
  2638.             {"Exile_Car_Lada_Green",        100, "Green",   {"exile_psycho_lada\data\lada_eciv1_co.paa","exile_psycho_lada\data\Lada_glass_ECIV1_CA.paa"};},
  2639.             {"Exile_Car_Lada_Taxi",         100, "Taxi",    {"exile_psycho_lada\data\Lada_red_CO.paa"};},
  2640.             {"Exile_Car_Lada_Red",          100, "Red",     {"exile_psycho_lada\data\Lada_red_CO.paa"};},
  2641.             {"Exile_Car_Lada_Hipster",      100, "Hipster", {"exile_psycho_lada\data\lada_eciv2_co.paa","exile_psycho_lada\data\Lada_glass_ECIV2_CA.paa"};}
  2642.         };
  2643.     };
  2644.  
  2645.     ///////////////////////////////////////////////////////////////////////////////
  2646.     // Volha
  2647.     ///////////////////////////////////////////////////////////////////////////////
  2648.     class Exile_Car_Volha_Abstract
  2649.     {
  2650.         skins[] =
  2651.         {
  2652.             {"Exile_Car_Volha_Blue",        100, "Blue",    {"Exile_psycho_Gaz_volha\data\Volha_ECIV_CO.paa"};},
  2653.             {"Exile_Car_Volha_White",       100, "White",   {"Exile_psycho_Gaz_volha\data\Volha_Gray_ECIV_CO.paa"};},
  2654.             {"Exile_Car_Volha_Black",       100, "Black",   {"Exile_psycho_Gaz_volha\data\Volha_Black_ECIV_CO.paa"};}
  2655.         };
  2656.     };
  2657.  
  2658.     ///////////////////////////////////////////////////////////////////////////////
  2659.     // HUNTER
  2660.     ///////////////////////////////////////////////////////////////////////////////
  2661.     class Exile_Car_Hunter_Abstract
  2662.     {
  2663.         skins[] =
  2664.         {
  2665.  
  2666.             {"Exile_Car_Hunter",        1000, "Exile White Edition",    {"exile_assets\texture\vehicle\Exile_Hunter_Snow_co.paa","exile_assets\texture\vehicle\Exile_Hunter_Snow_Back_co.paa"};},
  2667.             {"Exile_Car_Hunter",        1000, "Exile Hex",              {"exile_assets\texture\vehicle\Exile_Hunter_Hex_co.paa","exile_assets\texture\vehicle\Exile_Hunter_Black_Back_co.paa"};},
  2668.             {"Exile_Car_Hunter",        1000, "Exile Black",            {"exile_assets\texture\vehicle\Exile_Hunter_Black_co.paa","exile_assets\texture\vehicle\Exile_Hunter_Black_Back_co.paa"};}
  2669.         };
  2670.     };
  2671. };
  2672. class CfgVehicleTransport
  2673. {
  2674.     class Exile_Container_SupplyBox
  2675.     {
  2676.         vehicles[] = {"Exile_Car_Van_Abstract", "Exile_Car_Offroad_Abstract", "Exile_Car_Zamak_Abstract", "Exile_Car_HEMMT_Abstract", "Exile_Car_Tempest_Abstract"};
  2677.  
  2678.         class Exile_Car_Van_Abstract
  2679.         {
  2680.             attachPosition[] = {0, -1.1, 0.2};
  2681.             cargoIndizes[] = {2, 3, 4, 5, 6, 7};
  2682.             detachPosition[] = {0, -4.4};
  2683.         };
  2684.  
  2685.         class Exile_Car_Offroad_Abstract
  2686.         {
  2687.             attachPosition[] = {0, -1.6, 0.4};
  2688.             cargoIndizes[] = {1, 2, 3, 4};
  2689.             detachPosition[] = {0, -4};
  2690.         };
  2691.  
  2692.         class Exile_Car_Zamak_Abstract
  2693.         {
  2694.             attachPosition[] = {0.03, 0.3, 0};
  2695.             cargoIndizes[] = {2, 3, 4, 5, 6, 7};
  2696.             detachPosition[] = {0.03, -4.8};
  2697.         };
  2698.  
  2699.         class Exile_Car_HEMMT_Abstract
  2700.         {
  2701.             attachPosition[] = {0.05, -0.1, 0.3};
  2702.             cargoIndizes[] = {1, 2, 8, 9};
  2703.             detachPosition[] = {0.05, -6.1};
  2704.         };
  2705.  
  2706.         class Exile_Car_Tempest_Abstract
  2707.         {
  2708.             attachPosition[] = {0.08, -0.85, 0.4};
  2709.             cargoIndizes[] = {1, 6, 7, 9};
  2710.             detachPosition[] = {0.08, -6};
  2711.         };
  2712.     };
  2713. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement