Jump to content

Private Server Trader Tool


Remix

Recommended Posts

Requires Microsoft .NET Framework 4 http://www.microsoft.com/en-gb/download/details.aspx?id=17718

 

Trader Editor alpha
TraderTool.png

 

Trader editor currently

Lists traders from server_traders table then matches the class names to entry's found in server_traders.sqf(unsure if this is the right way its done but works for me for now)

enables u to edit/add/delete items in the traders category's

 

 

setup

DayZEpoch Tools alpha 0.2.zip

Download Remix DayZEpoch Tools alpha 0.1.zip (Old version)

Extract the files to your hard drive then edit "config.ini"

[CONFIG]
Username=dayz
Password=dayz
DatabaseName=dayzepoch
Server=localhost
Port=3306
Instance=11
TraderSQF=server_traders.sqf

[TABLENAMES]
serverTraders=server_traders
traderItems=trader_items
TradertIDs=trader_tids
TradersData=traders_data


Link to comment
Share on other sites

Awesome tool, added it to the tools i use to administrate my server. It makes changes so much easier. Can you add an option to add items to the traders? if not i can always do it how i use to do it so that's not a problem but it might be an addition to your tool! big thanks!

Link to comment
Share on other sites

 

ya i noticed that to fixed it by adding this ;p

INSERT INTO `dayzepoch`.`server_traders`
(
`classname`,
`instance`,
`status`,
`static`,
`desc`
)
VALUES
(
'Soldier_GL_M16A2_PMC',
11,
'neutral',
NULL,
'Black Market - Stary'
);

Where would I put this code?

 

Should I be missing most of my Stary traders? I'm only seeing Can and Ammo traders for Stary. The rest of the traders appear to be there.

 

Edit: Judging by your screenshot, I am supposed to be missing them. Just making sure it wasn't me. Keep up the awesome work!

Link to comment
Share on other sites

to add missing traders search the server_traders.sqf for the class names such as menu_Soldier_GL_M16A2_PMC  remove the (menu_) part and edit this query as needed ;p

INSERT INTO `dayzepoch`.`server_traders`
(
`classname`,
`instance`,
`status`,
`static`,
`desc`
)
VALUES
(
'Soldier_GL_M16A2_PMC',
11,
'neutral',
NULL,
'Black Market - Stary'
);
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
×
×
  • Create New...