Vendor & Bazaar duration timers

Havos

New Member
Joined
Sep 11, 2018
Messages
1
So I have been looking for the timers that govern the length that you can have an item up for sale.
Current default 30 days for vendors and 7 days for bazaar.

I have only been able to find reference to time for sales in the following file: .../src/server/zone/managers/auction/AuctionManager.idl
I did change the values and rebooted, but the changes did not take effect.

Does this require a rebuild and will a rebuild effect the current DB?
 

Aeryna

Moderator
Staff member
Moderator
Joined
Oct 10, 2017
Messages
359
Try to "make idl" again and rebuild [make build].

Thanks to ckclyde for providing this info
For anyone interested in changing auction (Vendor and Bazaar) settings:

In src/server/zone/managers/auction/AuctionManager.idl

public final static int MAXBAZAARPRICE = 20000;
public final static int MAXSALES = 25; // this only apply to bazaars
public final static int SALESFEE = 20;
public final static int CHECKEVERY = 60; // Minutes

public final static int MAXVENDORPRICE = 99999999;
public final static int ITEMSPERPAGE = 100;

public final static int VENDOREXPIREPERIOD = 2592000; // 30 days
public final static int COMMODITYEXPIREPERIOD = 604800; // 7 days

I upped VENDOREXPIREPERIOD to make items stay on vendors longer
 
Top Bottom