Lineage}{ Posted August 31, 2011 Posted August 31, 2011 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...
0 Tryskell Posted September 1, 2011 Posted September 1, 2011 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 Vector Posted September 1, 2011 Posted September 1, 2011 Well, it's very easy, go to the right xml file, find the production and in the ingredient change it. That's all, hope to help you.
0 [DEV]DjSt3rios Posted September 1, 2011 Posted September 1, 2011 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.
Question
Lineage}{
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