Jump to content
  • 0

Adding new traders to the map?


Legacy10

Question

So recently I've been attempting to add new traders to the map. 

I've followed these guides yet neither seem to work:

https://docs.google.com/document/d/17qGy-LI4WVudJQb1vRCZobTgTEFgZwoJybEA9oUiZuQ/edit

http://opendayz.net/threads/tutorial-epoch-creating-a-new-trader.19593/

Do these work and I am doing something wrong? Or considering that these are a few years old, is there a new way to add traders since these may be outdated?

 

Link to comment
Share on other sites

7 answers to this question

Recommended Posts

  • 1
2 hours ago, Legacy10 said:

1.0.6.1

It's changed now. In your server PBO, go to the "dayz_server\traders" folder and select the file you're using for your server (if you're unsure, go into your init.sqf file in your mission pbo and look for this block of code:

Spoiler

if (isServer) then {
    call compile preprocessFileLineNumbers "\z\addons\dayz_server\system\dynamic_vehicle.sqf";
    call compile preprocessFileLineNumbers "\z\addons\dayz_server\system\server_monitor.sqf";
    execVM "\z\addons\dayz_server\traders\chernarus11.sqf"; //Add trader agents

The green text will tell you what file your server is pulling your trader agents from and that is the file you will open in the "dayz_server\traders" folder.

 

Once you have it opened, just copy the format in the file (example below) and make sure that the last agent in there does not have a comma at the end of the line.

Spoiler

["BAF_Soldier_EN_MTP",[11460.6,11395.9,0],151.445],

["Herrera_Light",[11468,11394.9,0],197.338],
["US_Delta_Force_Medic_EP1",[11474.3,11389.6,3.05176e-005],243.732] //([x,y,z],dir)

Hopefully this helps.

Link to comment
Share on other sites

  • 0
8 hours ago, Legacy10 said:

So recently I've been attempting to add new traders to the map. 

I've followed these guides yet neither seem to work:

https://docs.google.com/document/d/17qGy-LI4WVudJQb1vRCZobTgTEFgZwoJybEA9oUiZuQ/edit

http://opendayz.net/threads/tutorial-epoch-creating-a-new-trader.19593/

Do these work and I am doing something wrong? Or considering that these are a few years old, is there a new way to add traders since these may be outdated?

 

Are you running 1.0.5.1 or 1.0.6.1 ?

Link to comment
Share on other sites

  • 0
43 minutes ago, JohnnyBravo666 said:

It's changed now. In your server PBO, go to the "dayz_server\traders" folder and select the file you're using for your server (if you're unsure, go into your init.sqf file in your mission pbo and look for this block of code:

  Hide contents

if (isServer) then {
    call compile preprocessFileLineNumbers "\z\addons\dayz_server\system\dynamic_vehicle.sqf";
    call compile preprocessFileLineNumbers "\z\addons\dayz_server\system\server_monitor.sqf";
    execVM "\z\addons\dayz_server\traders\chernarus11.sqf"; //Add trader agents

The green text will tell you what file your server is pulling your trader agents from and that is the file you will open in the "dayz_server\traders" folder.

 

Once you have it opened, just copy the format in the file (example below) and make sure that the last agent in there does not have a comma at the end of the line.

  Reveal hidden contents

["BAF_Soldier_EN_MTP",[11460.6,11395.9,0],151.445],

["Herrera_Light",[11468,11394.9,0],197.338],
["US_Delta_Force_Medic_EP1",[11474.3,11389.6,3.05176e-005],243.732] //([x,y,z],dir)

Hopefully this helps.

Yeah I got it, thanks.

Link to comment
Share on other sites

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
  • Advertisement
  • Discord

×
×
  • Create New...