Jump to content

stalker66

Members
  • Posts

    24
  • Credits

  • Joined

  • Last visited

  • Feedback

    0%

Everything posted by stalker66

  1. So apparently this is the error it throws now... even though it worked. Now for some reason, it wont return any item from the players inventory at all. Bad RequestBypassToServer: java.lang.NullPointerException java.lang.NumberFormatException: For input string: "" at java.base/java.lang.NumberFormatException.forInputString(NumberFormatException.java:68) at java.base/java.lang.Integer.parseInt(Integer.java:662) at java.base/java.lang.Integer.parseInt(Integer.java:770) at org.l2jmobius.gameserver.model.actor.instance.L2CraftManagerInstance.onBypassFeedback(L2CraftManagerInstance.java:69) at org.l2jmobius.gameserver.network.clientpackets.RequestBypassToServer.runImpl(RequestBypassToServer.java:526) at org.l2jmobius.gameserver.network.clientpackets.GameClientPacket.run(GameClientPacket.java:55) at org.l2jmobius.gameserver.network.GameClient.run(GameClient.java:837) at org.l2jmobius.commons.concurrent.RunnableWrapper.run(RunnableWrapper.java:38) at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1130) at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:630) at java.base/java.lang.Thread.run(Thread.java:832)
  2. Hello, I know this is an old post, but maybe someone with experience and is willing to help me out to implement a pagination for the achievement list? Since it does not have one, having a lot of achievements in a single page is bothersome. Thank you in advance for anyone who can help me.
  3. Hy guys, I have a problem with the pet equipment on my interlude server. The pets work, they can be summoned, leveled, attacked with, but cannot equip any pet items on them. I put the items in the pet inventory, double click it and it says : "Your pet cannot carry this item". It won't activate with that green border around the item. And after that, the item becomes unequipable from the pet. To retrieve the item, i must unsummon the pet. There are no errors in the gamerserver or in the log files. Also, the pack i am using is the latest from L2jmobius. Maybe someone had this issue and might be able to help me. Thanks!
  4. Hello guys and Happy New Year! I am trying to make a custom soulshot for my Interlude server. I created the new item ID in the core, skill table, item table, and did the client side icon aswell. The soulshot works, partially. It activates ONLY if the user left clicks it after each attack, the auto-use of the soulshot isn't working(right click on the shortcut bar). The standard ones work, no problem, but the custom one i created will work only manually, no errors in the db. Question is, is the auto-use items a client side feature or not? Because i kept searching the core, and I didn't find anything. Thanks!
  5. So, first of all, this interface is one the best ones out there. Its simple and elegant. But there is one annoying bug that persists and each release. That is the floating damage bug, where if the player has a high attack speed, or is damaging more mobs at the same time (with pole) the damage stucks to the screen, and can only be fixed with a client shut down. Is there an updated version where this bug is fixed? Also i checked the l2 logs for the error and this is what pops up with the damage. See picture below.
  6. Send us your code you are using if you want us to help you. Its most likely you changed something in it.
  7. Hi guys. Short question. How could I disable the champion spawn for certain monsters with a certain title? The monster type is L2Monster, and the title is MonsterSpawn. Would it be possible to exclude these mobs to be transformed into a champion mob? if (Config.L2JMOD_CHAMPION_ENABLE) { // Set champion on next spawn if (!(this instanceof L2GrandBossInstance) && !(this instanceof L2RaidBossInstance) && !(this instanceof L2ChestInstance) && !(getTemplate().title.contentEquals("MonsterSpawn") && (this instanceof L2MonsterInstance) && (Config.L2JMOD_CHAMPION_FREQUENCY > 0) && (getLevel() >= Config.L2JMOD_CHAMP_MIN_LVL) && (getLevel() <= Config.L2JMOD_CHAMP_MAX_LVL))) { final int random = Rnd.get(100); if (random < Config.L2JMOD_CHAMPION_FREQUENCY) { setChampion(true); } } } As you can see I tried with the getTemplte.title but I doesn't work. Any help or hint would be great. Thanks!
  8. Thanks guys! It worked. I used the solution from @melron. Thanks a bunch!
  9. Hi guys. I have just one question regarding core side and using the SQL statements to update/insert datas into the database. How could i implement the following query when a new character is created? ("UPDATE characters SET botprev_fail_account = (SELECT botprev_fail_account FROM accounts WHERE account_name=login") I want that the new character that's created on the same account to have the botprev_fail_account value taken from the ACCOUNTS table and inserted into botprev_fail_account from CHARACTERS table. The account_name and login have the same value. The following code that i tried doesn't work: try (Connection con2 = DatabaseFactory.getConnection()) { PreparedStatement statement2 = con2.prepareStatement("UPDATE characters SET botprev_fail_account = (SELECT botprev_fail_account FROM accounts WHERE account_name=?"); statement2.setString(1, _accountName); statement2.executeUpdate(); statement2.close(); }
  10. Hi guys. Quick question for you. How can I change from a static int list with mob ID's in the core, into a normal list, that can be modified in a .cfg file by anyone without messing with the core? From this: public List<L2Spawn> _MonsterSpawn = new ArrayList<L2Spawn>(); static int[] mobs = { 21162, 21253, 21184, 21205, 21163, 21254, 21206, 21185, 21255, 21207, 21165, 21186 }; To be read from a .cfg file like this: MobIds = 21162,21253,21184,21205,21163,21254,21206,21185,21255,21207,21165,21186 Basically, I want to load the information what mob ID from the cfg file, and not from the core. Thanks!
  11. Ok so, i managed to use this bot protection on my server. It works, 50%. As far as i can tell. it works ONYL for mage class characters. If I play with a melee fighter, the protection doesnt kick in. Whats that about? O.o Update: Sorry for double post.. And i did some more testing, and it seems the system isnt working as long as you kill monsters with MELEE hits...if you use ranged attacks, it works fine. Its not class or race related. Its strictly to ranged attacks only (mages and archers work 100%) any other type thats melee wont trigger the system.
  12. So after a long and painful testing and searching the core what might cause this bug, i finally caught the little bastard. My knowledge in coding is mediocre at best, but i still managed to fix the problem. In the java file gameserver/model/actor/stat/CharStat.java is where the speed is calculated. I compared this file with an older core i have and noticed a small difference: This is the bugged code: public final float getMovementSpeedMultiplier() { if (_activeChar == null) { return 1; } return getRunSpeed() / _activeChar.getTemplate().baseRunSpd; } And this is the fixed code: public final float getMovementSpeedMultiplier() { if (_activeChar == null) { return 1; } return (getRunSpeed() * 1f) / _activeChar.getTemplate().baseRunSpd; } As you can see, the getRunSpeed function was missing this character * 1f. Not sure what it does, but my guess would be it rounds up the final value. I might be wrong. Either way, its fixed now. Thanks for the advice.
  13. So, regarding your question I did some testing with a Human Fighter (no speed boost). Base run speed 126. If i buff with WW lv2, thats +33 speed, totaling at 159 (ok). Adding Quick Step passive lv2, thats +11 speed, totaling at 170. Equipping the DC robe set that gives +7 speed, totaling at 177. As you can see, I can increase the speed as much as I want, and its correct. Now, with 177 speed, if i activate Parry Stance which is -10% off the basic runspeed (126-10% = 12.6) (<mul order="0x30" stat="runSpd" val="0.9"/>) it gives me 164 run speed which is correct again. But, after several tests, i came to the conclusion that the speed decrease is working until the runspeed reaches 115. If the value goes below, it turns to 0. I just don't get it why...In the SQL table at the char_templates, the MOVE_SPEED is 115. This is one weird bug to be honest...
  14. Hi guys, So recently i did a new IL server for our small group, and i noticed that there is a bug regarding speed. If the characters base runspeed is standard, and you toggle/buff with a certain buff that reduces the speed temporarily, the runspeed goes down to 0 until you cancel that skill. I recompiled my server, checked the skills settings for the runspeed reduction, checked the core settings for the formula calculations, the problem still persists. The only solution i found that works is if i increase the base runspeed by 30, but this isn't a fix. Any ideas why? Here is the link to a short gif to see whats happening: SpeedBug.gif
  15. Yes, but I have the pages set, a max of 6 items/ page, problem is when you check the items and go over the 21 checkboxes ticked, then it crashes. But I will check out the acis, thanks for the hint.
  16. Thanks SweeTs! Im sorry for the late response, I just didn't have time to test it! But I did now and its works! Thanks a bunch! On the other hand, I encountered a problem with this code. As it seems if a player selects more than 21 items to crystallise, the game client crashes with the following error. My guess is it has to do with the limitations of the html files but im not sure. My question, is there a way I can limit the number of items the player can select? If its possible, I would appreciate any help. Here is a link to the Craft Manager in works: Crystallize.gif Crafting.gif
  17. Hi guys. I am sharing an older code for Interlude with what i have a small issue. This is the Craft Manager what i recently managed to make it work. The code works fine, except for a little detail. This code loads up the items that are eligible for crystallization from D grade up to A grade. Problem is it loads up the items that are equipped aswell. How can i bypass it so it will ignore those items on the character so the user wont accidentally crystallize the equipped gear. My knowledge for this is mediocre at best, and i tried multiple aproches and have come up with nothing. Any help is appreciated. Thanks! Here is the updated code for the Craft Manager for anyone who wants to use it. The only known issue so far, is the one on my 2nd post with the item selection crash after a certain amount. package com.l2jmobius.gameserver.model.actor.instance; import java.util.ArrayList; import java.util.StringTokenizer; import com.l2jmobius.Config; import com.l2jmobius.commons.util.Rnd; import com.l2jmobius.gameserver.datatables.csv.RecipeTable; import com.l2jmobius.gameserver.datatables.sql.IconTable; import com.l2jmobius.gameserver.datatables.xml.ItemTable; import com.l2jmobius.gameserver.model.Inventory; import com.l2jmobius.gameserver.model.L2RecipeList; import com.l2jmobius.gameserver.model.multisell.L2Multisell; import com.l2jmobius.gameserver.network.SystemMessageId; import com.l2jmobius.gameserver.network.serverpackets.InventoryUpdate; import com.l2jmobius.gameserver.network.serverpackets.NpcHtmlMessage; import com.l2jmobius.gameserver.network.serverpackets.SystemMessage; import com.l2jmobius.gameserver.templates.chars.L2NpcTemplate; import com.l2jmobius.gameserver.templates.item.L2EtcItemType; import com.l2jmobius.gameserver.templates.item.L2Item; public class L2CraftManagerInstance extends L2MerchantInstance { public static final int ADENA_ID = 57; public static final int ITEMS_PER_PAGE = 6; // items list size in craft and crystallize pages public L2CraftManagerInstance(int objectId, L2NpcTemplate template) { super(objectId, template); } @Override public void onBypassFeedback(L2PcInstance player, String command) { if (command.startsWith("multisell")) { L2Multisell.getInstance().generateMultiSell(Integer.parseInt(command.substring(9).trim()), player, false, this); } else if (command.startsWith("Crystallize")) // List player inventory items for crystallization { int _pageId; ArrayList<Integer> _itemsSelected = new ArrayList<>(); Inventory _inventory = player.getInventory(); StringTokenizer st = new StringTokenizer(command.substring(11).trim()); try { if (st.countTokens() > 1) { _pageId = Integer.parseInt(st.nextToken()); while (st.hasMoreTokens()) { int _itemObjId = Integer.parseInt(st.nextToken()); if ((_inventory.getItemByObjectId(_itemObjId) != null) && (!_itemsSelected.contains(_itemObjId))) { _itemsSelected.add(_itemObjId); } } } else { _pageId = Integer.parseInt(command.substring(11).trim()); } } catch (NumberFormatException e) { _pageId = 0; } ArrayList<Integer> _items = new ArrayList<>(); int _priceTotal = 0; ArrayList<Integer> _crystals = new ArrayList<>(); _crystals.add(0, 0); _crystals.add(1, 0); _crystals.add(2, 0); _crystals.add(3, 0); _crystals.add(4, 0); _crystals.add(5, 0); for (L2ItemInstance _item : _inventory.getItems()) { if (!_item.isStackable() && (_item.getLocation() != L2ItemInstance.ItemLocation.PAPERDOLL) && (_item.getItem().getCrystalType() != L2Item.CRYSTAL_NONE) && (_item.getItem().getCrystalCount() > 0)) { _items.add(_item.getObjectId()); if (_itemsSelected.contains(_item.getObjectId())) { int _count = _crystals.get(_item.getItem().getCrystalType()) + _item.getCrystalCount(); _crystals.set(_item.getItem().getCrystalType(), _count); int _crystalId = 1457 + _item.getItem().getCrystalType(); int _price = (int) ((Config.ALT_CRAFT_PRICE * _count * ItemTable.getInstance().getTemplate(_crystalId).getReferencePrice()) / 55); if (_price == 0) { _price = Config.ALT_CRAFT_DEFAULT_PRICE; } _priceTotal += _price; } } } if (_items.size() == 0) { sendOutOfItems(player, "at least one", "breakable item"); return; } int _itemsOnPage = ITEMS_PER_PAGE; int _pages = _items.size() / _itemsOnPage; if (_items.size() > (_pages * _itemsOnPage)) { _pages++; } if (_pageId > _pages) { _pageId = _pages; } int _itemStart = _pageId * _itemsOnPage; int _itemEnd = _items.size(); if ((_itemEnd - _itemStart) > _itemsOnPage) { _itemEnd = _itemStart + _itemsOnPage; } String _elementsSelected = ""; for (int i = 0; i < _itemsSelected.size(); i++) { _elementsSelected += " " + _itemsSelected.get(i); } NpcHtmlMessage npcReply = new NpcHtmlMessage(1); StringBuilder replyMSG = new StringBuilder("<html><body>"); replyMSG.append("<center>Items to Crystallize</center>"); replyMSG.append("<img src=\"L2UI.SquareWhite\" width=300 height=1> <img src=\"L2UI.SquareBlank\" width=1 height=3>"); replyMSG.append("<table width=270><tr>"); replyMSG.append("<td width=66><button value=\"Back\" action=\"bypass -h npc_" + getObjectId() + ((_pageId == 0) ? "_Chat 0" : "_Crystallize ") + (_pageId - 1) + _elementsSelected + "\" width=65 height=19 back=\"L2UI_ch3.smallbutton2_over\" fore=\"L2UI_ch3.smallbutton2\"></td>"); replyMSG.append("<td width=138></td>"); replyMSG.append("<td width=66>" + (((_pageId + 1) < _pages) ? "<button value=\"Next\" action=\"bypass -h npc_" + getObjectId() + "_Crystallize " + (_pageId + 1) + _elementsSelected + "\" width=65 height=19 back=\"L2UI_ch3.smallbutton2_over\" fore=\"L2UI_ch3.smallbutton2\">" : "") + "</td>"); replyMSG.append("</tr></table>"); replyMSG.append("<br>"); replyMSG.append("<table width=270><tr>"); if (Config.ALT_CRAFT_ALLOW_CRYSTALLIZE) { replyMSG.append("<td width=35><button value=\"\" action=\"bypass -h npc_" + getObjectId() + "_BreakItem" + _elementsSelected + "\" width=32 height=32 back=\"icon.skill0248\" fore=\"icon.skill0248\"></td>"); replyMSG.append("<td width=135>"); replyMSG.append("<table border=0 width=100%>"); replyMSG.append("<tr><td><font color=\"B09878\">Crystallize</font></td></tr>"); replyMSG.append("<tr><td><font color=\"B09878\">selected items " + (_itemsSelected.size() == 0 ? "" : "(" + _itemsSelected.size() + ")") + "</font></td></tr></table></td>"); replyMSG.append("<td width=100>"); replyMSG.append("<table border=0 width=100%>"); replyMSG.append("<tr><td><font color=\"A2A0A2\">Total price:</font></td></tr>"); replyMSG.append("<tr><td><font color=\"B09878\">" + _priceTotal + " Adena</font></td></tr></table></td>"); } replyMSG.append("</tr></table><br>"); for (int i = _itemStart; i < _itemEnd; i++) { L2ItemInstance _item = _inventory.getItemByObjectId(_items.get(i)); if (_item == null) { continue; } int _crystalId = 1457 + _item.getItem().getCrystalType(); String _crystal = _item.getItem().getCrystalType() == 1 ? "D" : _item.getItem().getCrystalType() == 2 ? "C" : _item.getItem().getCrystalType() == 3 ? "B" : _item.getItem().getCrystalType() == 4 ? "A" : _item.getItem().getCrystalType() == 5 ? "S" : "S"; int _count = _item.getCrystalCount(); int _price = (int) ((Config.ALT_CRAFT_PRICE * _count * ItemTable.getInstance().getTemplate(_crystalId).getReferencePrice()) / 55); if (_price == 0) { _price = Config.ALT_CRAFT_DEFAULT_PRICE; } replyMSG.append("<img src=\"L2UI.SquareWhite\" width=300 height=1> <img src=\"L2UI.SquareBlank\" width=1 height=1>"); replyMSG.append("<table width=300 bgcolor=000000><tr>"); replyMSG.append("<td width=44 height=41 align=center><table bgcolor=FFFFFF cellpadding=6 cellspacing=\"-5\"><tr><td><button width=32 height=32 back=" + IconTable.getIcon(_item.getItemId()) + " fore=" + IconTable.getIcon(_item.getItemId()) + "></td></tr></table></td>"); replyMSG.append("<td width=240 height=20>"); replyMSG.append("<table border=0 width=100%>"); replyMSG.append("<tr><td><font color=\"A2A0A2\">" + ItemTable.getInstance().getTemplate(_item.getItemId()).getName() + (_item.getEnchantLevel() == 0 ? "" : " +" + _item.getEnchantLevel()) + "</font></td></tr>"); replyMSG.append("<tr><td><font color=\"A2A0A2\">" + _crystal + " Crystals:</font> <font color=\"B09878\">" + _count + "</font></td></tr></table></td>"); if (Config.ALT_CRAFT_ALLOW_CRYSTALLIZE) { if (_itemsSelected.contains(_items.get(i))) { replyMSG.append("<td valign=center width=20><button value=\"\" action=\"bypass -h npc_" + getObjectId() + "_Crystallize " + _pageId + _elementsSelected.replace(" " + _items.get(i).toString(), "") + "\" width=16 height=16 back=\"L2UI.CheckBox_checked\" fore=\"L2UI.CheckBox_checked\"></td>"); } else { replyMSG.append("<td valign=center width=20><button value=\"\" action=\"bypass -h npc_" + getObjectId() + "_Crystallize " + _pageId + " " + _items.get(i).toString() + _elementsSelected + "\" width=16 height=16 back=\"L2UI.CheckBox\" fore=\"L2UI.CheckBox\"></td>"); } } else { replyMSG.append("<td valign=center width=20></td>"); } replyMSG.append("</tr></table>"); } replyMSG.append("</body></html>"); npcReply.setHtml(replyMSG.toString()); player.sendPacket(npcReply); } else if (command.startsWith("BreakItem") && Config.ALT_CRAFT_ALLOW_CRYSTALLIZE) // Crystallize selected items { ArrayList<Integer> _itemsSelected = new ArrayList<>(); Inventory _inventory = player.getInventory(); StringTokenizer st = new StringTokenizer(command.substring(9).trim()); try { while (st.hasMoreTokens()) { int _itemObjId = Integer.parseInt(st.nextToken()); if ((_inventory.getItemByObjectId(_itemObjId) != null) && (!_itemsSelected.contains(_itemObjId))) { _itemsSelected.add(_itemObjId); } } } catch (NumberFormatException e) { } if (_itemsSelected.size() == 0) { sendOutOfItems(player, "at least one", "breakable items"); return; } int _priceTotal = 0; ArrayList<Integer> _crystals = new ArrayList<>(); _crystals.add(0, 0); _crystals.add(1, 0); _crystals.add(2, 0); _crystals.add(3, 0); _crystals.add(4, 0); _crystals.add(5, 0); for (int i = 0; i < _itemsSelected.size(); i++) { L2ItemInstance _item = _inventory.getItemByObjectId(_itemsSelected.get(i)); if ((_item != null) && (_item.getOwnerId() == player.getObjectId()) && !_item.isStackable() && (_item.getItem().getCrystalType() != L2Item.CRYSTAL_NONE) && (_item.getItem().getCrystalCount() > 0) && (i < _itemsSelected.size())) { int _count = _crystals.get(_item.getItem().getCrystalType()) + _item.getCrystalCount(); _crystals.set(_item.getItem().getCrystalType(), _count); int _crystalId = 1457 + _item.getItem().getCrystalType(); int _price = (int) ((Config.ALT_CRAFT_PRICE * _count * ItemTable.getInstance().getTemplate(_crystalId).getReferencePrice()) / 55); if (_price == 0) { _price = Config.ALT_CRAFT_DEFAULT_PRICE; } _priceTotal += _price; } else { _itemsSelected.remove(i); } } if (_inventory.getInventoryItemCount(ADENA_ID, 0) < _priceTotal) { sendOutOfItems(player, Integer.toString(_priceTotal), "Adena"); return; } InventoryUpdate iu = new InventoryUpdate(); player.destroyItemByItemId("CraftManager", ADENA_ID, _priceTotal, player, true); iu.addModifiedItem(player.getInventory().getItemByItemId(ADENA_ID)); for (int i = 0; i < _itemsSelected.size(); i++) { L2ItemInstance _item = _inventory.getItemByObjectId(_itemsSelected.get(i)); if ((_item != null) && (_item.getOwnerId() == player.getObjectId()) && !_item.isStackable() && (_item.getItem().getCrystalType() != L2Item.CRYSTAL_NONE) && (_item.getItem().getCrystalCount() > 0)) { if (_item.isEquipped()) { L2ItemInstance[] unequiped = player.getInventory().unEquipItemInSlotAndRecord(_item.getEquipSlot()); if (_item.isEquipped()) { for (L2ItemInstance element : unequiped) { iu.addModifiedItem(element); } } } player.destroyItem("CraftManager", _itemsSelected.get(i), 1, player, true); iu.addModifiedItem(player.getInventory().getItemByObjectId(_itemsSelected.get(i))); } } for (int i = 0; i < _crystals.size(); i++) { if (_crystals.get(i) > 0) { int _crystalId = 1457 + i; SystemMessage sm = null; sm = new SystemMessage(SystemMessageId.EARNED_S2_S1_S); sm.addItemName(_crystalId); sm.addNumber(_crystals.get(i)); player.sendPacket(sm); _inventory.addItem("CraftManager", _crystalId, _crystals.get(i), player, player.getTarget()); iu.addModifiedItem(player.getInventory().getItemByItemId(_crystalId)); } } player.sendPacket(iu); player.broadcastUserInfo(); } else if (command.startsWith("Manufacture")) // List recipes from player inventory { int _pageId; try { _pageId = Integer.parseInt(command.substring(11).trim()); } catch (NumberFormatException e) { _pageId = 0; } Inventory _inventory = player.getInventory(); ArrayList<Integer> _recipes = new ArrayList<>(); for (L2ItemInstance _item : _inventory.getItems()) { if (_item.getItemType() == L2EtcItemType.RECEIPE) { L2RecipeList _recipe = RecipeTable.getInstance().getRecipeByItemId(_item.getItemId()); if (_recipe != null) { _recipes.add(_item.getObjectId()); } } } if (_recipes.size() == 0) { sendOutOfItems(player, "at least one", "recipe"); return; } int _itemsOnPage = ITEMS_PER_PAGE; int _pages = _recipes.size() / _itemsOnPage; if (_recipes.size() > (_pages * _itemsOnPage)) { _pages++; } if (_pageId > _pages) { _pageId = _pages; } int _itemStart = _pageId * _itemsOnPage; int _itemEnd = _recipes.size(); if ((_itemEnd - _itemStart) > _itemsOnPage) { _itemEnd = _itemStart + _itemsOnPage; } NpcHtmlMessage npcReply = new NpcHtmlMessage(1); StringBuilder replyMSG = new StringBuilder("<html><body>"); replyMSG.append("<center>List of Recipes</center>"); replyMSG.append("<img src=\"L2UI.SquareWhite\" width=300 height=1> <img src=\"L2UI.SquareBlank\" width=1 height=3>"); replyMSG.append("<br1>"); replyMSG.append("<center><font color=\"FFFF00\">To craft multiple items first press </center></font>"); replyMSG.append("<br1>"); replyMSG.append("<center><font color=\"FFFF00\">CALCULATE to see if you have the required amount!</center></font>"); replyMSG.append("<table width=270><tr>"); replyMSG.append("<td width=66><button value=\"Back\" action=\"bypass -h npc_" + getObjectId() + ((_pageId == 0) ? "_Chat 0" : "_Manufacture ") + (_pageId - 1) + "\" width=65 height=19 back=\"L2UI_ch3.smallbutton2_over\" fore=\"L2UI_ch3.smallbutton2\"></td>"); replyMSG.append("<td width=138></td>"); replyMSG.append("<td width=66>" + (((_pageId + 1) < _pages) ? "<button value=\"Next\" action=\"bypass -h npc_" + getObjectId() + "_Manufacture " + (_pageId + 1) + "\" width=65 height=19 back=\"L2UI_ch3.smallbutton2_over\" fore=\"L2UI_ch3.smallbutton2\">" : "") + "</td>"); replyMSG.append("</tr></table>"); replyMSG.append("<br>"); replyMSG.append("<img src=\"L2UI.SquareWhite\" width=300 height=1> <img src=\"L2UI.SquareBlank\" width=1 height=1>"); for (int i = _itemStart; i < _itemEnd; i++) { L2ItemInstance _recipe = _inventory.getItemByObjectId(_recipes.get(i)); if (_recipe == null) { continue; } L2RecipeList _recipeList = RecipeTable.getInstance().getRecipeByItemId(_recipe.getItemId()); if (_recipeList == null) { continue; } boolean _isConsumable = ItemTable.getInstance().getTemplate(_recipeList.getItemId()).isConsumable(); int _price = (int) ((((Config.RATE_CRAFT_COST * _recipeList.getSuccessRate()) / 100) * ItemTable.getInstance().getTemplate(_recipeList.getItemId()).getReferencePrice()) / 55); if (_price == 0) { _price = Config.ALT_CRAFT_DEFAULT_PRICE; } L2Item item = ItemTable.getInstance().getTemplate(_recipe.getItemId()); String name = item.getName(); if (name.startsWith("Recipe: ")) { name = "R: " + name.substring(8); } String _recipeIcon = IconTable.getIcon(item.getItemId()); replyMSG.append("<table width=300 bgcolor=000000><tr>"); replyMSG.append("<td valign=top width=35><button value=\"\" action=\"bypass -h npc_" + getObjectId() + "_CraftInfo " + _recipes.get(i) + " 1 " + _pageId + "\" width=32 height=32 back=\"" + _recipeIcon + "\" fore=\"" + _recipeIcon + "\"></td>"); replyMSG.append("<td valign=top width=235>"); replyMSG.append("<td valign=center width=320 height=20>"); replyMSG.append("<table border=0 width=100%>"); replyMSG.append("<tr><td><font color=\"FFFF00\">" + name + "</font></td></tr>"); replyMSG.append("<tr><td><font color=\"A2A0A2\">Product:</font> <font color=\"B09878\">" + (_isConsumable ? _recipeList.getCount() + " " : "") + ItemTable.getInstance().getTemplate(_recipeList.getItemId()).getName() + "</font></td></tr></table></td>"); replyMSG.append("</tr></table>"); replyMSG.append("<img src=\"L2UI.SquareWhite\" width=300 height=1> <img src=\"L2UI.SquareBlank\" width=1 height=1>"); replyMSG.append("<br1>"); } replyMSG.append("</body></html>"); npcReply.setHtml(replyMSG.toString()); player.sendPacket(npcReply); } else if (command.startsWith("CraftInfo")) // Show information about choosen recipe { int _recipeObjId = 0; int _pageId = 0; int _quantity = 1; StringTokenizer st = new StringTokenizer(command.substring(9).trim()); try { if (st.countTokens() > 2) { _recipeObjId = Integer.parseInt(st.nextToken()); _quantity = Integer.parseInt(st.nextToken()); } else { _recipeObjId = Integer.parseInt(st.nextToken()); } _pageId = Integer.parseInt(st.nextToken()); } catch (NumberFormatException e) { } Inventory _inventory = player.getInventory(); L2ItemInstance _recipe = _inventory.getItemByObjectId(_recipeObjId); L2RecipeList _recipeList = RecipeTable.getInstance().getRecipeByItemId(_recipe.getItemId()); boolean _isConsumable = ItemTable.getInstance().getTemplate(_recipeList.getItemId()).isConsumable(); if ((_recipe.getOwnerId() == player.getObjectId()) && (_recipe.getItemType() == L2EtcItemType.RECEIPE)) { int _price = (int) ((((Config.RATE_CRAFT_COST * _recipeList.getSuccessRate()) / 100) * _quantity * (_isConsumable ? _recipeList.getCount() : 1) * ItemTable.getInstance().getTemplate(_recipeList.getItemId()).getReferencePrice()) / 55); if (_price == 0) { _price = Config.ALT_CRAFT_DEFAULT_PRICE; } L2Item item = ItemTable.getInstance().getTemplate(_recipe.getItemId()); String name = item.getName(); if (name.startsWith("Recipe: ")) { name = "R: " + name.substring(8); } NpcHtmlMessage npcReply = new NpcHtmlMessage(1); StringBuilder replyMSG = new StringBuilder("<html><body>"); replyMSG.append("<center>Craft Info</center>"); replyMSG.append("<img src=\"L2UI.SquareWhite\" width=300 height=1> <img src=\"L2UI.SquareBlank\" width=1 height=3>"); replyMSG.append("<table width=270><tr>"); replyMSG.append("<td width=66><button value=\"Back\" action=\"bypass -h npc_" + getObjectId() + "_Manufacture " + _pageId + "\" width=65 height=19 back=\"L2UI_ch3.smallbutton2_over\" fore=\"L2UI_ch3.smallbutton2\"></td>"); replyMSG.append("<td width=138></td>"); replyMSG.append("<td width=66></td>"); replyMSG.append("</tr></table>"); replyMSG.append("<br>"); replyMSG.append("<table width=270><tr>"); if ((_recipeList.isDwarvenRecipe() && Config.ALT_CRAFT_ALLOW_CRAFT) || (!_recipeList.isDwarvenRecipe() && Config.ALT_CRAFT_ALLOW_COMMON)) { replyMSG.append("<td valign=top width=35><button value=\"\" action=\"bypass -h npc_" + getObjectId() + "_CraftItem " + _recipeObjId + " " + _quantity + "\" width=32 height=32 back=\"icon.skill0172\" fore=\"icon.skill0172\"></td>"); } else { replyMSG.append("<td valign=top width=35><img src=icon.skill0172 width=32 height=32 align=left></td>"); } replyMSG.append("<td valign=top width=235>"); replyMSG.append("<table border=0 width=100%>"); replyMSG.append("<tr><td><font color=\"FFFF00\">" + name + "</font></td></tr>"); replyMSG.append("<tr><td><font color=\"A2A0A2\">Product:</font> <font color=\"B09878\">" + (_isConsumable ? (_recipeList.getCount() * _quantity) + " * " : _quantity > 1 ? _quantity : "") + " " + ItemTable.getInstance().getTemplate(_recipeList.getItemId()).getName() + "</font></td></tr>"); if ((_recipeList.isDwarvenRecipe() && Config.ALT_CRAFT_ALLOW_CRAFT) || (!_recipeList.isDwarvenRecipe() && Config.ALT_CRAFT_ALLOW_COMMON)) { replyMSG.append("<tr><td><font color=\"A2A0A2\">Price:</font> <font color=\"B09878\">" + _price + " Adena</font></td></tr></table></td>"); } else { replyMSG.append("<tr><td></td></tr></table></td>"); } replyMSG.append("</tr></table>"); replyMSG.append("<br>"); replyMSG.append("<center>"); replyMSG.append("<table width=210>"); replyMSG.append("<tr><td valign=top width=70><font color=\"B09878\">Enter quantity:</font></td><td></td></tr>"); replyMSG.append("<tr><td valign=top width=70><edit var=\"quantity\" width=70></td>"); replyMSG.append("<td valign=top width=70><button value=\"Calculate\" action=\"bypass -h npc_" + getObjectId() + "_CraftInfo " + _recipeObjId + " $quantity " + _pageId + "\" width=65 height=19 back=\"L2UI_ch3.smallbutton2_over\" fore=\"L2UI_ch3.smallbutton2\"></td>"); replyMSG.append("</tr></table>"); replyMSG.append("</center>"); replyMSG.append("<br>"); replyMSG.append("<br>"); replyMSG.append("<table width=270><tr>"); replyMSG.append("<td width=220><button value=\"Ingredients\" width=60 height=21 back=\"botaoes1.s04_over\" fore=\"botaoes1.s04_over\"</td>"); // width=120 height=21 back=\"botaoes1.s03_over\" fore=\"botaoes1.s03\">" replyMSG.append("<td width=50><button value=\"Quantity\" width=60 height=21 back=\"botaoes1.s04_over\" fore=\"botaoes1.s04_over\"</td></tr>"); L2RecipeInstance[] _recipeItems = _recipeList.getRecipes(); for (L2RecipeInstance _recipeItem : _recipeItems) { L2ItemInstance _item = _inventory.getItemByItemId(_recipeItem.getItemId()); String _quantityState = "<font color=\"55FF55\">" + (_quantity * _recipeItem.getQuantity()) + "</font>"; if ((_item == null) || (_item.getCount() < (_quantity * _recipeItem.getQuantity()))) { _quantityState = "<font color=\"FF5555\">" + (int) (_quantity * _recipeItem.getQuantity() * Config.ALT_RATE_CRAFT_COST) + "</font>"; } replyMSG.append("<tr><td width=220>" + ItemTable.getInstance().getTemplate(_recipeItem.getItemId()).getName() + "</td>"); replyMSG.append("<td width=50>" + _quantityState + "</td></tr>"); } replyMSG.append("</table>"); replyMSG.append("</body></html>"); npcReply.setHtml(replyMSG.toString()); player.sendPacket(npcReply); } } else if (command.startsWith("CraftItem") && (Config.ALT_CRAFT_ALLOW_CRAFT || Config.ALT_CRAFT_ALLOW_COMMON)) // Craft amount of items using selected recipe { int _recipeObjId = 0; int _quantity = 1; StringTokenizer st = new StringTokenizer(command.substring(9).trim()); if (st.countTokens() != 2) { return; } try { _recipeObjId = Integer.parseInt(st.nextToken()); _quantity = Integer.parseInt(st.nextToken()); } catch (NumberFormatException e) { } Inventory _inventory = player.getInventory(); L2ItemInstance _recipe = _inventory.getItemByObjectId(_recipeObjId); L2RecipeList _recipeList = RecipeTable.getInstance().getRecipeByItemId(_recipe.getItemId()); boolean _isConsumable = ItemTable.getInstance().getTemplate(_recipeList.getItemId()).isConsumable(); if ((_recipe.getOwnerId() == player.getObjectId()) && (_recipe.getItemType() == L2EtcItemType.RECEIPE) && ((_recipeList.isDwarvenRecipe() && Config.ALT_CRAFT_ALLOW_CRAFT) || (!_recipeList.isDwarvenRecipe() && Config.ALT_CRAFT_ALLOW_COMMON))) { L2RecipeInstance[] _recipeItems = _recipeList.getRecipes(); boolean _enoughtMaterials = true; for (L2RecipeInstance _recipeItem : _recipeItems) { L2ItemInstance _item = _inventory.getItemByItemId(_recipeItem.getItemId()); if ((_item == null) || (_item.getCount() < (int) (_quantity * _recipeItem.getQuantity() * Config.ALT_RATE_CRAFT_COST))) { _enoughtMaterials = false; } } int _price = (int) ((((Config.RATE_CRAFT_COST * _recipeList.getSuccessRate()) / 100) * _quantity * _recipeList.getCount() * ItemTable.getInstance().getTemplate(_recipeList.getItemId()).getReferencePrice()) / 55); if (_price == 0) { _price = Config.ALT_CRAFT_DEFAULT_PRICE; } if (_inventory.getInventoryItemCount(ADENA_ID, 0) < _price) { sendOutOfItems(player, Integer.toString(_price), "Adena"); return; } if (!_enoughtMaterials) { sendOutOfItems(player, "proper amount", "materials"); return; } int _quantitySuccess = 0; for (int i = 0; i < _quantity; i++) { if (Rnd.get(100) < _recipeList.getSuccessRate()) { _quantitySuccess++; } } InventoryUpdate iu = new InventoryUpdate(); for (L2RecipeInstance _recipeItem : _recipeItems) { player.destroyItemByItemId("CraftManager", _recipeItem.getItemId(), (int) (_quantity * _recipeItem.getQuantity() * Config.ALT_RATE_CRAFT_COST), player, true); iu.addModifiedItem(player.getInventory().getItemByItemId(_recipeItem.getItemId())); } player.destroyItemByItemId("CraftManager", ADENA_ID, _price, player, true); iu.addModifiedItem(player.getInventory().getItemByItemId(ADENA_ID)); if (_quantitySuccess > 0) { SystemMessage sm = null; sm = new SystemMessage(SystemMessageId.EARNED_S2_S1_S); sm.addItemName(_recipeList.getItemId()); sm.addNumber(_quantitySuccess * _recipeList.getCount()); player.sendPacket(sm); sm = null; iu.addModifiedItem(player.getInventory().getItemByItemId(_recipeList.getItemId())); _inventory.addItem("CraftManager", _recipeList.getItemId(), _quantitySuccess * (_isConsumable ? _recipeList.getCount() : 1), player, player.getTarget()); } player.sendPacket(iu); iu = null; player.broadcastUserInfo(); sendCraftedItems(player, _quantitySuccess * (_isConsumable ? _recipeList.getCount() : 1), (_quantity - _quantitySuccess) * (_isConsumable ? _recipeList.getCount() : 1), ItemTable.getInstance().getTemplate(_recipeList.getItemId()).getName()); } } else { super.onBypassFeedback(player, command); } } public String getRecipeIcon(int grade) { return "icon.etc_recipe_" + (grade == 1 ? "blue" : grade == 2 ? "yellow" : grade == 3 ? "red" : grade == 4 ? "violet" : grade == 5 ? "black" : "white") + "_i00"; } public String getCrystalIcon(int grade) { return "icon.etc_crystal_" + (grade == 1 ? "blue" : grade == 2 ? "green" : grade == 3 ? "red" : grade == 4 ? "silver" : grade == 5 ? "gold" : "white") + "_i00"; } public void sendOutOfItems(L2PcInstance player, String count, String itemname) { NpcHtmlMessage npcReply = new NpcHtmlMessage(1); StringBuilder replyMSG = new StringBuilder("<html><body>"); replyMSG.append(getName() + ":<br>"); replyMSG.append("Come back later, when you will have <font color=\"LEVEL\">" + count + "</font> of " + itemname + "."); replyMSG.append("</body></html>"); npcReply.setHtml(replyMSG.toString()); player.sendPacket(npcReply); } public void sendCraftedItems(L2PcInstance player, int success, int failed, String itemname) { NpcHtmlMessage npcReply = new NpcHtmlMessage(1); StringBuilder replyMSG = new StringBuilder("<html><body>"); replyMSG.append(getName() + ":<br>"); if (success == 0) { replyMSG.append("I am sorry, " + player.getName() + ", but all attempts to create <font color=\"LEVEL\">" + itemname + "</font> failed. All your materials have been lost."); } else if (failed == 0) { replyMSG.append("Congratulations, " + player.getName() + ", I created " + success + " <font color=\"LEVEL\">" + itemname + "</font> for you!"); } else { replyMSG.append("Here you go, " + player.getName() + ", " + success + " <font color=\"LEVEL\">" + itemname + "</font> successfully created, but " + failed + " broken while craft."); } replyMSG.append("</body></html>"); npcReply.setHtml(replyMSG.toString()); player.sendPacket(npcReply); } @Override public String getHtmlPath(int npcId, int val) { String pom = ""; if (val == 0) { pom = "" + npcId; } else { pom = npcId + "-" + val; } return "data/html/default/" + pom + ".htm"; } }
  18. Hi, is this compatible with Interlude? Thanks! Never mind :), i successfully implemented it on my private server. The only question I have, what does the check boxes actually do? How do they work? Because i can't see any changes whatsoever.
  19. Hello guys, These past days I have been trying to implement this L2CraftManager into my own private server, but with no success. I am using an older build version from L2jFrozen for Interlude. I have everything set up but when I try to compile the server it gives the following error: Buildfile: F:\L2\EclipseWorkspace\FrozenBackup\trunk\gameserver\build.xml prepare-local: prepare-final: init: version: [echo] L2jFrozen Gameserver Revision: exported compile: [javac] Compiling 845 source files to F:\L2\EclipseWorkspace\FrozenBackup\trunk\gameserver\build\classes [javac] warning: [options] bootstrap class path not set in conjunction with -source 1.7 [javac] F:\L2\EclipseWorkspace\FrozenBackup\trunk\gameserver\head-src\com\l2jfrozen\gameserver\model\actor\instance\L2CraftManagerInstance.java:88: error: cannot find symbol [javac] && !_item.isHeroitem()) [javac] ^ [javac] symbol: method isHeroitem() [javac] location: variable _item of type L2ItemInstance [javac] F:\L2\EclipseWorkspace\FrozenBackup\trunk\gameserver\head-src\com\l2jfrozen\gameserver\model\actor\instance\L2CraftManagerInstance.java:335: error: cannot find symbol [javac] L2RecipeList _recipe = RecipeController.getInstance().getRecipesId(_item.getItemId()); [javac] ^ [javac] symbol: method getRecipesId(int) [javac] location: class RecipeController [javac] F:\L2\EclipseWorkspace\FrozenBackup\trunk\gameserver\head-src\com\l2jfrozen\gameserver\model\actor\instance\L2CraftManagerInstance.java:377: error: cannot find symbol [javac] L2RecipeList _recipeList = RecipeController.getInstance().getRecipeByItemId(_recipe.getItemId()); [javac] ^ [javac] symbol: method getRecipeByItemId(int) [javac] location: class RecipeController [javac] F:\L2\EclipseWorkspace\FrozenBackup\trunk\gameserver\head-src\com\l2jfrozen\gameserver\model\actor\instance\L2CraftManagerInstance.java:432: error: cannot find symbol [javac] L2RecipeList _recipeList = RecipeController.getInstance().getRecipeByItemId(_recipe.getItemId()); [javac] ^ [javac] symbol: method getRecipeByItemId(int) [javac] location: class RecipeController [javac] F:\L2\EclipseWorkspace\FrozenBackup\trunk\gameserver\head-src\com\l2jfrozen\gameserver\model\actor\instance\L2CraftManagerInstance.java:528: error: cannot find symbol [javac] L2RecipeList _recipeList = RecipeController.getInstance().getRecipeByItemId(_recipe.getItemId()); [javac] ^ [javac] symbol: method getRecipeByItemId(int) [javac] location: class RecipeController [javac] 5 errors [javac] 1 warning BUILD FAILED I understand the error, but still I cannot find a solution. That .getRecipeByItemId is giving me a hard time.I tried different approaches, but my knowledge is very limited. I hope you can give me a helping hand with this. Much appreciated. Thanks! Btw! Forgot to attach the whole code :D: package com.l2jfrozen.gameserver.model.actor.instance; import java.util.ArrayList; import java.util.StringTokenizer; import javolution.text.TextBuilder; import com.l2jfrozen.Config; import com.l2jfrozen.gameserver.controllers.RecipeController; import com.l2jfrozen.gameserver.datatables.sql.ItemTable; import com.l2jfrozen.gameserver.model.Inventory; import com.l2jfrozen.gameserver.model.actor.instance.L2ItemInstance; import com.l2jfrozen.gameserver.model.multisell.L2Multisell; import com.l2jfrozen.gameserver.model.actor.instance.L2RecipeInstance; import com.l2jfrozen.gameserver.model.L2RecipeList; import com.l2jfrozen.gameserver.network.SystemMessageId; import com.l2jfrozen.gameserver.network.serverpackets.InventoryUpdate; import com.l2jfrozen.gameserver.network.serverpackets.NpcHtmlMessage; import com.l2jfrozen.gameserver.network.serverpackets.SystemMessage; import com.l2jfrozen.gameserver.templates.L2EtcItemType; import com.l2jfrozen.gameserver.templates.L2Item; import com.l2jfrozen.gameserver.templates.L2NpcTemplate; import com.l2jfrozen.util.random.Rnd; import javolution.text.TextBuilder; public class L2CraftManagerInstance extends L2MerchantInstance { public static final int ADENA_ID = 57; public static final int ITEMS_PER_PAGE = 5; // items list size in craft and crystallize pages public L2CraftManagerInstance(int objectId, L2NpcTemplate template) { super(objectId, template); } @Override public void onBypassFeedback(L2PcInstance player, String command) { if (command.startsWith("multisell")) { L2Multisell.getInstance().SeparateAndSend(Integer.parseInt(command.substring(9).trim()), player, false, getCastle().getTaxRate()); } else if (command.startsWith("Crystallize")) // List player inventory items for crystallization { int _pageId; ArrayList<Integer> _itemsSelected = new ArrayList<Integer>(); Inventory _inventory = player.getInventory(); StringTokenizer st = new StringTokenizer(command.substring(11).trim()); try { if (st.countTokens()>1) { _pageId= Integer.parseInt(st.nextToken()); while (st.hasMoreTokens()) { int _itemObjId=Integer.parseInt(st.nextToken()); if ((_inventory.getItemByObjectId(_itemObjId)!=null)&& (!_itemsSelected.contains(_itemObjId))) _itemsSelected.add(_itemObjId); } } else _pageId= Integer.parseInt(command.substring(11).trim()); } catch (NumberFormatException e) { _pageId=0; } ArrayList<Integer> _items = new ArrayList<Integer>(); int _priceTotal = 0; ArrayList<Integer> _crystals = new ArrayList<Integer>(); _crystals.add(0,0);_crystals.add(1,0);_crystals.add(2,0); _crystals.add(3,0);_crystals.add(4,0);_crystals.add(5,0); for(L2ItemInstance _item : _inventory.getItems()) { if (!_item.isStackable() && _item.getItem().getCrystalType() != L2Item.CRYSTAL_NONE && _item.getItem().getCrystalCount() > 0 && !_item.isHeroitem()) { _items.add(_item.getObjectId()); if (_itemsSelected.contains(_item.getObjectId())) { int _count =_crystals.get(_item.getItem().getCrystalType())+_item.getCrystalCount(); _crystals.set(_item.getItem().getCrystalType(), _count); int _crystalId = 1457 + _item.getItem().getCrystalType(); int _price = (int)( Config.ALT_CRAFT_PRICE * _count * ItemTable.getInstance().getTemplate(_crystalId).getReferencePrice()); if (_price==0) _price=Config.ALT_CRAFT_DEFAULT_PRICE; _priceTotal+=_price; } } } if (_items.size()==0) { sendOutOfItems(player,"at least one","breakable item"); return; } int _itemsOnPage=ITEMS_PER_PAGE; int _pages = _items.size()/_itemsOnPage; if (_items.size()>_pages*_itemsOnPage) _pages++; if (_pageId>_pages) _pageId=_pages; int _itemStart=_pageId*_itemsOnPage; int _itemEnd=_items.size(); if (_itemEnd - _itemStart > _itemsOnPage) _itemEnd = _itemStart + _itemsOnPage; String _elementsSelected=""; for (int i=0;i<_itemsSelected.size();i++) _elementsSelected+=" "+_itemsSelected.get(i); NpcHtmlMessage npcReply = new NpcHtmlMessage(1); TextBuilder replyMSG = new TextBuilder("<html><body>"); replyMSG.append("<center>Items to Crystallize</center>"); replyMSG.append("<img src=\"L2UI.SquareWhite\" width=270 height=1> <img src=\"L2UI.SquareBlank\" width=1 height=3>"); replyMSG.append("<table width=270><tr>"); replyMSG.append("<td width=66><button value=\"Back\" action=\"bypass -h npc_"+getObjectId()+((_pageId==0)?"_Chat 0":"_Crystallize ")+(_pageId-1)+_elementsSelected+"\" width=66 height=16 back=\"L2UI.DefaultButton_click\" fore=\"L2UI.DefaultButton\"></td>"); replyMSG.append("<td width=138></td>"); replyMSG.append("<td width=66>"+((_pageId+1<_pages)?"<button value=\"Next\" action=\"bypass -h npc_"+getObjectId()+"_Crystallize "+(_pageId+1)+_elementsSelected+"\" width=66 height=16 back=\"L2UI.DefaultButton_click\" fore=\"L2UI.DefaultButton\">":"")+"</td>"); replyMSG.append("</tr></table>"); replyMSG.append("<br><br>"); replyMSG.append("<table width=270><tr>"); if (Config.ALT_CRAFT_ALLOW_CRYSTALLIZE) { replyMSG.append("<td width=35><button value=\"\" action=\"bypass -h npc_"+getObjectId()+"_BreakItem"+_elementsSelected+"\" width=32 height=32 back=\"icon.skill0248\" fore=\"icon.skill0248\"></td>"); replyMSG.append("<td width=135>"); replyMSG.append("<table border=0 width=100%>"); replyMSG.append("<tr><td><font color=\"B09878\">Cristallize</font></td></tr>"); replyMSG.append("<tr><td><font color=\"B09878\">selected items "+(_itemsSelected.size()==0?"":"("+_itemsSelected.size()+")")+"</font></td></tr></table></td>"); replyMSG.append("<td width=100>"); replyMSG.append("<table border=0 width=100%>"); replyMSG.append("<tr><td><font color=\"A2A0A2\">Total price:</font></td></tr>"); replyMSG.append("<tr><td><font color=\"B09878\">"+_priceTotal+" Adena</font></td></tr></table></td>"); } replyMSG.append("</tr></table><br>"); for (int i=_itemStart;i<_itemEnd;i++) { L2ItemInstance _item = _inventory.getItemByObjectId(_items.get(i)); if (_item==null) continue; int _crystalId = 1457 + _item.getItem().getCrystalType(); String _crystal = _item.getItem().getCrystalType()==1?"D": _item.getItem().getCrystalType()==2?"C": _item.getItem().getCrystalType()==3?"B": _item.getItem().getCrystalType()==4?"A":"S"; int _count =_item.getCrystalCount(); int _price = (int)(Config.ALT_CRAFT_PRICE * _count * ItemTable.getInstance().getTemplate(_crystalId).getReferencePrice()); if (_price == 0) _price=Config.ALT_CRAFT_DEFAULT_PRICE; replyMSG.append("<br><table width=270><tr>"); replyMSG.append("<td width=35><img src="+getCrystalIcon(_item.getItem().getCrystalType())+" width=32 height=32 align=left></td>"); replyMSG.append("<td width=215>"); replyMSG.append("<table border=0 width=100%>"); replyMSG.append("<tr><td><font color=\"A2A0A2\">"+ItemTable.getInstance().getTemplate(_item.getItemId()).getName()+(_item.getEnchantLevel()==0?"":" +"+_item.getEnchantLevel())+"</font></td></tr>"); replyMSG.append("<tr><td><font color=\"A2A0A2\">"+_crystal+" Crystals:</font> <font color=\"B09878\">"+_count+"</font></td></tr></table></td>"); if (Config.ALT_CRAFT_ALLOW_CRYSTALLIZE) { if (_itemsSelected.contains(_items.get(i))) replyMSG.append("<td valign=center width=20><button value=\"\" action=\"bypass -h npc_"+getObjectId()+"_Crystallize "+_pageId+_elementsSelected.replace(" "+_items.get(i).toString(),"") +"\" width=16 height=16 back=\"L2UI.CheckBox_checked\" fore=\"L2UI.CheckBox_checked\"></td>"); else replyMSG.append("<td valign=center width=20><button value=\"\" action=\"bypass -h npc_"+getObjectId()+"_Crystallize "+_pageId+" "+_items.get(i).toString()+_elementsSelected+"\" width=16 height=16 back=\"L2UI.CheckBox\" fore=\"L2UI.CheckBox\"></td>"); } else replyMSG.append("<td valign=center width=20></td>"); replyMSG.append("</tr></table>"); } replyMSG.append("</body></html>"); npcReply.setHtml(replyMSG.toString()); player.sendPacket(npcReply); } else if (command.startsWith("BreakItem") &&Config.ALT_CRAFT_ALLOW_CRYSTALLIZE) // Crystallize selected items { ArrayList<Integer> _itemsSelected = new ArrayList<Integer>(); Inventory _inventory = player.getInventory(); StringTokenizer st = new StringTokenizer(command.substring(9).trim()); try { while (st.hasMoreTokens()) { int _itemObjId=Integer.parseInt(st.nextToken()); if ((_inventory.getItemByObjectId(_itemObjId)!=null)&& (!_itemsSelected.contains(_itemObjId))) _itemsSelected.add(_itemObjId); } } catch (NumberFormatException e){} if (_itemsSelected.size()==0) { sendOutOfItems(player,"at least one","breakable items"); return; } int _priceTotal = 0; ArrayList<Integer> _crystals = new ArrayList<Integer>(); _crystals.add(0,0);_crystals.add(1,0);_crystals.add(2,0); _crystals.add(3,0);_crystals.add(4,0);_crystals.add(5,0); for (int i=0;i<_itemsSelected.size();i++) { L2ItemInstance _item = _inventory.getItemByObjectId(_itemsSelected.get(i)); if( _item!=null && _item.getOwnerId()==player.getObjectId() && !_item.isStackable() && _item.getItem().getCrystalType() != L2Item.CRYSTAL_NONE && _item.getItem().getCrystalCount() > 0 && i<_itemsSelected.size()) { int _count =_crystals.get(_item.getItem().getCrystalType())+_item.getCrystalCount(); _crystals.set(_item.getItem().getCrystalType(), _count); int _crystalId = 1457 + _item.getItem().getCrystalType(); int _price = (int)(Config.ALT_CRAFT_PRICE * _count * ItemTable.getInstance().getTemplate(_crystalId).getReferencePrice()); if (_price==0) _price=Config.ALT_CRAFT_DEFAULT_PRICE; _priceTotal+=_price; } else _itemsSelected.remove(i); } if (_inventory.getInventoryItemCount(ADENA_ID,0)<_priceTotal) { sendOutOfItems(player,Integer.toString(_priceTotal),"Adena"); return; } InventoryUpdate iu = new InventoryUpdate(); player.destroyItemByItemId("CraftManager", ADENA_ID, _priceTotal, player, true); iu.addModifiedItem(player.getInventory().getItemByItemId(ADENA_ID)); for (int i=0;i<_itemsSelected.size();i++) { L2ItemInstance _item = _inventory.getItemByObjectId(_itemsSelected.get(i)); if( _item!=null && _item.getOwnerId()==player.getObjectId() && !_item.isStackable() && _item.getItem().getCrystalType() != L2Item.CRYSTAL_NONE && _item.getItem().getCrystalCount() > 0) { if (_item.isEquipped()) { L2ItemInstance[] unequiped = player.getInventory().unEquipItemInSlotAndRecord(_item.getEquipSlot()); if (_item.isEquipped()) for (L2ItemInstance element : unequiped) iu.addModifiedItem(element); } player.destroyItem("CraftManager", _itemsSelected.get(i), 1, player, true); iu.addModifiedItem(player.getInventory().getItemByObjectId(_itemsSelected.get(i))); } } for (int i=0;i<_crystals.size();i++) { if (_crystals.get(i)>0) { int _crystalId = 1457 + i; SystemMessage sm = new SystemMessage(SystemMessageId.EARNED_S2_S1_S); sm.addItemName(_crystalId); sm.addNumber(_crystals.get(i)); player.sendPacket(sm); _inventory.addItem("CraftManager", _crystalId, _crystals.get(i), player, player.getTarget()); iu.addModifiedItem(player.getInventory().getItemByItemId(_crystalId)); } } player.sendPacket(iu); player.broadcastUserInfo(); } else if (command.startsWith("Manufacture")) // List recipes from player inventory { int _pageId; try { _pageId= Integer.parseInt(command.substring(11).trim()); } catch (NumberFormatException e) { _pageId=0; } Inventory _inventory = player.getInventory(); ArrayList<Integer> _recipes = new ArrayList<Integer>(); for(L2ItemInstance _item : _inventory.getItems()) { if (_item.getItemType()==L2EtcItemType.RECEIPE) { L2RecipeList _recipe = RecipeController.getInstance().getRecipesId(_item.getItemId()); if (_recipe!=null)_recipes.add(_item.getObjectId()); } } if (_recipes.size()==0) { sendOutOfItems(player,"at least one","recipe"); return; } int _itemsOnPage=ITEMS_PER_PAGE; int _pages = _recipes.size()/_itemsOnPage; if (_recipes.size()>_pages*_itemsOnPage) _pages++; if (_pageId>_pages) _pageId=_pages; int _itemStart=_pageId*_itemsOnPage; int _itemEnd=_recipes.size(); if (_itemEnd - _itemStart > _itemsOnPage) _itemEnd = _itemStart + _itemsOnPage; NpcHtmlMessage npcReply = new NpcHtmlMessage(1); TextBuilder replyMSG = new TextBuilder("<html><body>"); replyMSG.append("<center>List of Recipes</center>"); replyMSG.append("<img src=\"L2UI.SquareWhite\" width=270 height=1> <img src=\"L2UI.SquareBlank\" width=1 height=3>"); replyMSG.append("<table width=270><tr>"); replyMSG.append("<td width=66><button value=\"Back\" action=\"bypass -h npc_"+getObjectId()+((_pageId==0)?"_Chat 0":"_Manufacture ")+(_pageId-1)+"\" width=66 height=16 back=\"L2UI.DefaultButton_click\" fore=\"L2UI.DefaultButton\"></td>"); replyMSG.append("<td width=138></td>"); replyMSG.append("<td width=66>"+((_pageId+1<_pages)?"<button value=\"Next\" action=\"bypass -h npc_"+getObjectId()+"_Manufacture "+(_pageId+1)+"\" width=66 height=16 back=\"L2UI.DefaultButton_click\" fore=\"L2UI.DefaultButton\">":"")+"</td>"); replyMSG.append("</tr></table>"); replyMSG.append("<br>"); for (int i=_itemStart;i<_itemEnd;i++) { L2ItemInstance _recipe = _inventory.getItemByObjectId(_recipes.get(i)); if (_recipe==null) continue; L2RecipeList _recipeList = RecipeController.getInstance().getRecipeByItemId(_recipe.getItemId()); boolean _isConsumable = ItemTable.getInstance().getTemplate(_recipeList.getItemId()).isConsumable(); if (_recipeList==null) continue; int _price = (int)(Config.ALT_CRAFT_PRICE * _recipeList.getSuccessRate()/100 * ItemTable.getInstance().getTemplate(_recipeList.getItemId()).getReferencePrice()); if (_price == 0) _price=Config.ALT_CRAFT_DEFAULT_PRICE; int _grade = ItemTable.getInstance().getTemplate(_recipeList.getItemId()).getCrystalType(); String _recipeIcon = _recipeList.isDwarvenRecipe() ? getRecipeIcon(_grade):"icon.etc_recipe_green_i00"; replyMSG.append("<br>"); replyMSG.append("<table width=270><tr>"); replyMSG.append("<td valign=top width=35><button value=\"\" action=\"bypass -h npc_"+getObjectId()+"_CraftInfo "+_recipes.get(i)+" 1 "+_pageId+"\" width=32 height=32 back=\""+_recipeIcon +"\" fore=\""+_recipeIcon +"\"></td>"); replyMSG.append("<td valign=top width=235>"); replyMSG.append("<table border=0 width=100%>"); replyMSG.append("<tr><td><font color=\"A2A0A2\">"+ItemTable.getInstance().getTemplate(_recipe.getItemId()).getName()+"</font></td></tr>"); replyMSG.append("<tr><td><font color=\"A2A0A2\">Product:</font> <font color=\"B09878\">"+(_isConsumable?_recipeList.getCount()+" ":"")+ItemTable.getInstance().getTemplate(_recipeList.getItemId()).getName()+"</font></td></tr></table></td>"); replyMSG.append("</tr></table>"); replyMSG.append("<br>"); } replyMSG.append("</body></html>"); npcReply.setHtml(replyMSG.toString()); player.sendPacket(npcReply); } else if (command.startsWith("CraftInfo")) // Show information about choosen recipe { int _recipeObjId=0; int _pageId=0; int _quantity=1; StringTokenizer st = new StringTokenizer(command.substring(9).trim()); try { if (st.countTokens()>2) { _recipeObjId = Integer.parseInt(st.nextToken()); _quantity = Integer.parseInt(st.nextToken()); } else _recipeObjId = Integer.parseInt(st.nextToken()); _pageId = Integer.parseInt(st.nextToken()); } catch (NumberFormatException e){} Inventory _inventory = player.getInventory(); L2ItemInstance _recipe = _inventory.getItemByObjectId(_recipeObjId); L2RecipeList _recipeList = RecipeController.getInstance().getRecipeByItemId(_recipe.getItemId()); boolean _isConsumable = ItemTable.getInstance().getTemplate(_recipeList.getItemId()).isConsumable(); if( _recipe!=null && _recipe.getOwnerId()==player.getObjectId() && _recipe.getItemType()==L2EtcItemType.RECEIPE && _recipeList!=null) { int _price =(int)(Config.ALT_CRAFT_PRICE * _recipeList.getSuccessRate()/100 * _quantity * (_isConsumable?_recipeList.getCount():1) * ItemTable.getInstance().getTemplate(_recipeList.getItemId()).getReferencePrice()); if (_price==0) _price=Config.ALT_CRAFT_DEFAULT_PRICE; NpcHtmlMessage npcReply = new NpcHtmlMessage(1); TextBuilder replyMSG = new TextBuilder("<html><body>"); replyMSG.append("<center>Craft Info</center>"); replyMSG.append("<img src=\"L2UI.SquareWhite\" width=270 height=1> <img src=\"L2UI.SquareBlank\" width=1 height=3>"); replyMSG.append("<table width=270><tr>"); replyMSG.append("<td width=66><button value=\"Back\" action=\"bypass -h npc_"+getObjectId()+"_Manufacture "+_pageId+"\" width=66 height=16 back=\"L2UI.DefaultButton_click\" fore=\"L2UI.DefaultButton\"></td>"); replyMSG.append("<td width=138></td>"); replyMSG.append("<td width=66></td>"); replyMSG.append("</tr></table>"); replyMSG.append("<br>"); replyMSG.append("<table width=270><tr>"); if ((_recipeList.isDwarvenRecipe()&&Config.ALT_CRAFT_ALLOW_CRAFT)||(!_recipeList.isDwarvenRecipe()&&Config.ALT_CRAFT_ALLOW_COMMON)) replyMSG.append("<td valign=top width=35><button value=\"\" action=\"bypass -h npc_"+getObjectId()+"_CraftItem "+_recipeObjId+" "+_quantity+"\" width=32 height=32 back=\"icon.skill0172\" fore=\"icon.skill0172\"></td>"); else replyMSG.append("<td valign=top width=35><img src=icon.skill0172 width=32 height=32 align=left></td>"); replyMSG.append("<td valign=top width=235>"); replyMSG.append("<table border=0 width=100%>"); replyMSG.append("<tr><td><font color=\"A2A0A2\">"+ItemTable.getInstance().getTemplate(_recipeList.getItemId()).getName()+"</font></td></tr>"); replyMSG.append("<tr><td><font color=\"A2A0A2\">Product:</font> <font color=\"B09878\">"+(_isConsumable?_recipeList.getCount()*_quantity+" ":_quantity>1?_quantity:"")+ItemTable.getInstance().getTemplate(_recipeList.getItemId()).getName()+"</font></td></tr>"); if ((_recipeList.isDwarvenRecipe()&&Config.ALT_CRAFT_ALLOW_CRAFT)||(!_recipeList.isDwarvenRecipe()&&Config.ALT_CRAFT_ALLOW_COMMON)) replyMSG.append("<tr><td><font color=\"A2A0A2\">Price:</font> <font color=\"B09878\">"+_price+" Adena</font></td></tr></table></td>"); else replyMSG.append("<tr><td></td></tr></table></td>"); replyMSG.append("</tr></table>"); replyMSG.append("<br>"); replyMSG.append("<center>"); replyMSG.append("<table width=210>"); replyMSG.append("<tr><td valign=top width=70><font color=\"B09878\">Enter quantity:</font></td><td></td></tr>"); replyMSG.append("<tr><td valign=top width=70><edit var=\"quantity\" width=70></td>"); replyMSG.append("<td valign=top width=70><button value=\"Calculate\" action=\"bypass -h npc_"+getObjectId()+"_CraftInfo "+_recipeObjId+" $quantity "+_pageId+"\" width=66 height=16 back=\"L2UI.DefaultButton_click\" fore=\"L2UI.DefaultButton\"></td>"); replyMSG.append("</tr></table>"); replyMSG.append("</center>"); replyMSG.append("<br>"); replyMSG.append("<br>"); replyMSG.append("<table width=270><tr>"); replyMSG.append("<td width=220><font color=\"A2A0A2\">Ingredients</font></td>"); replyMSG.append("<td width=50><font color=\"A2A0A2\">Quantity</font></td></tr>"); L2RecipeInstance[] _recipeItems = _recipeList.getRecipes(); for (L2RecipeInstance _recipeItem:_recipeItems) { L2ItemInstance _item = _inventory.getItemByItemId(_recipeItem.getItemId()); String _quantityState="<font color=\"55FF55\">"+_quantity*_recipeItem.getQuantity()+"</font>"; if ((_item==null)||(_item.getCount()<_quantity*_recipeItem.getQuantity())) _quantityState="<font color=\"FF5555\">"+(int)(_quantity*_recipeItem.getQuantity()*Config.ALT_RATE_CRAFT_COST)+"</font>"; replyMSG.append("<tr><td width=220>"+ItemTable.getInstance().getTemplate(_recipeItem.getItemId()).getName()+"</td>"); replyMSG.append("<td width=50>"+_quantityState+"</td></tr>"); } replyMSG.append("</table>"); replyMSG.append("</body></html>"); npcReply.setHtml(replyMSG.toString()); player.sendPacket(npcReply); } } else if (command.startsWith("CraftItem") && (Config.ALT_CRAFT_ALLOW_CRAFT || Config.ALT_CRAFT_ALLOW_COMMON)) // Craft amount of items using selected recipe { int _recipeObjId=0; int _quantity=1; StringTokenizer st = new StringTokenizer(command.substring(9).trim()); if (st.countTokens()!=2) return; try { _recipeObjId = Integer.parseInt(st.nextToken()); _quantity = Integer.parseInt(st.nextToken()); } catch (NumberFormatException e){} Inventory _inventory = player.getInventory(); L2ItemInstance _recipe = _inventory.getItemByObjectId(_recipeObjId); L2RecipeList _recipeList = RecipeController.getInstance().getRecipeByItemId(_recipe.getItemId()); boolean _isConsumable = ItemTable.getInstance().getTemplate(_recipeList.getItemId()).isConsumable(); if( _recipe!=null && _recipe.getOwnerId()==player.getObjectId() && _recipe.getItemType()==L2EtcItemType.RECEIPE && _recipeList!=null && ((_recipeList.isDwarvenRecipe()&&Config.ALT_CRAFT_ALLOW_CRAFT)||(!_recipeList.isDwarvenRecipe()&&Config.ALT_CRAFT_ALLOW_COMMON))) { L2RecipeInstance[] _recipeItems = _recipeList.getRecipes(); boolean _enoughtMaterials=true; for (L2RecipeInstance _recipeItem:_recipeItems) { L2ItemInstance _item = _inventory.getItemByItemId(_recipeItem.getItemId()); if ((_item==null)||(_item.getCount()<(int)(_quantity*_recipeItem.getQuantity()*Config.ALT_RATE_CRAFT_COST))) _enoughtMaterials=false; } int _price =(int)(Config.ALT_CRAFT_PRICE * _recipeList.getSuccessRate()/100 * _quantity * _recipeList.getCount() * ItemTable.getInstance().getTemplate(_recipeList.getItemId()).getReferencePrice()); if (_price==0) _price=Config.ALT_CRAFT_DEFAULT_PRICE; if (_inventory.getInventoryItemCount(ADENA_ID,0)<_price) { sendOutOfItems(player,Integer.toString(_price),"Adena"); return; } if (!_enoughtMaterials) { sendOutOfItems(player,"proper amount","materials"); return; } int _quantitySuccess=0; for(int i=0;i<_quantity;i++) if (Rnd.get(100) < _recipeList.getSuccessRate()) _quantitySuccess++; InventoryUpdate iu = new InventoryUpdate(); for (L2RecipeInstance _recipeItem:_recipeItems) { player.destroyItemByItemId("CraftManager", _recipeItem.getItemId(), (int)(_quantity*_recipeItem.getQuantity()*Config.ALT_RATE_CRAFT_COST), player, true); iu.addModifiedItem(player.getInventory().getItemByItemId(_recipeItem.getItemId())); } player.destroyItemByItemId("CraftManager", ADENA_ID, _price, player, true); iu.addModifiedItem(player.getInventory().getItemByItemId(ADENA_ID)); if (_quantitySuccess>0) { SystemMessage sm = new SystemMessage(SystemMessageId.EARNED_S2_S1_S); sm.addItemName(_recipeList.getItemId()); sm.addNumber(_quantitySuccess * _recipeList.getCount()); player.sendPacket(sm); sm=null; iu.addModifiedItem(player.getInventory().getItemByItemId(_recipeList.getItemId())); _inventory.addItem("CraftManager", _recipeList.getItemId(), _quantitySuccess * (_isConsumable?_recipeList.getCount():1), player, player.getTarget()); } player.sendPacket(iu); iu=null; player.broadcastUserInfo(); sendCraftedItems(player,_quantitySuccess * (_isConsumable?_recipeList.getCount():1),(_quantity-_quantitySuccess)* (_isConsumable?_recipeList.getCount():1),ItemTable.getInstance().getTemplate(_recipeList.getItemId()).getName()); } } else super.onBypassFeedback(player,command); } public String getRecipeIcon(int grade) { return "icon.etc_recipe_"+( grade==1?"blue": grade==2?"yellow": grade==3?"red": grade==4?"violet": grade==5?"black":"white")+"_i00"; } public String getCrystalIcon(int grade) { return "icon.etc_crystal_"+(grade==1?"blue": grade==2?"green": grade==3?"red": grade==4?"silver":"gold")+"_i00"; } public void sendOutOfItems(L2PcInstance player, String count, String itemname) { NpcHtmlMessage npcReply = new NpcHtmlMessage(1); TextBuilder replyMSG = new TextBuilder("<html><body>"); replyMSG.append(getName()+":<br>"); replyMSG.append("Come back later, when you will have "+count+" of "+itemname+"."); replyMSG.append("</body></html>"); npcReply.setHtml(replyMSG.toString()); player.sendPacket(npcReply); } public void sendCraftedItems(L2PcInstance player, int success, int failed, String itemname) { NpcHtmlMessage npcReply = new NpcHtmlMessage(1); TextBuilder replyMSG = new TextBuilder("<html><body>"); replyMSG.append(getName()+":<br>"); if (success==0) replyMSG.append("I am sorry, "+player.getName()+", but all attempts to create <font color=\"LEVEL\">"+itemname+"</font> failed. All your materials have been lost."); else if (failed==0) replyMSG.append("Congratulations, "+player.getName()+", I created "+success+" <font color=\"LEVEL\">"+itemname+"</font> for you!"); else replyMSG.append("Here you go, "+player.getName()+", "+success+" <font color=\"LEVEL\">"+itemname+"</font> successfully created, but "+failed+" broken while craft."); replyMSG.append("</body></html>"); npcReply.setHtml(replyMSG.toString()); player.sendPacket(npcReply); } @Override public String getHtmlPath(int npcId, int val) { String pom = ""; if (val == 0) { pom = "" + npcId; } else { pom = npcId + "-" + val; } return "data/html/default/" + pom + ".htm"; } }
×
×
  • Create New...