Trader-Mod/install instructions.txt
2017-03-27 11:58:31 +01:00

127 lines
5.7 KiB
Plaintext

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).
This file does not include how to install mods or add to loot tables as that is already well documented.
ned
*** Update v5.6 ***
Added a few new mods qubmitted by members of the community - thanks to everyone for files.
Fixed a few typos
*** Update v5.5 ***
Removed ExtendedBaseMod from custom to its own mod folder.
*** Update v5.4 ***
Added NIArms mod - Thanks to Tobias Solem for the help
*** Update v5.3 ***
Updated missing APEX vehicles - thanks to [RG] Salutesh
*** Update v5.2 ***
****** Added RHS GREF thanks to pomp4h ******
*** 1.0.0 Update***
New Exile trader: Diving
A3 Headgear is no longer required as it has now been put into the Exile default trader
Apex addons done as separate file and load
CfgTraders also now in separate file
>> added missing 2 Exile items: Exile_Item_Heatpack, Exile_Item_MacasCheese
>> commented out CUPW CUP_arifle_Sa58RIS2_des as it seems to be broken
***0.9.4 Update***
Since update i have tried to match prices for active items (not CUPV or CUPW or TRYK as i dont use them).
******************
NOTE RHS IS BOTH RUS AND USA.
****** Added Jonzie thanks to XxFri3ndlyxX ******
****** Added HAP thanks to XxFri3ndlyxX ******
****** Thanks to XxFri3ndlyxX for fix to RHSW ******
****** Fixed duplicate B_OutdoorPack_Base listing ******
****** Fixed duplicate B_Kitbag_rgr listing ******
***0.9.8 Update***
****** Adjusted Exile items to match new item list ******
****** Adjusted every "quality =" for a basic balance of purchasing (see mission config for "class requiredRespect") ******
****** Added external load for "CfgTraders" to complete fully external loading of trader ******
****** Exile now has new class "Shotguns" so be aware! ******
---------------------------------------------------------------------------------------------------------------------------
1. INSERT THE TRADERS FOLDER INTO YOUR MISSION PBO, DELETING ANY MOD FOLDERS YOU DONT USE.
---------------------------------------------------------------------------------------------------------------------------
2. IN CONFIG.CPP IN MISSION PBO: REPLACE FROM "class CfgExileArsenal" DOWN TO LINE ABOVE "class CfgExileCustomCode" with (CHOSING WHICH MODS YOU ARE USING AND DELETE OTHER LINES)
class CfgExileArsenal
{
#include "TRADERS\APEX\ItemListAPEX.hpp"
#include "TRADERS\ARMA3V\ItemListARMA3V.hpp"
#include "TRADERS\ARMA3W\ItemListARMA3W.hpp"
#include "TRADERS\CUPW\ItemListCUPW.hpp"
#include "TRADERS\CUPV\ItemListCUPV.hpp"
#include "TRADERS\EBM\ItemListEBM.hpp"
#include "TRADERS\FMP\ItemListFMP.hpp"
#include "TRADERS\HAP\ItemListHAP.hpp"
//#include "TRADERS\HLC\ItemListHLC.hpp" //should use NIArms
#include "TRADERS\HVP\ItemListHVP.hpp"
#include "TRADERS\HWP\ItemListHWP.hpp"
#include "TRADERS\Jonzie\ItemListJonzie.hpp"
#include "TRADERS\MASV\ItemListMASV.hpp"
#include "TRADERS\MASW\ItemListMASW.hpp"
#include "TRADERS\NIA\ItemListNIA.hpp"
#include "TRADERS\R3FW\ItemListR3FW.hpp"
#include "TRADERS\RHSGREF\ItemListGREF.hpp"
#include "TRADERS\RHSSAF\ItemListRHSSAF.hpp"
#include "TRADERS\RHSV\ItemListRHSV.hpp"
#include "TRADERS\RHSW\ItemListRHSW.hpp"
#include "TRADERS\TRYK\ItemListTRYK.hpp"
#include "TRADERS\PODS\ItemListPODS.hpp"
#include "TRADERS\CUSTOM\ItemListCUSTOM.hpp"
#include "TRADERS\Exile\ItemListExile.hpp"
};
---------------------------------------------------------------------------------------------------------------------------
3. IN CONFIG.CPP IN MISSION PBO: REPLACE FROM "class CfgTraderCategories" DOWN TO LINE ABOVE "class CfgTraders" with (CHOSING WHICH MODS YOU ARE USING AND DELETE OTHER LINES)
class CfgTraderCategories
{
#include "TRADERS\APEX\TraderCategoriesAPEX.hpp"
#include "TRADERS\ARMA3V\TraderCategoriesARMA3V.hpp"
#include "TRADERS\ARMA3W\TraderCategoriesARMA3W.hpp"
#include "TRADERS\CUPW\TraderCategoriesCUPW.hpp"
#include "TRADERS\CUPV\TraderCategoriesCUPV.hpp"
#include "TRADERS\EBM\TraderCategoriesEBM.hpp"
#include "TRADERS\FMP\TraderCategoriesFMP.hpp"
#include "TRADERS\HAP\TraderCategoriesHAP.hpp"
//#include "TRADERS\HLC\TraderCategoriesHLC.hpp" //should use NIArms
#include "TRADERS\HVP\TraderCategoriesHVP.hpp"
#include "TRADERS\HWP\TraderCategoriesHWP.hpp"
#include "TRADERS\Jonzie\TraderCategoriesJonzie.hpp"
#include "TRADERS\MASV\TraderCategoriesMASV.hpp"
#include "TRADERS\MASW\TraderCategoriesMASW.hpp"
#include "TRADERS\NIA\TraderCategoriesNIA.hpp"
#include "TRADERS\R3FW\TraderCategoriesR3FW.hpp"
#include "TRADERS\RHSGREF\TraderCategoriesGREF.hpp"
#include "TRADERS\RHSSAF\TraderCategoriesRHSSAF.hpp"
#include "TRADERS\RHSV\TraderCategoriesRHSV.hpp"
#include "TRADERS\RHSW\TraderCategoriesRHSW.hpp"
#include "TRADERS\TRYK\TraderCategoriesTRYK.hpp"
#include "TRADERS\PODS\TraderCategoriesPODS.hpp"
#include "TRADERS\CUSTOM\TraderCategoriesCUSTOM.hpp"
#include "TRADERS\Exile\TraderCategoriesExile.hpp"
};
---------------------------------------------------------------------------------------------------------------------------
4. IN CONFIG.CPP IN MISSION PBO: REPLACE FROM "class CfgTraders" DOWN TO LINE "class CfgTrading" with
class CfgTraders
{
#include "TRADERS\CfgTraders.hpp"
};
You can alternatively copy the cfgtraders file content over the traders in the main config, not recommended.