Jump to content
  • 0

[Help]Adena problem


Question

Posted

Hi guys i have that problem....I have one npc who can take s grade items like draconic bow but when you go to sell it to npc from L2 pack you sell it very very much money...So

MyNpc=32kk

NpcFromServer=65kk

 

How Change that pls help me...

5 answers to this question

Recommended Posts

  • 0
Posted

You have to change "price" in XMLs, for each item, or to change core side directly on RequestSellItem and change the ratio /2 by default, try to put /4. Second option will affect ALL items without exception.

  • 0
Posted

Hi guys i have that problem....I have one npc who can take s grade items like draconic bow but when you go to sell it to npc from L2 pack you sell it very very much money...So

MyNpc=32kk

NpcFromServer=65kk

 

How Change that pls help me...

 

go to MySQL, find etcitems table, and where it says price = <something>, change it to 0.

 

Or if you want for all items, make a .sql file (make txt first and rename it), and write this inside:

 

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

 

Then execute it from navicat.

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