From 81050e20a7edce5de70c564f00b8e8339c271e51 Mon Sep 17 00:00:00 2001 From: Neil Perrett Date: Mon, 16 Apr 2018 20:44:03 +0100 Subject: [PATCH] Added : TankDLC --- README.md | 10 +-- TRADERS/CfgTraders.hpp | 4 ++ TRADERS/TANKDLC/ItemListTANKDLC.hpp | 59 ++++++++++++++++++ TRADERS/TANKDLC/TraderCategoriesTANKDLC.hpp | 67 +++++++++++++++++++++ install instructions.txt | 11 ++-- trader class list.txt | 6 +- 6 files changed, 147 insertions(+), 10 deletions(-) create mode 100644 TRADERS/TANKDLC/ItemListTANKDLC.hpp create mode 100644 TRADERS/TANKDLC/TraderCategoriesTANKDLC.hpp diff --git a/README.md b/README.md index d2b735c..58eed00 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# Trader-Mod v7.1 +# Trader-Mod v7.2 Exile Easy Trader Mod System
This trader system is offered free without any guarantee or promise and users should back up their files before proceeding.
@@ -9,6 +9,10 @@ This file does not include how to install mods or add to loot tables as that is This is a major update so please report bugs on exilemod.com

+v7.2 Update
+Added : TankDLC
+Thanks to @ItsDutch plus his contributors
+ v7.1 Update
Added : HAFM
Added : MASWW2
@@ -39,10 +43,6 @@ About 170 new items in total
v6.2 Update
Added BREAKING POINT Mod - thanks to CHAINSAW SQUIRREL
-v6.1 Update
-Added FFAA - thanks to CHAINSAW SQUIRREL
- -
NOTE RHS IS BOTH RUS AND USA.


