Jump to content

Hl4p3x

Members
  • Posts

    165
  • Credits

  • Joined

  • Last visited

  • Days Won

    1
  • Feedback

    0%

Everything posted by Hl4p3x

  1. Good luck my friend.. Best Ertheia pack/source.
  2. Thanks Night!! Fixed with credits to author! :D
  3. Hello guys! I will share with you the .sellbuffs command to L2jS_Freya. Good luck! GIST CODE Images, how it work? Credits: Masterio
  4. Please, post some screen of your Comunity Board?
  5. Trusted!!! Good luck with your sales!!
  6. I need your H5 Geodata, any chance to test it?
  7. Goodbye AGAIN Balrog... :happyforever:
  8. HoHOhoHOhO... Hey my dear Balrog, u come again? MXC Moderators banned your old acc and u come again with fresh nick and fresh scamm? Welcome to MXC Forum again and again and again and again... Jajaja!
  9. @MiguelS is a scammer like Balrog and others from MXC Forum..
  10. Full package from FANDC, you purchase compiled packs from L2-Scripts for the same price: http://www.maxcheaters.com/topic/176524-l2j-l2-scripts-emulators/ L2-S is the best choice for u.
  11. Just L2jServer with custom shared mods! Puff..
  12. Crappy test server.. i pay 2 euros for the source!
  13. Put patch to download or IP.. :D I will test it..
  14. Temporary Timeline: http://trac.l2jfree.com/l2jserver/ http://trac.l2jfree.com/l2jdp/
  15. Works perfect in H5.. Just change local of fight to Arena, if run in other location, players get FLAG/PK.. Thanks to share for us! http://imgur.com/a/PQo7S#0
  16. Good work, very usefull for MXC members! Thanks for this..
  17. 150 Euros for this fucking L2jServer with tons of mod? ---- PS: NerverMore Announcements: Posted Yesterday, 10:57 PM Lately we have limited time because of our real life jobs! We didn't stop updating and when we have time we still fix problems and bugs! We are not gonna stop , we will keep updating ... ( non will stop us ) Maybe our support is not that good but we will try to be more responsible! We needed to delete every user of l2jreunion from svn! If you was one, and you want to gain access again , please send a message on skype or here with payment proofs,skype id , and recent ip's from svn! ;D lol
  18. Bump! Another scammer in MXC? Balrog is dead, PS is another shit and now JReunion? MXC (House of Scammer) =D P.S: Karasu, good luck with Nevermore!
  19. <?xml version='1.0' encoding='utf-8'?> <!-- Armor --> - <list> + <list maintainEnchantment="true"> <!-- Vesper Cuirass --> <item id="1"> <ingredient id="14721" count="3" enchant="0"/> <production id="16168" count="1" enchantmentLevel="12"/> </item> Change <list> to <list maintainEnchantment="true">.. and be happy! =D
  20. Show me your Multisell shop.. or Try this: - <list > + <list maintainEnchantment="true"> <list maintainEnchantment="true"> <!-- Icarus Hammer - Anger --> <item id="1"> <ingredient id="29990" count="6"/> <production id="10452" count="1" enchantmentLevel="16"/> </item>
  21. MultiSellList.java @@ -119,5 +119,5 @@ else { - writeH(0x00); // enchant level + writeH(ing.getEnchantLevel()); // enchant level writeD(0x00); // augment id writeD(0x00); // mana @@ -154,5 +154,5 @@ else { - writeH(0x00); // enchant level + writeH(ing.getEnchantLevel()); // enchant level writeD(0x00); // augment id writeD(0x00); // mana PreparedEntry.java @@ -72,5 +72,5 @@ adenaAmount += _taxAmount; // do not forget tax if (adenaAmount > 0) - _ingredients.add(new Ingredient(ADENA_ID, adenaAmount, false, false)); + _ingredients.add(new Ingredient(ADENA_ID, adenaAmount,0, false, false)); Ingredient.java @@ -30,4 +30,5 @@ private int _itemId; private long _itemCount; + private int _EnchantmentLevel; private boolean _isTaxIngredient, _maintainIngredient; @@ -35,8 +36,9 @@ private ItemInfo _itemInfo = null; - public Ingredient(int itemId, long itemCount, boolean isTaxIngredient, boolean maintainIngredient) + public Ingredient(int itemId, long itemCount,int EnchantmentLevel, boolean isTaxIngredient, boolean maintainIngredient) { _itemId = itemId; _itemCount = itemCount; + _EnchantmentLevel = EnchantmentLevel; _isTaxIngredient = isTaxIngredient; _maintainIngredient = maintainIngredient; @@ -80,5 +82,5 @@ public final int getEnchantLevel() { - return _itemInfo != null ? _itemInfo.getEnchantLevel() : 0; + return _itemInfo == null?_EnchantmentLevel:_itemInfo.getEnchantLevel(); } MultiSell.java @@ -270,4 +270,8 @@ if ("ingredient".equalsIgnoreCase(n.getNodeName())) { + int enchantmentLevel = 0; + if (n.getAttributes().getNamedItem("enchantmentLevel") != null) + enchantmentLevel = Integer.parseInt(n.getAttributes().getNamedItem("enchantmentLevel").getNodeValue()); + int id = Integer.parseInt(n.getAttributes().getNamedItem("id").getNodeValue()); long count = Long.parseLong(n.getAttributes().getNamedItem("count").getNodeValue()); @@ -286,12 +290,16 @@ mantainIngredient = false; - entry.addIngredient(new Ingredient(id, count, isTaxIngredient, mantainIngredient)); + entry.addIngredient(new Ingredient(id, count, enchantmentLevel, isTaxIngredient, mantainIngredient)); } else if ("production".equalsIgnoreCase(n.getNodeName())) { + int enchantmentLevel = 0; + if (n.getAttributes().getNamedItem("enchantmentLevel") != null) + enchantmentLevel = Integer.parseInt(n.getAttributes().getNamedItem("enchantmentLevel").getNodeValue()); + int id = Integer.parseInt(n.getAttributes().getNamedItem("id").getNodeValue()); long count = Long.parseLong(n.getAttributes().getNamedItem("count").getNodeValue()); - entry.addProduct(new Ingredient(id, count, false, false)); + entry.addProduct(new Ingredient(id, count, enchantmentLevel, false, false)); } } And put this: <production id="10452" count="1" enchantmentLevel="16"/> GOOD LUCK!
  22. Buy L2jReunion.. Good mods for High & Mass PvP Server.. =D
×
×
  • Create New...