Welcome!

Join our community of MMO enthusiasts and game developers! By registering, you'll gain access to discussions on the latest developments in MMO server files and collaborate with like-minded individuals. Join us today and unlock the potential of MMO server development!

Join Today!

change AC sell cost

Newbie Spellweaver
Joined
Mar 22, 2017
Messages
84
Reaction score
7
hello i want to change the value whitch you pay if you sell a item in the auction house.
i found one entry in auctionframe.xml in the interface.fdb.
Does somebody know where i could change the value?


YCXXpxR - change AC sell cost - RaGEZONE Forums


Thank you in advance
 

Attachments

You must be registered for see attachments list
Junior Spellweaver
Joined
Jul 9, 2015
Messages
135
Reaction score
65
Client has nothing to do with it, else players could adjust the value and pay no tax. The money is taken by the server before it's sent back. Should be a variable inside the datacenter.ini iirc.

Unless you mean the listing cost?
 
Last edited:
Upvote 0
Newbie Spellweaver
Joined
Mar 22, 2017
Messages
84
Reaction score
7
thank you for your reply.

i mean the listing cost whitch are a prozentual value of the item price.
 
Upvote 0
Newbie Spellweaver
Joined
Mar 22, 2017
Messages
84
Reaction score
7
Source code.

int TaxMoney = int ( float( OrgDB->Cost ) * Item.Count * float( LiveTime / 240 )*0.006 );


Could you give me a little hint where you found these lines in the source code? i searched everything on server and client in the AC section and i dont found it
 
Upvote 0
Newbie Spellweaver
Joined
Apr 17, 2013
Messages
46
Reaction score
13
To change cost of AC, you have to make modification in DataCenter.ini file found in Server folder.

AC_Tax_Money = 0.94
AC_Tax_AccountMoney = 1
 
Upvote 0
Junior Spellweaver
Joined
Jul 9, 2015
Messages
135
Reaction score
65
He's not talking about the cost of items once it's sold, but the cost of when you actually list an item on the auction house. Which there is no ini for, its hardcoded in the source as mentioned above.
 
Upvote 0
Newbie Spellweaver
Joined
Apr 17, 2013
Messages
46
Reaction score
13
Oh, I see. My bad. Why would you want to change that?

I think I saw column in objects database with those values.
 
Upvote 0
Back
Top