Jump to content
  • 0

[question] how to add all price on shop 0adena? sell!


Question

8 answers to this question

Recommended Posts

  • 0
Posted

2 ways:

 

database:

 

UPDATE armor SET `price`="0";
UPDATE weapon SET `price`="0";
UPDATE etcitem SET `price`="0";

 

java:

 

RequestSellItem.java

- totalPrice += price * i.getCount();
+ totalPrice += 0;

 

  • 0
Posted

Only for official shops? No multisells,

 

Update merchant_buylists set `price` = 0 WHERE `price` >= 0;

(i've don't test this request because i won't set my prices to 0, but try it)

For multisell, you'll have to do with your hands.

Guest
This topic is now closed to further replies.


×
×
  • Create New...

Important Information

This community uses essential cookies to function properly. Non-essential cookies and third-party services are used only with your consent. Read our Privacy Policy and We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue..