1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147 |
- /*
- * This program is free software: you can redistribute it and/or modify it under
- * the terms of the GNU General Public License as published by the Free Software
- * Foundation, either version 3 of the License, or (at your option) any later
- * version.
- *
- * This program is distributed in the hope that it will be useful, but WITHOUT
- * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
- * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
- * details.
- *
- * You should have received a copy of the GNU General Public License along with
- * this program. If not, see <http://www.gnu.org/licenses/>.
- */
- package net.sf.l2j.gameserver.handler.admincommandhandlers;
- import java.sql.PreparedStatement;
- import java.sql.ResultSet;
- import java.sql.SQLException;
- import java.util.List;
- import java.util.StringTokenizer;
- import java.util.logging.Logger;
- import javolution.text.TextBuilder;
- import javolution.util.FastList;
- import net.sf.l2j.L2DatabaseFactory;
- import net.sf.l2j.gameserver.TradeController;
- import net.sf.l2j.gameserver.cache.HtmCache;
- import net.sf.l2j.gameserver.datatables.ItemTable;
- import net.sf.l2j.gameserver.datatables.NpcTable;
- import net.sf.l2j.gameserver.handler.IAdminCommandHandler;
- import net.sf.l2j.gameserver.model.L2DropCategory;
- import net.sf.l2j.gameserver.model.L2DropData;
- import net.sf.l2j.gameserver.model.L2TradeList;
- import net.sf.l2j.gameserver.model.L2TradeList.L2TradeItem;
- import net.sf.l2j.gameserver.model.actor.instance.L2MerchantInstance;
- import net.sf.l2j.gameserver.model.actor.instance.L2PcInstance;
- import net.sf.l2j.gameserver.network.serverpackets.NpcHtmlMessage;
- import net.sf.l2j.gameserver.templates.L2Item;
- import net.sf.l2j.gameserver.templates.L2NpcTemplate;
- import net.sf.l2j.gameserver.templates.StatsSet;
- /**
- * @author terry
- *
- */
- public class AdminEditNpc implements IAdminCommandHandler
- {
- private static Logger _log = Logger.getLogger(AdminEditChar.class.getName());
- private final static int PAGE_LIMIT = 7;
-
- private static final String[] ADMIN_COMMANDS =
- {
- "admin_edit_npc",
- "admin_save_npc",
- "admin_show_droplist",
- "admin_edit_drop",
- "admin_add_drop",
- "admin_del_drop",
- "admin_showShop",
- "admin_showShopList",
- "admin_addShopItem",
- "admin_delShopItem",
- "admin_editShopItem",
- "admin_close_window"
- };
-
- public boolean useAdminCommand(String command, L2PcInstance activeChar)
- {
- //TODO: Tokenize and protect arguments parsing. Externalize HTML.
- if (command.startsWith("admin_showShop "))
- {
- String[] args = command.split(" ");
- if (args.length > 1)
- showShop(activeChar, Integer.parseInt(command.split(" ")[1]));
- }
- else if (command.startsWith("admin_showShopList "))
- {
- String[] args = command.split(" ");
- if (args.length > 2)
- showShopList(activeChar, Integer.parseInt(command.split(" ")[1]), Integer.parseInt(command.split(" ")[2]));
- }
- else if (command.startsWith("admin_edit_npc "))
- {
- try
- {
- String[] commandSplit = command.split(" ");
- int npcId = Integer.valueOf(commandSplit[1]);
- L2NpcTemplate npc = NpcTable.getInstance().getTemplate(npcId);
- Show_Npc_Property(activeChar, npc);
- }
- catch (Exception e)
- {
- activeChar.sendMessage("Wrong usage: //edit_npc <npcId>");
- }
- }
- else if (command.startsWith("admin_show_droplist "))
- {
- int npcId = 0;
- try
- {
- npcId = Integer.parseInt(command.substring(20).trim());
- }
- catch (Exception e)
- {
- }
-
- if (npcId > 0)
- showNpcDropList(activeChar, npcId);
- else
- activeChar.sendMessage("Usage: //show_droplist <npc_id>");
- }
- else if (command.startsWith("admin_addShopItem "))
- {
- String[] args = command.split(" ");
- if (args.length > 1)
- addShopItem(activeChar, args);
- }
- else if (command.startsWith("admin_delShopItem "))
- {
- String[] args = command.split(" ");
- if (args.length > 2)
- delShopItem(activeChar, args);
- }
- else if (command.startsWith("admin_editShopItem "))
- {
- String[] args = command.split(" ");
- if (args.length > 2)
- editShopItem(activeChar, args);
- }
- else if (command.startsWith("admin_save_npc "))
- {
- try
- {
- save_npc_property(activeChar, command);
- }
- catch (StringIndexOutOfBoundsException e)
- {
- }
- }
- else if (command.startsWith("admin_edit_drop "))
- {
- int npcId = -1, itemId = 0, category = -1000;
- try
- {
- StringTokenizer st = new StringTokenizer(command.substring(16).trim());
- if (st.countTokens() == 3)
- {
- try
- {
- npcId = Integer.parseInt(st.nextToken());
- itemId = Integer.parseInt(st.nextToken());
- category = Integer.parseInt(st.nextToken());
- showEditDropData(activeChar, npcId, itemId, category);
- }
- catch (Exception e)
- {
- }
- }
- else if (st.countTokens() == 6)
- {
- try
- {
- npcId = Integer.parseInt(st.nextToken());
- itemId = Integer.parseInt(st.nextToken());
- category = Integer.parseInt(st.nextToken());
- int min = Integer.parseInt(st.nextToken());
- int max = Integer.parseInt(st.nextToken());
- int chance = Integer.parseInt(st.nextToken());
-
- updateDropData(activeChar, npcId, itemId, min, max, category, chance);
- }
- catch (Exception e)
- {
- _log.fine("admin_edit_drop parements error: " + command);
- }
- }
- else
- activeChar.sendMessage("Usage: //edit_drop <npc_id> <item_id> <category> [<min> <max> <chance>]");
- }
- catch (StringIndexOutOfBoundsException e)
- {
- activeChar.sendMessage("Usage: //edit_drop <npc_id> <item_id> <category> [<min> <max> <chance>]");
- }
- }
- else if (command.startsWith("admin_add_drop "))
- {
- int npcId = -1;
- try
- {
- StringTokenizer st = new StringTokenizer(command.substring(15).trim());
- if (st.countTokens() == 1)
- {
- try
- {
- String[] input = command.substring(15).split(" ");
- if (input.length < 1)
- return true;
- npcId = Integer.parseInt(input[0]);
- }
- catch (Exception e)
- {
- }
-
- if (npcId > 0)
- {
- L2NpcTemplate npcData = NpcTable.getInstance().getTemplate(npcId);
- showAddDropData(activeChar, npcData);
- }
- }
- else if (st.countTokens() == 6)
- {
- try
- {
- npcId = Integer.parseInt(st.nextToken());
- int itemId = Integer.parseInt(st.nextToken());
- int category = Integer.parseInt(st.nextToken());
- int min = Integer.parseInt(st.nextToken());
- int max = Integer.parseInt(st.nextToken());
- int chance = Integer.parseInt(st.nextToken());
-
- addDropData(activeChar, npcId, itemId, min, max, category, chance);
- }
- catch (Exception e)
- {
- _log.fine("admin_add_drop parements error: " + command);
- }
- }
- else
- activeChar.sendMessage("Usage: //add_drop <npc_id> [<item_id> <category> <min> <max> <chance>]");
- }
- catch (StringIndexOutOfBoundsException e)
- {
- activeChar.sendMessage("Usage: //add_drop <npc_id> [<item_id> <category> <min> <max> <chance>]");
- }
- }
- else if (command.startsWith("admin_del_drop "))
- {
- int npcId = -1, itemId = -1, category = -1000;
- try
- {
- String[] input = command.substring(15).split(" ");
- if (input.length >= 3)
- {
- npcId = Integer.parseInt(input[0]);
- itemId = Integer.parseInt(input[1]);
- category = Integer.parseInt(input[2]);
- }
- }
- catch (Exception e)
- {
- }
-
- if (npcId > 0)
- deleteDropData(activeChar, npcId, itemId, category);
- else
- activeChar.sendMessage("Usage: //del_drop <npc_id> <item_id> <category>");
- }
-
- return true;
- }
-
- private void editShopItem(L2PcInstance activeChar, String[] args)
- {
- int tradeListID = Integer.parseInt(args[1]);
- int itemID = Integer.parseInt(args[2]);
- L2TradeList tradeList = TradeController.getInstance().getBuyList(tradeListID);
-
- L2Item item = ItemTable.getInstance().getTemplate(itemID);
- if (tradeList.getPriceForItemId(itemID) < 0)
- {
- return;
- }
-
- if (args.length > 3)
- {
- int price = Integer.parseInt(args[3]);
- int order = findOrderTradeList(itemID, tradeList.getPriceForItemId(itemID), tradeListID);
-
- tradeList.replaceItem(itemID, Integer.parseInt(args[3]));
- updateTradeList(itemID, price, tradeListID, order);
-
- activeChar.sendMessage("Updated price for " + item.getName() + " in Trade List " + tradeListID);
- showShopList(activeChar, tradeListID, 1);
- return;
- }
-
- NpcHtmlMessage adminReply = new NpcHtmlMessage(5);
-
- TextBuilder replyMSG = new TextBuilder();
- replyMSG.append("<html><title>Merchant Shop Item Edit</title>");
- replyMSG.append("<body>");
- replyMSG.append("<br>Edit an entry in merchantList.");
- replyMSG.append("<br>Editing Item: " + item.getName());
- replyMSG.append("<table>");
- replyMSG.append("<tr><td width=100>Property</td><td width=100>Edit Field</td><td width=100>Old Value</td></tr>");
- replyMSG.append("<tr><td><br></td><td></td></tr>");
- replyMSG.append("<tr><td>Price</td><td><edit var=\"price\" width=80></td><td>" + tradeList.getPriceForItemId(itemID) + "</td></tr>");
- replyMSG.append("</table>");
- replyMSG.append("<center><br><br><br>");
- replyMSG.append("<button value=\"Save\" action=\"bypass -h admin_editShopItem " + tradeListID + " " + itemID + " $price\" width=100 height=15 back=\"L2UI_ct1.button_df\" fore=\"L2UI_ct1.button_df\">");
- replyMSG.append("<br><button value=\"Back\" action=\"bypass -h admin_showShopList " + tradeListID + " 1\" width=100 height=15 back=\"L2UI_ct1.button_df\" fore=\"L2UI_ct1.button_df\">");
- replyMSG.append("</center>");
- replyMSG.append("</body></html>");
-
- adminReply.setHtml(replyMSG.toString());
- activeChar.sendPacket(adminReply);
- }
-
- private void delShopItem(L2PcInstance activeChar, String[] args)
- {
- int tradeListID = Integer.parseInt(args[1]);
- int itemID = Integer.parseInt(args[2]);
- L2TradeList tradeList = TradeController.getInstance().getBuyList(tradeListID);
-
- if (tradeList.getPriceForItemId(itemID) < 0)
- return;
-
- if (args.length > 3)
- {
- int order = findOrderTradeList(itemID, tradeList.getPriceForItemId(itemID), tradeListID);
-
- tradeList.removeItem(itemID);
- deleteTradeList(tradeListID, order);
-
- activeChar.sendMessage("Deleted " + ItemTable.getInstance().getTemplate(itemID).getName() + " from Trade List " + tradeListID);
- showShopList(activeChar, tradeListID, 1);
- return;
- }
-
- NpcHtmlMessage adminReply = new NpcHtmlMessage(5);
-
- TextBuilder replyMSG = new TextBuilder();
- replyMSG.append("<html><title>Merchant Shop Item Delete</title>");
- replyMSG.append("<body>");
- replyMSG.append("<br>Delete entry in merchantList.");
- replyMSG.append("<br>Item to Delete: " + ItemTable.getInstance().getTemplate(itemID).getName());
- replyMSG.append("<table>");
- replyMSG.append("<tr><td width=100>Property</td><td width=100>Value</td></tr>");
- replyMSG.append("<tr><td><br></td><td></td></tr>");
- replyMSG.append("<tr><td>Price</td><td>" + tradeList.getPriceForItemId(itemID) + "</td></tr>");
- replyMSG.append("</table>");
- replyMSG.append("<center><br><br><br>");
- replyMSG.append("<button value=\"Confirm\" action=\"bypass -h admin_delShopItem " + tradeListID + " " + itemID + " 1\" width=100 height=15 back=\"L2UI_ct1.button_df\" fore=\"L2UI_ct1.button_df\">");
- replyMSG.append("<br><button value=\"Back\" action=\"bypass -h admin_showShopList " + tradeListID + " 1\" width=100 height=15 back=\"L2UI_ct1.button_df\" fore=\"L2UI_ct1.button_df\">");
- replyMSG.append("</center>");
- replyMSG.append("</body></html>");
-
- adminReply.setHtml(replyMSG.toString());
- activeChar.sendPacket(adminReply);
- }
-
- private void addShopItem(L2PcInstance activeChar, String[] args)
- {
- int tradeListID = Integer.parseInt(args[1]);
-
- L2TradeList tradeList = TradeController.getInstance().getBuyList(tradeListID);
- if (tradeList == null)
- {
- activeChar.sendMessage("TradeList not found!");
- return;
- }
-
- if (args.length > 3)
- {
- int order = tradeList.getItems().size() + 1; // last item order + 1
- int itemID = Integer.parseInt(args[2]);
- int price = Integer.parseInt(args[3]);
-
- L2TradeItem newItem = new L2TradeItem(itemID);
- newItem.setPrice(price);
- newItem.setMaxCount(-1);
- tradeList.addItem(newItem);
- storeTradeList(itemID, price, tradeListID, order);
-
- activeChar.sendMessage("Added " + ItemTable.getInstance().getTemplate(itemID).getName() + " to Trade List " + tradeList.getListId());
- showShopList(activeChar, tradeListID, 1);
- return;
- }
-
- NpcHtmlMessage adminReply = new NpcHtmlMessage(5);
-
- TextBuilder replyMSG = new TextBuilder();
- replyMSG.append("<html><title>Merchant Shop Item Add</title>");
- replyMSG.append("<body>");
- replyMSG.append("<br>Add a new entry in merchantList.");
- replyMSG.append("<table>");
- replyMSG.append("<tr><td width=100>Property</td><td>Edit Field</td></tr>");
- replyMSG.append("<tr><td><br></td><td></td></tr>");
- replyMSG.append("<tr><td>ItemID</td><td><edit var=\"itemID\" width=80></td></tr>");
- replyMSG.append("<tr><td>Price</td><td><edit var=\"price\" width=80></td></tr>");
- replyMSG.append("</table>");
- replyMSG.append("<center><br><br><br>");
- replyMSG.append("<button value=\"Save\" action=\"bypass -h admin_addShopItem " + tradeListID + " $itemID $price\" width=100 height=15 back=\"L2UI_ct1.button_df\" fore=\"L2UI_ct1.button_df\">");
- replyMSG.append("<br><button value=\"Back\" action=\"bypass -h admin_showShopList " + tradeListID + " 1\" width=100 height=15 back=\"L2UI_ct1.button_df\" fore=\"L2UI_ct1.button_df\">");
- replyMSG.append("</center>");
- replyMSG.append("</body></html>");
-
- adminReply.setHtml(replyMSG.toString());
- activeChar.sendPacket(adminReply);
- }
-
- private void showShopList(L2PcInstance activeChar, int tradeListID, int page)
- {
- L2TradeList tradeList = TradeController.getInstance().getBuyList(tradeListID);
- if (page > tradeList.getItems().size() / PAGE_LIMIT + 1 || page < 1)
- return;
-
- NpcHtmlMessage adminReply = new NpcHtmlMessage(5);
- TextBuilder html = itemListHtml(tradeList, page);
-
- adminReply.setHtml(html.toString());
- activeChar.sendPacket(adminReply);
-
- }
-
- private TextBuilder itemListHtml(L2TradeList tradeList, int page)
- {
- TextBuilder replyMSG = new TextBuilder();
-
- replyMSG.append("<html><title>Merchant Shop List Page: " + page + "</title>");
- replyMSG.append("<body>");
- replyMSG.append("<br>Edit, add or delete entries in a merchantList.");
- replyMSG.append("<table>");
- replyMSG.append("<tr><td width=150>Item Name</td><td width=60>Price</td><td width=40>Delete</td></tr>");
- int start = ((page - 1) * PAGE_LIMIT);
- int end = Math.min(((page - 1) * PAGE_LIMIT) + (PAGE_LIMIT - 1), tradeList.getItems().size() - 1);
- for (L2TradeItem item : tradeList.getItems(start, end + 1))
- {
- replyMSG.append("<tr><td><a action=\"bypass -h admin_editShopItem " + tradeList.getListId() + " " + item.getItemId() + "\">" + ItemTable.getInstance().getTemplate(item.getItemId()).getName() + "</a></td>");
- replyMSG.append("<td>" + item.getPrice() + "</td>");
- replyMSG.append("<td><button value=\"Del\" action=\"bypass -h admin_delShopItem " + tradeList.getListId() + " " + item.getItemId() + "\" width=40 height=15 back=\"L2UI_ct1.button_df\" fore=\"L2UI_ct1.button_df\"></td>");
- replyMSG.append("</tr>");
- }//*/
- replyMSG.append("<tr>");
- int min = 1;
- int max = tradeList.getItems().size() / PAGE_LIMIT + 1;
- if (page > 1)
- {
- replyMSG.append("<td><button value=\"Page" + (page - 1) + "\" action=\"bypass -h admin_showShopList " + tradeList.getListId() + " " + (page - 1)
- + "\" width=40 height=15 back=\"L2UI_ct1.button_df\" fore=\"L2UI_ct1.button_df\"></td>");
- }
- if (page < max)
- {
- if (page <= min)
- replyMSG.append("<td></td>");
- replyMSG.append("<td><button value=\"Page" + (page + 1) + "\" action=\"bypass -h admin_showShopList " + tradeList.getListId() + " " + (page + 1)
- + "\" width=40 height=15 back=\"L2UI_ct1.button_df\" fore=\"L2UI_ct1.button_df\"></td>");
- }
- replyMSG.append("</tr><tr><td>.</td></tr>");
- replyMSG.append("</table>");
- replyMSG.append("<center>");
- replyMSG.append("<button value=\"Add\" action=\"bypass -h admin_addShopItem " + tradeList.getListId() + "\" width=100 height=15 back=\"L2UI_ct1.button_df\" fore=\"L2UI_ct1.button_df\">");
- replyMSG.append("<button value=\"Close\" action=\"bypass -h admin_close_window\" width=100 height=15 back=\"L2UI_ct1.button_df\" fore=\"L2UI_ct1.button_df\">");
- replyMSG.append("</center></body></html>");
-
- return replyMSG;
- }
-
- private void showShop(L2PcInstance activeChar, int merchantID)
- {
- List<L2TradeList> tradeLists = getTradeLists(merchantID);
- if (tradeLists == null)
- {
- activeChar.sendMessage("Unknown npc template Id: " + merchantID);
- return;
- }
-
- NpcHtmlMessage adminReply = new NpcHtmlMessage(5);
-
- TextBuilder replyMSG = new TextBuilder("<html><title>Merchant Shop Lists</title>");
- replyMSG.append("<body>");
- if (activeChar.getTarget() instanceof L2MerchantInstance)
- {
- String mpcName = ((L2MerchantInstance) activeChar.getTarget()).getMpc().getName();
- replyMSG.append("<br>NPC: " + activeChar.getTarget().getName());
- replyMSG.append("<br>Price Config: " + mpcName);
- }
- replyMSG.append("<br>Select a list to view");
- replyMSG.append("<table>");
- replyMSG.append("<tr><td>Mecrchant List ID</td></tr>");
-
- for (L2TradeList tradeList : tradeLists)
- {
- if (tradeList != null)
- replyMSG.append("<tr><td><a action=\"bypass -h admin_showShopList " + tradeList.getListId() + " 1\">Trade List " + tradeList.getListId() + "</a></td></tr>");
- }
-
- replyMSG.append("</table>");
- replyMSG.append("<center>");
- replyMSG.append("<button value=\"Close\" action=\"bypass -h admin_close_window\" width=100 height=15 back=\"L2UI_ct1.button_df\" fore=\"L2UI_ct1.button_df\">");
- replyMSG.append("</center></body></html>");
-
- adminReply.setHtml(replyMSG.toString());
- activeChar.sendPacket(adminReply);
- }
-
- private void storeTradeList(int itemID, int price, int tradeListID, int order)
- {
- java.sql.Connection con = null;
- try
- {
- con = L2DatabaseFactory.getInstance().getConnection();
- PreparedStatement stmt = con.prepareStatement("INSERT INTO merchant_buylists (`item_id`,`price`,`shop_id`,`order`) values (" + itemID + "," + price + "," + tradeListID + "," + order + ")");
- stmt.execute();
- stmt.close();
- }
- catch (SQLException esql)
- {
- esql.printStackTrace();
- }
- finally
- {
- try
- {
- con.close();
- }
- catch (SQLException e)
- {
- e.printStackTrace();
- }
- }
- }
-
- private void updateTradeList(int itemID, int price, int tradeListID, int order)
- {
- java.sql.Connection con = null;
- try
- {
- con = L2DatabaseFactory.getInstance().getConnection();
- PreparedStatement stmt = con.prepareStatement("UPDATE merchant_buylists SET `price`='" + price + "' WHERE `shop_id`='" + tradeListID + "' AND `order`='" + order + "'");
- stmt.execute();
- stmt.close();
- }
- catch (SQLException esql)
- {
- esql.printStackTrace();
- }
- finally
- {
- try
- {
- con.close();
- }
- catch (SQLException e)
- {
- e.printStackTrace();
- }
- }
- }
-
- private void deleteTradeList(int tradeListID, int order)
- {
- java.sql.Connection con = null;
- try
- {
- con = L2DatabaseFactory.getInstance().getConnection();
- PreparedStatement stmt = con.prepareStatement("DELETE FROM merchant_buylists WHERE `shop_id`='" + tradeListID + "' AND `order`='" + order + "'");
- stmt.execute();
- stmt.close();
- }
- catch (SQLException esql)
- {
- esql.printStackTrace();
- }
- finally
- {
- try
- {
- con.close();
- }
- catch (SQLException e)
- {
- e.printStackTrace();
- }
- }
- }
-
- private int findOrderTradeList(int itemID, int price, int tradeListID)
- {
- java.sql.Connection con = null;
- int order = 0;
- try
- {
- con = L2DatabaseFactory.getInstance().getConnection();
- PreparedStatement stmt = con.prepareStatement("SELECT * FROM merchant_buylists WHERE `shop_id`='" + tradeListID + "' AND `item_id` ='" + itemID + "' AND `price` = '" + price + "'");
- ResultSet rs = stmt.executeQuery();
- rs.first();
-
- order = rs.getInt("order");
-
- stmt.close();
- rs.close();
- }
- catch (SQLException esql)
- {
- esql.printStackTrace();
- }
- finally
- {
- try
- {
- con.close();
- }
- catch (SQLException e)
- {
- e.printStackTrace();
- }
- }
- return order;
- }
-
- private List<L2TradeList> getTradeLists(int merchantID)
- {
- String target = "npc_%objectId%_Buy";
-
- String content = HtmCache.getInstance().getHtm("data/html/merchant/" + merchantID + ".htm");
-
- if (content == null)
- {
- content = HtmCache.getInstance().getHtm("data/html/merchant/30001.htm");
- if (content == null)
- return null;
- }
-
- List<L2TradeList> tradeLists = new FastList<L2TradeList>();
-
- String[] lines = content.split("\n");
- int pos = 0;
-
- for (String line : lines)
- {
- pos = line.indexOf(target);
- if (pos >= 0)
- {
- int tradeListID = Integer.decode((line.substring(pos + target.length() + 1)).split("\"")[0]);
- tradeLists.add(TradeController.getInstance().getBuyList(tradeListID));
- }
- }
- return tradeLists;
- }
-
- public String[] getAdminCommandList()
- {
- return ADMIN_COMMANDS;
- }
-
- private void Show_Npc_Property(L2PcInstance activeChar, L2NpcTemplate npc)
- {
- NpcHtmlMessage adminReply = new NpcHtmlMessage(5);
- String content = HtmCache.getInstance().getHtm("data/html/admin/editnpc.htm");
-
- if (content != null)
- {
- adminReply.setHtml(content);
- adminReply.replace("%npcId%", String.valueOf(npc.npcId));
- adminReply.replace("%templateId%", String.valueOf(npc.idTemplate));
- adminReply.replace("%name%", npc.name);
- adminReply.replace("%serverSideName%", npc.serverSideName == true ? "1" : "0");
- adminReply.replace("%title%", npc.title);
- adminReply.replace("%serverSideTitle%", npc.serverSideTitle == true ? "1" : "0");
- adminReply.replace("%collisionRadius%", String.valueOf(npc.collisionRadius));
- adminReply.replace("%collisionHeight%", String.valueOf(npc.collisionHeight));
- adminReply.replace("%level%", String.valueOf(npc.level));
- adminReply.replace("%sex%", String.valueOf(npc.sex));
- adminReply.replace("%type%", String.valueOf(npc.type));
- adminReply.replace("%attackRange%", String.valueOf(npc.baseAtkRange));
- adminReply.replace("%hp%", String.valueOf(npc.baseHpMax));
- adminReply.replace("%mp%", String.valueOf(npc.baseMpMax));
- adminReply.replace("%hpRegen%", String.valueOf(npc.baseHpReg));
- adminReply.replace("%mpRegen%", String.valueOf(npc.baseMpReg));
- adminReply.replace("%str%", String.valueOf(npc.baseSTR));
- adminReply.replace("%con%", String.valueOf(npc.baseCON));
- adminReply.replace("%dex%", String.valueOf(npc.baseDEX));
- adminReply.replace("%int%", String.valueOf(npc.baseINT));
- adminReply.replace("%wit%", String.valueOf(npc.baseWIT));
- adminReply.replace("%men%", String.valueOf(npc.baseMEN));
- adminReply.replace("%exp%", String.valueOf(npc.rewardExp));
- adminReply.replace("%sp%", String.valueOf(npc.rewardSp));
- adminReply.replace("%pAtk%", String.valueOf(npc.basePAtk));
- adminReply.replace("%pDef%", String.valueOf(npc.basePDef));
- adminReply.replace("%mAtk%", String.valueOf(npc.baseMAtk));
- adminReply.replace("%mDef%", String.valueOf(npc.baseMDef));
- adminReply.replace("%pAtkSpd%", String.valueOf(npc.basePAtkSpd));
- adminReply.replace("%aggro%", String.valueOf(npc.aggroRange));
- adminReply.replace("%mAtkSpd%", String.valueOf(npc.baseMAtkSpd));
- adminReply.replace("%rHand%", String.valueOf(npc.rhand));
- adminReply.replace("%lHand%", String.valueOf(npc.lhand));
- adminReply.replace("%armor%", String.valueOf(npc.armor));
- adminReply.replace("%walkSpd%", String.valueOf(npc.baseWalkSpd));
- adminReply.replace("%runSpd%", String.valueOf(npc.baseRunSpd));
- adminReply.replace("%factionId%", npc.factionId == null ? "" : npc.factionId);
- adminReply.replace("%factionRange%", String.valueOf(npc.factionRange));
- adminReply.replace("%isUndead%", npc.isUndead ? "1" : "0");
- adminReply.replace("%absorbLevel%", String.valueOf(npc.absorbLevel));
- }
- else
- adminReply.setHtml("<html><head><body>File not found: data/html/admin/editnpc.htm</body></html>");
- activeChar.sendPacket(adminReply);
- }
-
- private void save_npc_property(L2PcInstance activeChar, String command)
- {
- String[] commandSplit = command.split(" ");
-
- if (commandSplit.length < 4)
- return;
-
- StatsSet newNpcData = new StatsSet();
-
- try
- {
- newNpcData.set("npcId", commandSplit[1]);
-
- String statToSet = commandSplit[2];
- String value = commandSplit[3];
-
- if (commandSplit.length > 4)
- {
- for (int i = 0; i < commandSplit.length - 3; i++)
- value += " " + commandSplit[i + 4];
- }
-
- if (statToSet.equals("templateId"))
- newNpcData.set("idTemplate", Integer.valueOf(value));
- else if (statToSet.equals("name"))
- newNpcData.set("name", value);
- else if (statToSet.equals("serverSideName"))
- newNpcData.set("serverSideName", Integer.valueOf(value));
- else if (statToSet.equals("title"))
- newNpcData.set("title", value);
- else if (statToSet.equals("serverSideTitle"))
- newNpcData.set("serverSideTitle", Integer.valueOf(value) == 1 ? 1 : 0);
- else if (statToSet.equals("collisionRadius"))
- newNpcData.set("collision_radius", Integer.valueOf(value));
- else if (statToSet.equals("collisionHeight"))
- newNpcData.set("collision_height", Integer.valueOf(value));
- else if (statToSet.equals("level"))
- newNpcData.set("level", Integer.valueOf(value));
- else if (statToSet.equals("sex"))
- {
- int intValue = Integer.valueOf(value);
- newNpcData.set("sex", intValue == 0 ? "male" : intValue == 1 ? "female" : "etc");
- }
- else if (statToSet.equals("type"))
- {
- Class.forName("net.sf.l2j.gameserver.model.actor.instance." + value + "Instance");
- newNpcData.set("type", value);
- }
- else if (statToSet.equals("attackRange"))
- newNpcData.set("attackrange", Integer.valueOf(value));
- else if (statToSet.equals("hp"))
- newNpcData.set("hp", Integer.valueOf(value));
- else if (statToSet.equals("mp"))
- newNpcData.set("mp", Integer.valueOf(value));
- else if (statToSet.equals("hpRegen"))
- newNpcData.set("hpreg", Integer.valueOf(value));
- else if (statToSet.equals("mpRegen"))
- newNpcData.set("mpreg", Integer.valueOf(value));
- else if (statToSet.equals("str"))
- newNpcData.set("str", Integer.valueOf(value));
- else if (statToSet.equals("con"))
- newNpcData.set("con", Integer.valueOf(value));
- else if (statToSet.equals("dex"))
- newNpcData.set("dex", Integer.valueOf(value));
- else if (statToSet.equals("int"))
- newNpcData.set("int", Integer.valueOf(value));
- else if (statToSet.equals("wit"))
- newNpcData.set("wit", Integer.valueOf(value));
- else if (statToSet.equals("men"))
- newNpcData.set("men", Integer.valueOf(value));
- else if (statToSet.equals("exp"))
- newNpcData.set("exp", Integer.valueOf(value));
- else if (statToSet.equals("sp"))
- newNpcData.set("sp", Integer.valueOf(value));
- else if (statToSet.equals("pAtk"))
- newNpcData.set("patk", Integer.valueOf(value));
- else if (statToSet.equals("pDef"))
- newNpcData.set("pdef", Integer.valueOf(value));
- else if (statToSet.equals("mAtk"))
- newNpcData.set("matk", Integer.valueOf(value));
- else if (statToSet.equals("mDef"))
- newNpcData.set("mdef", Integer.valueOf(value));
- else if (statToSet.equals("pAtkSpd"))
- newNpcData.set("atkspd", Integer.valueOf(value));
- else if (statToSet.equals("aggro"))
- newNpcData.set("aggro", Integer.valueOf(value));
- else if (statToSet.equals("mAtkSpd"))
- newNpcData.set("matkspd", Integer.valueOf(value));
- else if (statToSet.equals("rHand"))
- newNpcData.set("rhand", Integer.valueOf(value));
- else if (statToSet.equals("lHand"))
- newNpcData.set("lhand", Integer.valueOf(value));
- else if (statToSet.equals("armor"))
- newNpcData.set("armor", Integer.valueOf(value));
- else if (statToSet.equals("runSpd"))
- newNpcData.set("runspd", Integer.valueOf(value));
- else if (statToSet.equals("factionId"))
- newNpcData.set("faction_id", value);
- else if (statToSet.equals("factionRange"))
- newNpcData.set("faction_range", Integer.valueOf(value));
- else if (statToSet.equals("isUndead"))
- newNpcData.set("isUndead", Integer.valueOf(value) == 1 ? 1 : 0);
- else if (statToSet.equals("absorbLevel"))
- {
- int intVal = Integer.valueOf(value);
- newNpcData.set("absorb_level", intVal < 0 ? 0 : intVal > 12 ? 0 : intVal);
- }
- }
- catch (Exception e)
- {
- _log.warning("Error saving new npc value: " + e);
- }
-
- NpcTable.getInstance().saveNpc(newNpcData);
-
- int npcId = newNpcData.getInteger("npcId");
-
- NpcTable.getInstance().reloadNpc(npcId);
- Show_Npc_Property(activeChar, NpcTable.getInstance().getTemplate(npcId));
- }
-
- private void showNpcDropList(L2PcInstance activeChar, int npcId)
- {
- L2NpcTemplate npcData = NpcTable.getInstance().getTemplate(npcId);
- if (npcData == null)
- {
- activeChar.sendMessage("unknown npc template id" + npcId);
- return;
- }
-
- NpcHtmlMessage adminReply = new NpcHtmlMessage(5);
-
- TextBuilder replyMSG = new TextBuilder("<html><title>NPC: " + npcData.name + "(" + npcData.npcId + ") 's drop manage</title>");
- replyMSG.append("<body>");
- replyMSG.append("<br>Notes: click[drop_id]to show the detail of drop data,click[del] to delete the drop data!");
- replyMSG.append("<table>");
- replyMSG.append("<tr><td>npc_id itemId category</td><td>item[id]</td><td>type</td><td>del</td></tr>");
-
- if (npcData.getDropData() != null)
- for (L2DropCategory cat : npcData.getDropData())
- for (L2DropData drop : cat.getAllDrops())
- {
- replyMSG.append("<tr><td><a action=\"bypass -h admin_edit_drop " + npcData.npcId + " " + drop.getItemId() + " " + cat.getCategoryType() + "\">" + npcData.npcId + " " + drop.getItemId() + " " + cat.getCategoryType()
- + "</a></td>" + "<td>" + ItemTable.getInstance().getTemplate(drop.getItemId()).getName() + "[" + drop.getItemId() + "]" + "</td><td>" + (drop.isQuestDrop() ? "Q" : (cat.isSweep() ? "S" : "D")) + "</td><td>"
- + "<a action=\"bypass -h admin_del_drop " + npcData.npcId + " " + drop.getItemId() + " " + cat.getCategoryType() + "\">del</a></td></tr>");
- }
-
- replyMSG.append("</table>");
- replyMSG.append("<center>");
- replyMSG.append("<button value=\"Add DropData\" action=\"bypass -h admin_add_drop " + npcId + "\" width=100 height=15 back=\"L2UI_ct1.button_df\" fore=\"L2UI_ct1.button_df\">");
- replyMSG.append("<button value=\"Close\" action=\"bypass -h admin_close_window\" width=100 height=15 back=\"L2UI_ct1.button_df\" fore=\"L2UI_ct1.button_df\">");
- replyMSG.append("</center></body></html>");
-
- adminReply.setHtml(replyMSG.toString());
- activeChar.sendPacket(adminReply);
-
- }
-
- private void showEditDropData(L2PcInstance activeChar, int npcId, int itemId, int category)
- {
- java.sql.Connection con = null;
-
- try
- {
- con = L2DatabaseFactory.getInstance().getConnection();
-
- PreparedStatement statement = con.prepareStatement("SELECT mobId, itemId, min, max, category, chance FROM droplist WHERE mobId=" + npcId + " AND itemId=" + itemId + " AND category=" + category);
- ResultSet dropData = statement.executeQuery();
-
- NpcHtmlMessage adminReply = new NpcHtmlMessage(5);
-
- TextBuilder replyMSG = new TextBuilder("<html><title>the detail of dropdata: (" + npcId + " " + itemId + " " + category + ")</title>");
- replyMSG.append("<body>");
-
- if (dropData.next())
- {
- replyMSG.append("<table>");
- replyMSG.append("<tr><td>Appertain of NPC</td><td>" + NpcTable.getInstance().getTemplate(dropData.getInt("mobId")).name + "</td></tr>");
- replyMSG.append("<tr><td>ItemName</td><td>" + ItemTable.getInstance().getTemplate(dropData.getInt("itemId")).getName() + "(" + dropData.getInt("itemId") + ")</td></tr>");
- replyMSG.append("<tr><td>Category</td><td>" + ((category == -1) ? "sweep" : Integer.toString(category)) + "</td></tr>");
- replyMSG.append("<tr><td>MIN(" + dropData.getInt("min") + ")</td><td><edit var=\"min\" width=80></td></tr>");
- replyMSG.append("<tr><td>MAX(" + dropData.getInt("max") + ")</td><td><edit var=\"max\" width=80></td></tr>");
- replyMSG.append("<tr><td>CHANCE(" + dropData.getInt("chance") + ")</td><td><edit var=\"chance\" width=80></td></tr>");
- replyMSG.append("</table>");
-
- replyMSG.append("<center>");
- replyMSG.append("<button value=\"Save Modify\" action=\"bypass -h admin_edit_drop " + npcId + " " + itemId + " " + category
- + " $min $max $chance\" width=100 height=15 back=\"L2UI_ct1.button_df\" fore=\"L2UI_ct1.button_df\">");
- replyMSG.append("<br><button value=\"DropList\" action=\"bypass -h admin_show_droplist " + dropData.getInt("mobId") + "\" width=100 height=15 back=\"L2UI_ct1.button_df\" fore=\"L2UI_ct1.button_df\">");
- replyMSG.append("</center>");
- }
-
- dropData.close();
- statement.close();
-
- replyMSG.append("</body></html>");
- adminReply.setHtml(replyMSG.toString());
-
- activeChar.sendPacket(adminReply);
- }
- catch (Exception e)
- {
- }
- finally
- {
- try
- {
- con.close();
- }
- catch (Exception e)
- {
- }
- }
- }
-
- private void showAddDropData(L2PcInstance activeChar, L2NpcTemplate npcData)
- {
- NpcHtmlMessage adminReply = new NpcHtmlMessage(5);
-
- TextBuilder replyMSG = new TextBuilder("<html><title>Add dropdata to " + npcData.name + "(" + npcData.npcId + ")</title>");
- replyMSG.append("<body>");
- replyMSG.append("<table>");
- replyMSG.append("<tr><td>Item-Id</td><td><edit var=\"itemId\" width=80></td></tr>");
- replyMSG.append("<tr><td>MIN</td><td><edit var=\"min\" width=80></td></tr>");
- replyMSG.append("<tr><td>MAX</td><td><edit var=\"max\" width=80></td></tr>");
- replyMSG.append("<tr><td>CATEGORY(sweep=-1)</td><td><edit var=\"category\" width=80></td></tr>");
- replyMSG.append("<tr><td>CHANCE(0-1000000)</td><td><edit var=\"chance\" width=80></td></tr>");
- replyMSG.append("</table>");
-
- replyMSG.append("<center>");
- replyMSG.append("<button value=\"SAVE\" action=\"bypass -h admin_add_drop " + npcData.npcId + " $itemId $category $min $max $chance\" width=100 height=15 back=\"L2UI_ct1.button_df\" fore=\"L2UI_ct1.button_df\">");
- replyMSG.append("<br><button value=\"DropList\" action=\"bypass -h admin_show_droplist " + npcData.npcId + "\" width=100 height=15 back=\"L2UI_ct1.button_df\" fore=\"L2UI_ct1.button_df\">");
- replyMSG.append("</center>");
- replyMSG.append("</body></html>");
- adminReply.setHtml(replyMSG.toString());
-
- activeChar.sendPacket(adminReply);
- }
-
- private void updateDropData(L2PcInstance activeChar, int npcId, int itemId, int min, int max, int category, int chance)
- {
- java.sql.Connection con = null;
-
- try
- {
- con = L2DatabaseFactory.getInstance().getConnection();
-
- PreparedStatement statement = con.prepareStatement("UPDATE droplist SET min=?, max=?, chance=? WHERE mobId=? AND itemId=? AND category=?");
- statement.setInt(1, min);
- statement.setInt(2, max);
- statement.setInt(3, chance);
- statement.setInt(4, npcId);
- statement.setInt(5, itemId);
- statement.setInt(6, category);
-
- statement.execute();
- statement.close();
-
- PreparedStatement statement2 = con.prepareStatement("SELECT mobId FROM droplist WHERE mobId=? AND itemId=? AND category=?");
- statement2.setInt(1, npcId);
- statement2.setInt(2, itemId);
- statement2.setInt(3, category);
-
- ResultSet npcIdRs = statement2.executeQuery();
- if (npcIdRs.next())
- npcId = npcIdRs.getInt("mobId");
- npcIdRs.close();
- statement2.close();
-
- if (npcId > 0)
- {
- reLoadNpcDropList(npcId);
-
- NpcHtmlMessage adminReply = new NpcHtmlMessage(5);
- TextBuilder replyMSG = new TextBuilder("<html><title>Drop data modify complete!</title>");
- replyMSG.append("<body>");
- replyMSG.append("<center><button value=\"DropList\" action=\"bypass -h admin_show_droplist " + npcId + "\" width=100 height=15 back=\"L2UI_ct1.button_df\" fore=\"L2UI_ct1.button_df\"></center>");
- replyMSG.append("</body></html>");
-
- adminReply.setHtml(replyMSG.toString());
- activeChar.sendPacket(adminReply);
- }
- else
- activeChar.sendMessage("unknown error!");
- }
- catch (Exception e)
- {
- e.printStackTrace();
- }
- finally
- {
- try
- {
- con.close();
- }
- catch (Exception e)
- {
- }
- }
- }
-
- private void addDropData(L2PcInstance activeChar, int npcId, int itemId, int min, int max, int category, int chance)
- {
- java.sql.Connection con = null;
-
- try
- {
- con = L2DatabaseFactory.getInstance().getConnection();
-
- PreparedStatement statement = con.prepareStatement("INSERT INTO droplist(mobId, itemId, min, max, category, chance) values(?,?,?,?,?,?)");
- statement.setInt(1, npcId);
- statement.setInt(2, itemId);
- statement.setInt(3, min);
- statement.setInt(4, max);
- statement.setInt(5, category);
- statement.setInt(6, chance);
- statement.execute();
- statement.close();
-
- reLoadNpcDropList(npcId);
-
- NpcHtmlMessage adminReply = new NpcHtmlMessage(5);
- TextBuilder replyMSG = new TextBuilder("<html><title>Add drop data complete!</title>");
- replyMSG.append("<body>");
- replyMSG.append("<center><button value=\"Continue add\" action=\"bypass -h admin_add_drop " + npcId + "\" width=100 height=15 back=\"L2UI_ct1.button_df\" fore=\"L2UI_ct1.button_df\">");
- replyMSG.append("<br><br><button value=\"DropList\" action=\"bypass -h admin_show_droplist " + npcId + "\" width=100 height=15 back=\"L2UI_ct1.button_df\" fore=\"L2UI_ct1.button_df\">");
- replyMSG.append("</center></body></html>");
-
- adminReply.setHtml(replyMSG.toString());
- activeChar.sendPacket(adminReply);
- }
- catch (Exception e)
- {
- }
- finally
- {
- try
- {
- con.close();
- }
- catch (Exception e)
- {
- }
- }
- }
-
- private void deleteDropData(L2PcInstance activeChar, int npcId, int itemId, int category)
- {
- java.sql.Connection con = null;
- try
- {
- con = L2DatabaseFactory.getInstance().getConnection();
-
- if (npcId > 0)
- {
- PreparedStatement statement2 = con.prepareStatement("DELETE FROM droplist WHERE mobId=? AND itemId=? AND category=?");
- statement2.setInt(1, npcId);
- statement2.setInt(2, itemId);
- statement2.setInt(3, category);
- statement2.execute();
- statement2.close();
-
- reLoadNpcDropList(npcId);
-
- NpcHtmlMessage adminReply = new NpcHtmlMessage(5);
- TextBuilder replyMSG = new TextBuilder("<html><title>Delete drop data(" + npcId + ", " + itemId + ", " + category + ")complete</title>");
- replyMSG.append("<body>");
- replyMSG.append("<center><button value=\"DropList\" action=\"bypass -h admin_show_droplist " + npcId + "\" width=100 height=15 back=\"L2UI_ct1.button_df\" fore=\"L2UI_ct1.button_df\"></center>");
- replyMSG.append("</body></html>");
-
- adminReply.setHtml(replyMSG.toString());
- activeChar.sendPacket(adminReply);
-
- }
- }
- catch (Exception e)
- {
- }
- finally
- {
- try
- {
- con.close();
- }
- catch (Exception e)
- {
- }
- }
-
- }
-
- private void reLoadNpcDropList(int npcId)
- {
- L2NpcTemplate npcData = NpcTable.getInstance().getTemplate(npcId);
- if (npcData == null)
- return;
-
- // reset the drop lists
- npcData.clearAllDropData();
-
- // get the drops
- java.sql.Connection con = null;
- try
- {
- con = L2DatabaseFactory.getInstance().getConnection();
- L2DropData dropData = null;
-
- npcData.clearAllDropData();
-
- PreparedStatement statement = con.prepareStatement("SELECT " + L2DatabaseFactory.getInstance().safetyString(new String[]
- {
- "mobId", "itemId", "min", "max", "category", "chance"
- }) + " FROM droplist WHERE mobId=?");
- statement.setInt(1, npcId);
- ResultSet dropDataList = statement.executeQuery();
-
- while (dropDataList.next())
- {
- dropData = new L2DropData();
-
- dropData.setItemId(dropDataList.getInt("itemId"));
- dropData.setMinDrop(dropDataList.getInt("min"));
- dropData.setMaxDrop(dropDataList.getInt("max"));
- dropData.setChance(dropDataList.getInt("chance"));
-
- int category = dropDataList.getInt("category");
- npcData.addDropData(dropData, category);
- }
- dropDataList.close();
- statement.close();
- }
- catch (Exception e)
- {
- }
- finally
- {
- try
- {
- con.close();
- }
- catch (Exception e)
- {
- }
- }
- }
- }
|