Rio Posted August 29, 2010 Posted August 29, 2010 How can i remove the cost for removing augment and enchanting skills? :/ Quote
0 ~Ge0rge~ Posted August 29, 2010 Posted August 29, 2010 Why to do this?omg :S it is only......2000 adena i think or a little more :D Quote
0 xAddytzu Posted August 29, 2010 Posted August 29, 2010 RequestRefineCancel.java // get the price int price=0; switch (targetItem.getItem().getItemGrade()) { case L2Item.CRYSTAL_C: if (targetItem.getCrystalCount() < 1720) price = 95000; else if (targetItem.getCrystalCount() < 2452) price = 150000; else price = 210000; break; case L2Item.CRYSTAL_B: if (targetItem.getCrystalCount() < 1746) price = 240000; else price = 270000; break; case L2Item.CRYSTAL_A: if (targetItem.getCrystalCount() < 2160) price = 330000; else if (targetItem.getCrystalCount() < 2824) price = 390000; else price = 420000; break; case L2Item.CRYSTAL_S: price = 480000; break; // any other item type is not augmentable default: activeChar.sendPacket(new ExVariationCancelResult(0)); return; } Quote
Question
Rio
How can i remove the cost for removing augment and enchanting skills? :/
3 answers to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.