Weemo

Trying to create a custom Exile map- Failing miserably

6 posts in this topic

Hey modders, server owners, and anyone who might be able to help,  

Not sure if this is the right place to be venting my problems, however, I have tried everything in my power at this point, and I literally created this account to post this here because I have been trying to create a custom Exile map for a server and have encountered some issues. 

So where do I begin? Well, my friend and I want to start up our own Tanoa Exile server and I want to make the map for it. y'know with traders, static missions, pvp zones, loottables, mods included (like CUP) and all that good stuff. In essence, I'm trying to build this map from the ground up. I have all the required plugins and the up to date server that is the same version as my exile mod. I have familiarized myself with the EDEN editor, Notepad ++, .pbo unpackers, and where my mpmissions folders are located and all that. My problems started when I went to place a trader down. 

So here's my problem:

Trader placed down- no problems there. Access the trader menu when testing in game- no issues. Trader is selling 0 items- big issue. Not glitched items, not unable to buy items, literally nothing shows up its just the trader menu and a blank dropdown box. 

attempted solutions: 

1. Watching an ungodly amount of videos, reading a hefty amount of forum threads, googling till my fingers bled. It was all either too vague and not my exact problem, or outdated and no longer working as intended. 

2. Saving and replacing my initPlayerlocal.sqf files and initServer.sqf files AFTER placing the trader. No luck

3. Using red_ned's "Easy Trader setup" which can be found here. - Did EVERYTHING that was detailed in the .txt instructions. Still no luck. 

(none of this was binarized)

I feel like i'm missing something here? 

I'll link a mediafire to my unpacked .pbo mission file from C:\Users\USER\Documents\Arma 3 - Other Profiles\Giant\mpmissions\Tanoatest.Tanoa so you can load it up and try it for yourself here. 

Feel free to move this thread if it's in the wrong spot. Could use a bit of help. I have discord and steam if anyone would prefer to convo about it. Thanks. 

Share this post


Link to post
Share on other sites
Advertisement

Hello Weemo,

I would take up Hogan's offer of help.  To aid you temporary, when you see a trader with no items or a zero cost, it typically means your traders are not setup properly.

They must be included in the mission config.cpp file.  Not there?  No trader action!

Also, you can look at traders having two 'sets of books' which must be 'the same'.  I call them an 'inventory list' and a 'price list'.

The 'inventory list' has a list and prices of ALL items that can be bought OR sold to a trader.  The 'price list' shows the ONLY the items the trader can sell.

The 'inventory list' may have 20 items, but your 'price list' will have only 7 items on it.

BUT any item on the 'price list' MUST be in the 'inventory list'.

 

Remember:  Items On 'Inventory List'  >=  'Items On Price List'

 

There are MANY trader files that are basically 'plug-n-play' for default, CUP, and RHS items.

Here is a good and basic one which does work IF YOU FOLLOW THE SIMPLE INSTRUCTIONShttps://github.com/redned70/Trader-Mod

 

Also remember, ALWAYS BACKUP BEFORE MAKING ANY CHANGES!

 

Good luck!

:)

  • Like 1

Share this post


Link to post
Share on other sites

here is an issue inside you config.cpp you have CfgExileArsenal

Spoiler

class CfgExileArsenal
{
    {
    #include "TRADERS\APEX\ItemListAPEX.hpp"
    #include "TRADERS\ARMA3V\ItemListARMA3V.hpp"
    #include "TRADERS\ARMA3W\ItemListARMA3W.hpp"
    #include "TRADERS\BPOINT\ItemListBPOINT.hpp"    
    #include "TRADERS\CUNITS\ItemListCUNITS.hpp"
    #include "TRADERS\CUPV\ItemListCUPV.hpp"
    #include "TRADERS\CUPW\ItemListCUPW.hpp"
    #include "TRADERS\CUSTOM\ItemListCUSTOM.hpp"
    #include "TRADERS\EBM\ItemListEBM.hpp"
    #include "TRADERS\Exile\ItemListExile.hpp"
    #include "TRADERS\FFAA\ItemListFFAA.hpp"
    #include "TRADERS\FMP\ItemListFMP.hpp"
    #include "TRADERS\FOX\ItemListFOX.hpp"
    #include "TRADERS\HAP\ItemListHAP.hpp"
    #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\PODS\ItemListPODS.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\HLC\ItemListHLC.hpp"        //should use NIArms
};

it should look like this

Spoiler

class CfgExileArsenal
{
    #include "TRADERS\APEX\ItemListAPEX.hpp"
    #include "TRADERS\ARMA3V\ItemListARMA3V.hpp"
    #include "TRADERS\ARMA3W\ItemListARMA3W.hpp"
    #include "TRADERS\BPOINT\ItemListBPOINT.hpp"    
    #include "TRADERS\CUNITS\ItemListCUNITS.hpp"
    #include "TRADERS\CUPV\ItemListCUPV.hpp"
    #include "TRADERS\CUPW\ItemListCUPW.hpp"
    #include "TRADERS\CUSTOM\ItemListCUSTOM.hpp"
    #include "TRADERS\EBM\ItemListEBM.hpp"
    #include "TRADERS\Exile\ItemListExile.hpp"
    #include "TRADERS\FFAA\ItemListFFAA.hpp"
    #include "TRADERS\FMP\ItemListFMP.hpp"
    #include "TRADERS\FOX\ItemListFOX.hpp"
    #include "TRADERS\HAP\ItemListHAP.hpp"
    #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\PODS\ItemListPODS.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\HLC\ItemListHLC.hpp"        //should use NIArms
};

i removed that extra Closed Bracket {

and your CfgTraderCategories is ok

all should work ok now

  • Like 1

Share this post


Link to post
Share on other sites
Advertisement

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now

  • Recently Browsing   0 members

    No registered users viewing this page.