Jump to content
  • 0

Doubled server on local & Server Trader Category


kuibi1234

Question

Hey, i have 2 questions. The first is, why do i see my local dayz epoch server 2 times in the server browser, is that something that should bother me or something i can ignore? It doesnt matter which one i join, they both work and both save/change things to DB, like char positions, cars etc etc.


Second: I added a new category, to the vehicles trader but i cant find where to actually edit the categories. Did it get removed in 1.0.7 or is it done differently? Because i can not find any of that anywhere, i even searched other posts in here and cant find anything that has to do with 1.0.7 traders categories. Back then everyone used a server_traders.sqf to edit these things, but now i cant find that anywhere (Not in the 1.0.7 files atleast).

If anyone's gonna ask i have :

DZE_TraderConfig = true;

CfgServerTraderZSC copied from dayz_code to mission folder and implemented in description.ext

This is how my vehicle.hpp looks like:
 

  Reveal hidden contents

 

Link to comment
Share on other sites

4 answers to this question

Recommended Posts

  • 1

edit - init.sqf

Find-
call compile preprocessFileLineNumbers "\z\addons\dayz_code\system\mission\server_traders\chernarus11.sqf";

Replace With - (Create the folder(s) if needed in the mission file
call compile preprocessFileLineNumbers "system\mission\server_traders\chernarus11.sqf";

Then copy over the file from the dayz_code .pbo (dayz_code\system\mission\server_traders\chernarus11.sqf)

Find the trader you need to edit
/***************Boat Vendor*********/
menu_RU_Villager3 = [
    [[localize "STR_EPOCH_TRADER_CATEGORY_BOATSARMED",48],[localize "STR_EPOCH_TRADER_CATEGORY_BOATSUNARMED",49]],
    [],
    "neutral"
];

Add your new category - Example the 37 would be the number of the new one you created ( Category_37 )
["MY NEW CATEGORY, 37],

 

Should look like this
menu_RU_Villager3 = [
    [["MY NEW CATEGORY, 37], [localize "STR_EPOCH_TRADER_CATEGORY_BOATSARMED",48],[localize "STR_EPOCH_TRADER_CATEGORY_BOATSUNARMED",49]],
    [],
    "neutral"
];

 

Hope this helps




 

Link to comment
Share on other sites

  • 0
  On 6/20/2022 at 6:34 PM, Crude said:

edit - init.sqf

Find-
call compile preprocessFileLineNumbers "\z\addons\dayz_code\system\mission\server_traders\chernarus11.sqf";

Replace With - (Create the folder(s) if needed in the mission file
call compile preprocessFileLineNumbers "system\mission\server_traders\chernarus11.sqf";

Then copy over the file from the dayz_code .pbo (dayz_code\system\mission\server_traders\chernarus11.sqf)

Find the trader you need to edit
/***************Boat Vendor*********/
menu_RU_Villager3 = [
    [[localize "STR_EPOCH_TRADER_CATEGORY_BOATSARMED",48],[localize "STR_EPOCH_TRADER_CATEGORY_BOATSUNARMED",49]],
    [],
    "neutral"
];

Add your new category - Example the 37 would be the number of the new one you created ( Category_37 )
["MY NEW CATEGORY, 37],

 

Should look like this
menu_RU_Villager3 = [
    [["MY NEW CATEGORY, 37], [localize "STR_EPOCH_TRADER_CATEGORY_BOATSARMED",48],[localize "STR_EPOCH_TRADER_CATEGORY_BOATSUNARMED",49]],
    [],
    "neutral"
];

 

Hope this helps




 

Expand  

Okay so i think it worked, but now none of the existing Traders on the map have a trader menu, how do i fix that?

#Edit: Nevermind i had a comma too much, it works, thanks

Link to comment
Share on other sites

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now
  • Advertisement
  • Discord

×
×
  • Create New...