diff --git a/TRADERS/CfgTraders.hpp b/TRADERS/CfgTraders.hpp index 995c5c8..a92b775 100644 --- a/TRADERS/CfgTraders.hpp +++ b/TRADERS/CfgTraders.hpp @@ -152,6 +152,8 @@ "SAFMines", "Smokes", "StaticMGs", + "TankDLCLaunchers", + "TankDLCLauncherAmmo", "UAVs", "WW2LAUNCHERS" // Whatever your last line is make sure it doesn't have a comma! <<<<<<<<<<<<<<<< <<<<<<<<<<<<<<<< <<<<<<<<<<<<<<<< @@ -204,6 +206,7 @@ "SAFHeadgear", "SAFUniforms", "SAFVests", + "TankDLCclothing", "TRYKBackpacks", "TRYKHeadgear", "TRYKUniforms", @@ -289,6 +292,7 @@ "RHSVehicles", "SAFArmed", "SAFUnarmed", + "TankDLC", "Trucks", //"MASTanks" //"A3Tanks" diff --git a/TRADERS/TANKDLC/ItemListTANKDLC.hpp b/TRADERS/TANKDLC/ItemListTANKDLC.hpp new file mode 100644 index 0000000..8349c0d --- /dev/null +++ b/TRADERS/TANKDLC/ItemListTANKDLC.hpp @@ -0,0 +1,59 @@ + /////////////////////////////////////////////////////////////////////////////// + // tankDLC submitted by @ItsDutch + /////////////////////////////////////////////////////////////////////////////// + + /////////////////////////////////////////////////////////////////////////////// + // RHINO + /////////////////////////////////////////////////////////////////////////////// + class B_AFV_Wheeled_01_cannon_F { quality = 1; price = 2000000; }; + class B_AFV_Wheeled_01_up_cannon_F { quality = 1; price = 3000000; }; + class B_T_AFV_Wheeled_01_cannon_F { quality = 1; price = 2000000; }; + class B_T_AFV_Wheeled_01_up_cannon_F { quality = 1; price = 3000000; }; + + /////////////////////////////////////////////////////////////////////////////// + // awc + /////////////////////////////////////////////////////////////////////////////// + class I_LT_01_AA_F { quality = 1; price = 600000; }; + class I_LT_01_AT_F { quality = 1; price = 600000; }; + class I_LT_01_cannon_F { quality = 1; price = 600000; }; + class I_LT_01_scout_F { quality = 1; price = 600000; }; + + /////////////////////////////////////////////////////////////////////////////// + // T140 + /////////////////////////////////////////////////////////////////////////////// + class O_MBT_04_cannon_F { quality = 1; price = 6000000; }; + class O_MBT_04_command_F { quality = 1; price = 6500000; }; + class O_T_MBT_04_cannon_F { quality = 1; price = 6000000; }; + class O_T_MBT_04_command_F { quality = 1; price = 6500000; }; + + /////////////////////////////////////////////////////////////////////////////// + // rocketvehicle + /////////////////////////////////////////////////////////////////////////////// + class B_G_Offroad_01_AT_F { quality = 1; price = 250000; }; + class B_LSV_01_AT_F { quality = 1; price = 250000; }; + class B_T_LSV_01_AT_F { quality = 1; price = 250000; }; + class I_C_Offroad_02_AT_F { quality = 1; price = 250000; }; + class O_LSV_02_AT_F { quality = 1; price = 250000; }; + class O_T_LSV_02_AT_F { quality = 1; price = 250000; }; + + /////////////////////////////////////////////////////////////////////////////// + // tankdlcclothing + /////////////////////////////////////////////////////////////////////////////// + class H_Tank_black_F { quality = 1; price = 5000; }; + class U_Tank_green_F { quality = 1; price = 10000; }; + + /////////////////////////////////////////////////////////////////////////////// + // tankdlclaunchers + /////////////////////////////////////////////////////////////////////////////// + class launch_MRAWS_green_F { quality = 3; price = 7500; sellPrice = 1500; }; + class launch_MRAWS_green_rail_F { quality = 3; price = 7500; sellPrice = 1500; }; + class launch_MRAWS_olive_F { quality = 3; price = 7500; sellPrice = 1500; }; + class launch_MRAWS_olive_rail_F { quality = 3; price = 7500; sellPrice = 1500; }; + class launch_MRAWS_sand_F { quality = 3; price = 7500; sellPrice = 1500; }; + class launch_MRAWS_sand_rail_F { quality = 3; price = 7500; sellPrice = 1500; }; + + /////////////////////////////////////////////////////////////////////////////// + // tankdlclauncherammo + /////////////////////////////////////////////////////////////////////////////// + class MRAWS_HEAT_F { quality = 1; price = 3000; }; + class MRAWS_HE_F { quality = 1; price = 3000; }; \ No newline at end of file diff --git a/TRADERS/TANKDLC/TraderCategoriesTANKDLC.hpp b/TRADERS/TANKDLC/TraderCategoriesTANKDLC.hpp new file mode 100644 index 0000000..019f804 --- /dev/null +++ b/TRADERS/TANKDLC/TraderCategoriesTANKDLC.hpp @@ -0,0 +1,67 @@ + ///////////////////////////////////////////////////////// + // tankDLC submitted by @ItsDutch + ///////////////////////////////////////////////////////// + + class TankDLC + { + name = "TANK DLC"; + icon = "a3\ui_f\data\gui\Rsc\RscDisplayArsenal\itemacc_ca.paa"; + items[] = + { + "B_AFV_Wheeled_01_cannon_F", + "B_AFV_Wheeled_01_up_cannon_F", + "B_G_Offroad_01_AT_F", + "B_LSV_01_AT_F", + "B_T_AFV_Wheeled_01_cannon_F", + "B_T_AFV_Wheeled_01_up_cannon_F", + "B_T_LSV_01_AT_F", + "I_C_Offroad_02_AT_F", + "I_LT_01_AA_F", + "I_LT_01_AT_F", + "I_LT_01_cannon_F", + "I_LT_01_scout_F", + "O_LSV_02_AT_F", + "O_MBT_04_cannon_F", + "O_MBT_04_command_F", + "O_T_LSV_02_AT_F", + "O_T_MBT_04_cannon_F", + "O_T_MBT_04_command_F" + }; + }; + + class TankDLCclothing + { + name = "TANK DLC clothing"; + icon = "a3\ui_f\data\gui\Rsc\RscDisplayArsenal\itemacc_ca.paa"; + items[] = + { + "H_Tank_black_F", + "U_Tank_green_F" + }; + }; + + class TankDLCLaunchers + { + name = "TANK DLC Launchers"; + icon = "a3\ui_f\data\gui\Rsc\RscDisplayArsenal\itemacc_ca.paa"; + items[] = + { + "launch_MRAWS_olive_F", + "launch_MRAWS_olive_rail_F", + "launch_MRAWS_green_F", + "launch_MRAWS_green_rail_F", + "launch_MRAWS_sand_F", + "launch_MRAWS_sand_rail_F" + }; + }; + + class TankDLCLauncherAmmo + { + name = "TANK DLC Launcher Ammo"; + icon = "a3\ui_f\data\gui\Rsc\RscDisplayArsenal\itemacc_ca.paa"; + items[] = + { + "MRAWS_HEAT_F", + "MRAWS_HE_F" + }; + }; \ No newline at end of file diff --git a/install instructions.txt b/install instructions.txt index 60a4822..4f9d08a 100644 --- a/install instructions.txt +++ b/install instructions.txt @@ -5,6 +5,10 @@ If you use then you should consider sharing any further development, bug fixes o This file does not include how to install mods or add to loot tables as that is already well documented. ned +*** Update v7.2 *** +Added : TankDLC +Thanks to @ItsDutch plus his contributors + *** Update v7.1 *** Added : HAFM Added : MASWW2 @@ -26,9 +30,6 @@ Text sorted some more files and checked optimisation of tabs not spaces Added 100+ vehicles into RHSV Added some missing Arma3 vehicles -*** Update v6.2 *** -Added BREAKING POINT Mod - thanks to CHAINSAW SQUIRREL - NOTE RHS IS BOTH RUS AND USA. ****** Thanks to all the following for help ****** @@ -80,6 +81,7 @@ class CfgExileArsenal #include "TRADERS\RHSSAF\ItemListRHSSAF.hpp" #include "TRADERS\RHSV\ItemListRHSV.hpp" #include "TRADERS\RHSW\ItemListRHSW.hpp" + #include "TRADERS\TANKDLC\ItemListTANKDLC.hpp" #include "TRADERS\TRYK\ItemListTRYK.hpp" //#include "TRADERS\HLC\ItemListHLC.hpp" //should use NIArms }; @@ -123,8 +125,9 @@ class CfgTraderCategories #include "TRADERS\RHSSAF\TraderCategoriesRHSSAF.hpp" #include "TRADERS\RHSV\TraderCategoriesRHSV.hpp" #include "TRADERS\RHSW\TraderCategoriesRHSW.hpp" + #include "TRADERS\TANKDLC\TraderCategoriesTANKDLC.hpp" #include "TRADERS\TRYK\TraderCategoriesTRYK.hpp" - //#include "TRADERS\HLC\TraderCategoriesHLC.hpp" //should use NIArms + //#include "TRADERS\HLC\TraderCategoriesHLC.hpp" //should use NIArms as that is newer and working version of HLC }; --------------------------------------------------------------------------------------------------------------------------- diff --git a/trader class list.txt b/trader class list.txt index eb73a29..80b3d00 100644 --- a/trader class list.txt +++ b/trader class list.txt @@ -100,6 +100,7 @@ MASLaunchers R3FLaunchers RHSLaunchers WW2LAUNCHERS +TankDLCLaunchers ----------- launcher ammo ---------- A3LauncherAmmo @@ -108,6 +109,7 @@ CUPLauncherAmmo MASLauncherAmmo R3FLauncherAmmo RHSLauncherAmmo +TankDLCLauncherAmmo ----------- pistols ---------- APEXPistols @@ -181,10 +183,11 @@ Diving FFAAUniform GREFUniforms HAPUNIFORMS +Nlunit RHSUniforms TRYKUniforms +TankDLCclothing Uniforms -Nlunit WW2Clothing ----------- vests ---------- @@ -284,6 +287,7 @@ Nlvehicle A3Tanks MASTanks Nltank +TankDLC ----------- helicopters ---------- //CChoppers - no longer used