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...