From 47e0923d320270563c041de7f564eeed7eca36bd Mon Sep 17 00:00:00 2001 From: Neil Perrett Date: Thu, 18 Jan 2018 10:36:15 +0000 Subject: [PATCH] Added FHQ mod - thanks to Poptart4050 --- TRADERS/CfgTraders.hpp | 1 + TRADERS/FHQ/ItemListFHQ.hpp | 34 ++++++++++++++++++++++++ TRADERS/FHQ/TraderCategoriesFHQ.hpp | 41 +++++++++++++++++++++++++++++ install instructions.txt | 13 ++++++--- trader class list.txt | 1 + 5 files changed, 86 insertions(+), 4 deletions(-) create mode 100644 TRADERS/FHQ/ItemListFHQ.hpp create mode 100644 TRADERS/FHQ/TraderCategoriesFHQ.hpp diff --git a/TRADERS/CfgTraders.hpp b/TRADERS/CfgTraders.hpp index 7c63dcc..551aa79 100644 --- a/TRADERS/CfgTraders.hpp +++ b/TRADERS/CfgTraders.hpp @@ -46,6 +46,7 @@ "FFAARifles", "FFAASmg", "FFAASniperRifles", + "FHQACCESSORIES", "GREFAmmunition", "GREFWeapons", "HAPASSAULTRIFLES", diff --git a/TRADERS/FHQ/ItemListFHQ.hpp b/TRADERS/FHQ/ItemListFHQ.hpp new file mode 100644 index 0000000..37483b6 --- /dev/null +++ b/TRADERS/FHQ/ItemListFHQ.hpp @@ -0,0 +1,34 @@ + /////////////////////////////////////////////////////////////////////////////// + // FHQACCESSORIES - by Poptart4050 + /////////////////////////////////////////////////////////////////////////////// + class FHQ_acc_ANPEQ15 { quality = 1; price = 300; }; + class FHQ_acc_ANPEQ15_black { quality = 1; price = 300; }; + class FHQ_acc_LLM01F { quality = 1; price = 300; }; + class FHQ_acc_LLM01L { quality = 1; price = 300; }; + class FHQ_optic_AC11704 { quality = 1; price = 300; }; + class FHQ_optic_AC11704_tan { quality = 1; price = 300; }; + class FHQ_optic_AC12136 { quality = 1; price = 300; }; + class FHQ_optic_AC12136_tan { quality = 1; price = 300; }; + class FHQ_optic_ACOG { quality = 1; price = 300; }; + class FHQ_optic_ACOG_tan { quality = 1; price = 300; }; + class FHQ_optic_AIM CompM4 { quality = 1; price = 300; }; + class FHQ_optic_AIM_tan { quality = 1; price = 300; }; + class FHQ_optic_AimM_BLK { quality = 1; price = 300; }; + class FHQ_optic_AimM_TAN { quality = 1; price = 300; }; + class FHQ_optic_HWS { quality = 1; price = 300; }; + class FHQ_optic_HWS_G33 { quality = 1; price = 300; }; + class FHQ_optic_HWS_G33_tan { quality = 1; price = 300; }; + class FHQ_optic_HWS_tan { quality = 1; price = 300; }; + class FHQ_optic_LeupoldERT { quality = 1; price = 300; }; + class FHQ_optic_LeupoldERT_tan { quality = 1; price = 300; }; + class FHQ_optic_MARS { quality = 1; price = 300; }; + class FHQ_optic_MARS_tan { quality = 1; price = 300; }; + class FHQ_optic_MCCO_M_BLK { quality = 1; price = 300; }; + class FHQ_optic_MCCO_M_TAN { quality = 1; price = 300; }; + class FHQ_optic_MicroCCO { quality = 1; price = 300; }; + class FHQ_optic_MicroCCO_low { quality = 1; price = 300; }; + class FHQ_optic_MicroCCO_low_tan { quality = 1; price = 300; }; + class FHQ_optic_MicroCCO_tan { quality = 1; price = 300; }; + class FHQ_optic_TWS3050 { quality = 1; price = 300; }; + class FHQ_optic_VCOG { quality = 1; price = 300; }; + class FHQ_optic_VCOG_tan { quality = 1; price = 300; }; \ No newline at end of file diff --git a/TRADERS/FHQ/TraderCategoriesFHQ.hpp b/TRADERS/FHQ/TraderCategoriesFHQ.hpp new file mode 100644 index 0000000..4699a69 --- /dev/null +++ b/TRADERS/FHQ/TraderCategoriesFHQ.hpp @@ -0,0 +1,41 @@ + class FHQACCESSORIES + { + name = "FHQ ACCESSORIES"; + icon = "a3\ui_f\data\gui\Rsc\RscDisplayArsenal\itemacc_ca.paa"; + items[] = + { + "FHQ_acc_ANPEQ15", + "FHQ_acc_ANPEQ15_black", + "FHQ_acc_LLM01F", + "FHQ_acc_LLM01L", + "FHQ_optic_AC11704", + "FHQ_optic_AC11704_tan", + "FHQ_optic_AC12136", + "FHQ_optic_AC12136_tan", + "FHQ_optic_ACOG", + "FHQ_optic_ACOG_tan", + "FHQ_optic_AIM CompM4", + "FHQ_optic_AIM_tan", + "FHQ_optic_AimM_BLK", + "FHQ_optic_AimM_TAN", + "FHQ_optic_HWS", + "FHQ_optic_HWS_G33", + "FHQ_optic_HWS_G33_tan", + "FHQ_optic_HWS_tan", + "FHQ_optic_LeupoldERT", + "FHQ_optic_LeupoldERT_tan", + "FHQ_optic_MARS", + "FHQ_optic_MARS_tan", + "FHQ_optic_MCCO_M_BLK", + "FHQ_optic_MCCO_M_TAN", + "FHQ_optic_MicroCCO", + "FHQ_optic_MicroCCO_low", + "FHQ_optic_MicroCCO_low_tan", + "FHQ_optic_MicroCCO_tan", + "FHQ_optic_TWS3050", + "FHQ_optic_VCOG", + "FHQ_optic_VCOG_tan" + }; + }; + + \ No newline at end of file diff --git a/install instructions.txt b/install instructions.txt index af19f61..44b6d3f 100644 --- a/install instructions.txt +++ b/install instructions.txt @@ -1,10 +1,13 @@ This trader system is offered free without any guarantee or promise and users should back up their files before proceeding. -It is compiled by [CiC]red_ned of http://cic-gaming.co.uk from different sources including documentation on exilemod and in game from various places. -I have only compiled what i found, attempted to simplify class names and created files for what i couldn't find and is given back to the community as thanks. -If you use then you should consider sharing any further development, bug fixes or expansions (as i have probably missed objects out or spelled things incorrectly). +It is compiled by [CiC]red_ned of http://cic-gaming.co.uk from different sources including documentation on Exilemod and in game from various places. +I have only compiled what I found, attempted to simplify class names and created files for what I couldn't find and is given back to the community as thanks. +If you use then you should consider sharing any further development, bug fixes or expansions (as I have probably missed objects out or spelled things incorrectly). This file does not include how to install mods or add to loot tables as that is already well documented. ned +*** Update v6.8 *** +Added FHQ mod - thanks to Poptart4050 for files + *** Update v6.6 *** Added KA Mod - thanks to CHAINSAW SQUIRREL Text sorted some more files and checked optimisation of tabs not spaces @@ -30,7 +33,7 @@ NOTE RHS IS BOTH RUS AND USA. ****** Thanks to all the following for help ****** ****** XxFri3ndlyxX, [RG] Salutesh, SE7EN ****** ****** Tobias Solem, pomp4h, Bob_the_K ****** -****** Razor77, jmayr2000, C][G GhostTown™ ****** +****** Razor77, jmayr2000, C][G GhostTown™, Poptart4050 ****** ****** ElShotte, Killerpoodezz,CHAINSAW SQUIRREL ****** --------------------------------------------------------------------------------------------------------------------------- @@ -54,6 +57,7 @@ class CfgExileArsenal #include "TRADERS\EBM\ItemListEBM.hpp" #include "TRADERS\Exile\ItemListExile.hpp" #include "TRADERS\FFAA\ItemListFFAA.hpp" + #include "TRADERS\FHQ\ItemListFHQ.hpp" #include "TRADERS\FMP\ItemListFMP.hpp" #include "TRADERS\FOX\ItemListFOX.hpp" #include "TRADERS\HAP\ItemListHAP.hpp" @@ -91,6 +95,7 @@ class CfgTraderCategories #include "TRADERS\EBM\TraderCategoriesEBM.hpp" #include "TRADERS\Exile\TraderCategoriesExile.hpp" #include "TRADERS\FFAA\TraderCategoriesFFAA.hpp" + #include "TRADERS\FHQ\TraderCategoriesFHQ.hpp" #include "TRADERS\FMP\TraderCategoriesFMP.hpp" #include "TRADERS\FOX\TraderCategoriesFOX.hpp" #include "TRADERS\HAP\TraderCategoriesHAP.hpp" diff --git a/trader class list.txt b/trader class list.txt index 58c3cac..9bc048a 100644 --- a/trader class list.txt +++ b/trader class list.txt @@ -55,6 +55,7 @@ APEXOpticAttachments BPOpticAttachments CUPOpticAttachments FFAAOpticAttachments +FHQACCESSORIES HLCOpticAttachments KAOpticAttachments MASOpticAttachments