Перейти к содержанию

taste

Постоялец
  • Публикаций

    3162
  • Зарегистрирован

  • Посещение

  • Победитель дней

    2
  • Отзывы

    0%

Весь контент taste

  1. предлагаю тебе взять готовые сеты)
  2. taste

    Gameserver

    ну у тебя явно файла не хватает попробуй мои закинуть) http://rghost.ru/36095501 в папку version с заменой
  3. taste

    Help!help!help!help

    о_О у тебя протокол совпадает?как ты вобще создаешь ник? русский? со спец символами?
  4. taste

    Help!help!help!help

    либо 911 либо http://l2maxi.ru/3416-interlude-sborka-ser...world-rev2.html если с англ не дружишь
  5. taste

    Help!help!help!help

    ей года 2 уже качай 911
  6. taste

    Gameserver

    кто смелый и поможет ему настроить сборку?)
  7. у меня все ок со всем шмотом который я заливаю
  8. taste

    Проект Ищит

    не советую иметь с ним дело не реклама КИДАЛОВО
  9. taste

    Куплю Готовый Сервер

    скрины в студию
  10. taste

    Интернет)

    и что за комп супер пупер?
  11. taste

    Доступ К Сайту

    от ддоса не спасет
  12. taste

    Помогите

    ну у меня все таже ошибка)
  13. taste

    Помогите

    лол что?этот скрипт в шаре уже год хз че у тебя копировать †DeMoN†™ хз серавно не выходит no main method in custom.AugmentShop.AugmentShop Скрытый текстpackage custom.AugmentShop; import com.l2jfrozen.gameserver.model.actor.instance.L2NpcInstance; import com.l2jfrozen.gameserver.model.actor.instance.L2PcInstance; import com.l2jfrozen.gameserver.model.quest.Quest; import com.l2jfrozen.gameserver.model.quest.QuestState; import com.l2jfrozen.gameserver.model.Inventory; import java.sql.Connection; import java.sql.PreparedStatement; import com.l2jfrozen.util.database.L2DatabaseFactory; import java.util.logging.Level; import com.l2jfrozen.gameserver.model.actor.instance.L2ItemInstance; /** * * @author adapted by Samar 2011 RUSSIA * */ public class AugmentShop extends Quest { private final static int ITEM_ID = 57; private final static int ITEM_COUNT = 1000000; private final static String qn = "AugmentShop"; private final static int NPC = 91000; public AugmentShop(int questId, String name, String descr) { super(questId, name, descr); addFirstTalkId(NPC); addStartNpc(NPC); addTalkId(NPC); } @Override public String onAdvEvent(String event, L2NpcInstance npc, L2PcInstance player) { String htmltext = ""; if (event.equalsIgnoreCase("active")) { htmltext = "active.htm"; } else if (event.equalsIgnoreCase("passive")) { htmltext = "passive.htm"; } else if (event.equalsIgnoreCase("chance")) { htmltext = "chance.htm"; } else { updateAugment(player, Integer.parseInt(event.substring(0,5)), Integer.parseInt(event.substring(6,10)), Integer.parseInt(event.substring(11,13))); } return htmltext; } @Override public String onFirstTalk(L2NpcInstance npc, L2PcInstance player) { String htmltext = ""; QuestState qs = player.getQuestState(qn); if (qs == null) qs = newQuestState(player); htmltext = "main.htm"; return htmltext; } private static void updateAugment(L2PcInstance player, int attributes, int skill, int level) { L2ItemInstance item = player.getInventory().getPaperdollItem(Inventory.PAPERDOLL_RHAND); if (player.getInventory().getPaperdollItem(Inventory.PAPERDOLL_RHAND) == null) { player.sendMessage("You have to equip a weapon."); return; } if (player.getInventory().getPaperdollItem(Inventory.PAPERDOLL_RHAND).isAugmented() ) { player.sendMessage("The weapon is already augmented."); return; } if (player.getInventory().getInventoryItemCount(ITEM_ID, -1) < ITEM_COUNT) { player.sendMessage("You dont have enough item."); return; } Connection con = null; try { player.destroyItemByItemId("Consume", ITEM_ID, ITEM_COUNT, player, true); con = L2DatabaseFactory.getInstance().getConnection(); PreparedStatement statement = con.prepareStatement("REPLACE INTO augmentations VALUES(?,?,?,?)"); statement.setInt(1, item.getObjectId()); statement.setInt(2, attributes*65536+1); statement.setInt(3, skill); statement.setInt(4, level); statement.executeUpdate(); player.sendMessage("Succesfully augmented. You have to relog now."); statement.close(); } catch (Exception e) { _log.log(Level.SEVERE, "Could not augment item: "+item.getObjectId()+" ", e); } finally { try { /*L2DatabaseFactory.close(con);*/ con.close(); } catch (Exception e) { } } } public static void main(String[] args) { new AugmentShop(-1, "AugmentShop", "Augment Shop"); } } вроде правильно или нет?
  14. taste

    Помогите

    не особо но в скриипты я прописал
  15. taste

    Помогите

    гц) но конга удаляю повторяющиеся строчки летят ошибки в яве) Скрытый текстjava.lang.ClassNotFoundException: custom.AugmentShop.AugmentShop at java.net.URLClassLoader$1.run(Unknown Source) at java.security.AccessController.doPrivileged(Native Method) at java.net.URLClassLoader.findClass(Unknown Source) at com.l2jserver.script.java.MemoryClassLoader.findClass(MemoryClassLoad er.java:77) at java.lang.ClassLoader.loadClass(Unknown Source) at java.lang.ClassLoader.loadClass(Unknown Source) at com.l2jserver.script.java.MemoryClassLoader.load(MemoryClassLoader.ja va:58) at com.l2jserver.script.java.JavaScriptEngine.parseMain(JavaScriptEngine .java:113) at com.l2jserver.script.java.JavaScriptEngine.parse(JavaScriptEngine.jav a:106) at com.l2jserver.script.java.JavaScriptEngine.eval(JavaScriptEngine.java :61) at com.l2jserver.script.java.JavaScriptEngine.eval(JavaScriptEngine.java :66) at com.l2jfrozen.gameserver.scripting.L2ScriptEngineManager.executeScrip t(L2ScriptEngineManager.java:450) at com.l2jfrozen.gameserver.scripting.L2ScriptEngineManager.executeScrip t(L2ScriptEngineManager.java:372) at com.l2jfrozen.gameserver.scripting.L2ScriptEngineManager.executeScrip tsList(L2ScriptEngineManager.java:206) at com.l2jfrozen.gameserver.GameServer.main(GameServer.java:465) Failed executing script: C:\newserv\gameserver\data\scripts\custom\AugmentShop\A ugmentShop.java. See AugmentShop.java.error.log for details.
  16. taste

    Помогите

    так должно быть?) Скрытый текстpackage quests.AugmentShop; import com.l2jfrozen.gameserver.model.actor.instance.L2NpcInstance; import com.l2jfrozen.gameserver.model.actor.instance.L2PcInstance; import com.l2jfrozen.gameserver.model.quest.Quest; import com.l2jfrozen.gameserver.model.quest.QuestState; import com.l2jfrozen.gameserver.model.Inventory; import java.sql.Connection; import java.sql.PreparedStatement; import com.l2jfrozen.util.database.L2DatabaseFactory; import java.util.logging.Level; import com.l2jfrozen.gameserver.model.actor.instance.L2ItemInstance; /** * * @author adapted by Samar 2011 RUSSIA * */ public class AugmentShop extends Quest { private final static int ITEM_ID = 57; private final static int ITEM_COUNT = 1000000; private final static String qn = "AugmentShop"; private final static int NPC = 91000; public AugmentShop(int questId, String name, String descr) { super(questId, name, descr); addFirstTalkId(NPC); addStartNpc(NPC); addTalkId(NPC); } @Override public String onAdvEvent(String event, L2NpcInstance npc, L2PcInstance player) { String htmltext = ""; if (event.equalsIgnoreCase("active")) { htmltext = "active.htm"; } else if (event.equalsIgnoreCase("passive")) { htmltext = "passive.htm"; } else if (event.equalsIgnoreCase("chance")) { htmltext = "chance.htm"; } else { updateAugment(player, Integer.parseInt(event.substring(0,5)), Integer.parseInt(event.substring(6,10)), Integer.parseInt(event.substring(11,13))); } return htmltext; } @Override public String onFirstTalk(L2NpcInstance npc, L2PcInstance player) { String htmltext = ""; QuestState qs = player.getQuestState(qn); if (qs == null) qs = newQuestState(player); htmltext = "main.htm"; return htmltext; } public static void main(String[] args) { new AugmentShop(-1, qn, "AugmentShop"); } private static void updateAugment(L2PcInstance player, int attributes, int skill, int level) { L2ItemInstance item = player.getInventory().getPaperdollItem(Inventory.PAPERDOLL_RHAND); if (player.getInventory().getPaperdollItem(Inventory.PAPERDOLL_RHAND) == null) { player.sendMessage("You have to equip a weapon."); return; } if (player.getInventory().getPaperdollItem(Inventory.PAPERDOLL_RHAND).isAugmented() ) { player.sendMessage("The weapon is already augmented."); return; } if (player.getInventory().getInventoryItemCount(ITEM_ID, -1) < ITEM_COUNT) { player.sendMessage("You dont have enough item."); return; } Connection con = null; try { player.destroyItemByItemId("Consume", ITEM_ID, ITEM_COUNT, player, true); con = L2DatabaseFactory.getInstance().getConnection(); PreparedStatement statement = con.prepareStatement("REPLACE INTO augmentations VALUES(?,?,?,?)"); statement.setInt(1, item.getObjectId()); statement.setInt(2, attributes*65536+1); statement.setInt(3, skill); statement.setInt(4, level); statement.executeUpdate(); player.sendMessage("Succesfully augmented. You have to relog now."); statement.close(); } catch (Exception e) { _log.log(Level.SEVERE, "Could not augment item: "+item.getObjectId()+" ", e); } finally { try { /*L2DatabaseFactory.close(con);*/ con.close(); } catch (Exception e) { } } } public static void main(String[] args) { new AugmentShop(-1, "AugmentShop", "Augment Shop"); } } если да то ошибка ---------- 1. ERROR in \AugmentShop.java (at line 75) public static void main(String[] args) ^^^^^^^^^^^^^^^^^^^ Duplicate method main(String[]) in type AugmentShop ---------- 2. ERROR in \AugmentShop.java (at line 138) public static void main(String[] args) ^^^^^^^^^^^^^^^^^^^ Duplicate method main(String[]) in type AugmentShop или я накрабил где?
  17. taste

    Помогите

    Скрытый текстpackage custom.AugmentShop; import com.l2jfrozen.gameserver.model.actor.instance.L2NpcInstance; import com.l2jfrozen.gameserver.model.actor.instance.L2PcInstance; import com.l2jfrozen.gameserver.model.quest.Quest; import com.l2jfrozen.gameserver.model.quest.QuestState; import com.l2jfrozen.gameserver.model.Inventory; import java.sql.Connection; import java.sql.PreparedStatement; import com.l2jfrozen.util.database.L2DatabaseFactory; import java.util.logging.Level; import com.l2jfrozen.gameserver.model.actor.instance.L2ItemInstance; /** * * @author adapted by Samar 2011 RUSSIA * */ public class AugmentShop extends Quest { private final static int ITEM_ID = 57; private final static int ITEM_COUNT = 1000000; private final static String qn = "AugmentShop"; private final static int NPC = 91000; public AugmentShop(int questId, String name, String descr) { super(questId, name, descr); addFirstTalkId(NPC); addStartNpc(NPC); addTalkId(NPC); } @Override public String onAdvEvent(String event, L2NpcInstance npc, L2PcInstance player) { String htmltext = ""; if (event.equalsIgnoreCase("active")) { htmltext = "active.htm"; } else if (event.equalsIgnoreCase("passive")) { htmltext = "passive.htm"; } else if (event.equalsIgnoreCase("chance")) { htmltext = "chance.htm"; } else { updateAugment(player, Integer.parseInt(event.substring(0,5)), Integer.parseInt(event.substring(6,10)), Integer.parseInt(event.substring(11,13))); } return htmltext; } @Override public String onFirstTalk(L2NpcInstance npc, L2PcInstance player) { String htmltext = ""; QuestState qs = player.getQuestState(qn); if (qs == null) qs = newQuestState(player); htmltext = "main.htm"; return htmltext; } public static void main(String[] args) { new AugmentShop(-1, qn, "AugmentShop"); } private static void updateAugment(L2PcInstance player, int attributes, int skill, int level) { L2ItemInstance item = player.getInventory().getPaperdollItem(Inventory.PAPERDOLL_RHAND); if (player.getInventory().getPaperdollItem(Inventory.PAPERDOLL_RHAND) == null) { player.sendMessage("You have to equip a weapon."); return; } if (player.getInventory().getPaperdollItem(Inventory.PAPERDOLL_RHAND).isAugmented() ) { player.sendMessage("The weapon is already augmented."); return; } if (player.getInventory().getInventoryItemCount(ITEM_ID, -1) < ITEM_COUNT) { player.sendMessage("You dont have enough item."); return; } Connection con = null; try { player.destroyItemByItemId("Consume", ITEM_ID, ITEM_COUNT, player, true); con = L2DatabaseFactory.getInstance().getConnection(); PreparedStatement statement = con.prepareStatement("REPLACE INTO augmentations VALUES(?,?,?,?)"); statement.setInt(1, item.getObjectId()); statement.setInt(2, attributes*65536+1); statement.setInt(3, skill); statement.setInt(4, level); statement.executeUpdate(); player.sendMessage("Succesfully augmented. You have to relog now."); statement.close(); } catch (Exception e) { _log.log(Level.SEVERE, "Could not augment item: "+item.getObjectId()+" ", e); } finally { try { /*L2DatabaseFactory.close(con);*/ con.close(); } catch (Exception e) { } } } }
  18. taste

    Малярия

    добавь малярию и флю в бафер и не заморачивайся
  19. taste

    Помогите

    не заработает у меня покрайней мере после смены импортов не пашет
  20. taste

    Нужна Помошь

    открой порты в брендмауэре оффни его офнни антивирус фаервол
  21. taste

    Профили В Бафере

    учи яву тогда раз сам все хочешь
  22. taste

    Профили В Бафере

    ну так не легче взять с профилями и переписать?
  23. taste

    Осады

    по оффу в двух тронках надо кастовать или вы хотите свое сделать?думаю надо ядро капать
  24. хм сделай по аналогии с первыми 2мя
  25. там реализованы фарм и пвп их включить надо только если я не путаю
×
×
  • Создать...