Jump to content
  • 0

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


Rzeszut

Question

8 answers to this question

Recommended Posts

  • 0

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;

 

Link to comment
Share on other sites

  • 0

dont work on java ;/ i have a high five l2jserver files please help me , dont tables on database.

 

Second solution is the - only - good one for you.

Link to comment
Share on other sites

  • 0

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.

Link to comment
Share on other sites

Guest
This topic is now closed to further replies.


×
×
  • Create New...