Jump to content
  • 0

l2jfrozen auto update


dramaa93

Question

4 answers to this question

Recommended Posts

  • 0
29 minutes ago, dramaa93 said:

hi, can i somehow force server to stop update prices into multisell? its changing my prices ...

Server update prices cause they sold more adena than you have set them on .
Example: if you set a bid for "crystal x-grade" to "200adena" and this item can sell for "5000"
server updates it and  fix it!
although if you still want it.
(1 option is :all items will sold for 0 adena)

 

go to navicat and run these :

 

UPDATE `armor` SET price = 0 where price> 1;
UPDATE `etcitem` SET price = 0 where price> 1;
UPDATE `weapon` SET price = 0 where price> 1;

Edited by Irrelevant
Link to comment
Share on other sites

  • 0
34 minutes ago, Irrelevant said:

Server update prices cause they sold more adena than you have set them on .
Example: if you set a bid for "crystal x-grade" to "200adena" and this item can sell for "5000"
server updates it and  fix it!
although if you still want it.
(1 option is :all items will sold for 0 adena)

 

go to navicat and run these :

 

UPDATE `armor` SET price = 0 where price> 1;
UPDATE `etcitem` SET price = 0 where price> 1;
UPDATE `weapon` SET price = 0 where price> 1;

ah okey, so i have to increase prices and its will stay? ok thx

Link to comment
Share on other sites

  • 0
3 minutes ago, dramaa93 said:

ah okey, so i have to increase prices and its will stay? ok thx

Even tho the cute guy above gave you solution you can control the price via configuration and this is cool because you can turn into HACKER mode and search the RequestSellItem.java which is located in client packets and then find something like:

 

final long price = item.getReferencePrice() / 2;

 

This is basically the amount of adena you receive after sell something, you can edit, set to 0 or configure base on your needs

Link to comment
Share on other sites

Guest
This topic is now closed to further replies.


×
×
  • Create New...