123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646 |
- /*
- * Copyright (C) 2004-2015 L2J DataPack
- *
- * This file is part of L2J DataPack.
- *
- * L2J DataPack 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.
- *
- * L2J DataPack 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 instances.NornilsGarden;
- import instances.AbstractInstance;
- import quests.Q00179_IntoTheLargeCavern.Q00179_IntoTheLargeCavern;
- import com.l2jserver.gameserver.datatables.SkillData;
- import com.l2jserver.gameserver.instancemanager.InstanceManager;
- import com.l2jserver.gameserver.model.L2Party;
- import com.l2jserver.gameserver.model.Location;
- import com.l2jserver.gameserver.model.actor.L2Character;
- import com.l2jserver.gameserver.model.actor.L2Npc;
- import com.l2jserver.gameserver.model.actor.instance.L2DoorInstance;
- import com.l2jserver.gameserver.model.actor.instance.L2PcInstance;
- import com.l2jserver.gameserver.model.entity.Instance;
- import com.l2jserver.gameserver.model.instancezone.InstanceWorld;
- import com.l2jserver.gameserver.model.quest.QuestState;
- import com.l2jserver.gameserver.model.quest.State;
- import com.l2jserver.gameserver.model.skills.Skill;
- import com.l2jserver.gameserver.model.zone.L2ZoneType;
- import com.l2jserver.gameserver.network.SystemMessageId;
- import com.l2jserver.gameserver.network.serverpackets.SystemMessage;
- import com.l2jserver.gameserver.util.Util;
- /**
- * Nornil's Garden instance zone.
- * @author Gnacik
- * @version 2010-10-15 Based on official server Naia
- */
- public final class NornilsGarden extends AbstractInstance
- {
- protected class NornilsWorld extends InstanceWorld
- {
- protected L2Npc first_npc = null;
- protected boolean spawned_1 = false;
- protected boolean spawned_2 = false;
- protected boolean spawned_3 = false;
- protected boolean spawned_4 = false;
- }
-
- // NPCs
- private static final int _garden_guard = 32330;
- private static final int[] _final_gates =
- {
- 32260,
- 32261,
- 32262
- };
- // Skills
- private static final Skill skill1 = SkillData.getInstance().getSkill(4322, 1);
- private static final Skill skill2 = SkillData.getInstance().getSkill(4327, 1);
- private static final Skill skill3 = SkillData.getInstance().getSkill(4329, 1);
- private static final Skill skill4 = SkillData.getInstance().getSkill(4324, 1);
- // Locations
- private static final Location SPAWN_PPL = new Location(-111184, 74540, -12430);
- private static final Location EXIT_PPL = new Location(-74058, 52040, -3680);
- // Misc
- private static final int TEMPLATE_ID = 11;
- private static final int DURATION_TIME = 70;
- private static final int EMPTY_DESTROY_TIME = 5;
- private static final int INSTANCE_LVL_MIN = 18;
- private static final int INSTANCE_LVL_MAX = 22;
- private static final int[][] _auto_gates =
- {
- // Warriors gate
- {
- 20110,
- 16200001
- },
- // Midway gate
- {
- 20111,
- 16200004
- },
- // Gate
- {
- 20112,
- 16200013
- }
- };
- private static final int _herb_jar = 18478;
- // @formatter:off
- private static final int[][] _gatekeepers =
- {
- { 18352, 9703, 0 }, // Kamael Guard
- { 18353, 9704, 0 }, // Guardian of Records
- { 18354, 9705, 0 }, // Guardian of Observation
- { 18355, 9706, 0 }, // Spicula's Guard
- { 18356, 9707, 16200024 }, // Harkilgamed's Gatekeeper
- { 18357, 9708, 16200025 }, // Rodenpicula's Gatekeeper
- { 18358, 9713, 0 }, // Guardian of Secrets
- { 18359, 9709, 16200023 }, // Arviterre's Guardian
- { 18360, 9710, 0 }, // Katenar's Gatekeeper
- { 18361, 9711, 0 }, // Guardian of Prediction
- { 25528, 9712, 0 } // Tiberias
- };
- private static final int[][] HP_HERBS_DROPLIST =
- {
- // itemId, count, chance
- { 8602, 1, 10 },
- { 8601, 2, 40 },
- { 8600, 3, 70 }
- };
- private static final int[][] _group_1 =
- {
- { 18363, -109899, 74431, -12528, 16488 },
- { 18483, -109701, 74501, -12528, 24576 },
- { 18483, -109892, 74886, -12528, 0 },
- { 18363, -109703, 74879, -12528, 49336 }
- };
- private static final int[][] _group_2 =
- {
- { 18363, -110393, 78276, -12848, 49152 },
- { 18363, -110561, 78276, -12848, 49152 },
- { 18362, -110414, 78495, -12905, 48112 },
- { 18362, -110545, 78489, -12903, 48939 },
- { 18483, -110474, 78601, -12915, 49488 },
- { 18362, -110474, 78884, -12915, 49338 },
- { 18483, -110389, 79131, -12915, 48539 },
- { 18483, -110551, 79134, -12915, 49151 }
- };
- private static final int[][] _group_3 =
- {
- { 18483, -107798, 80721, -12912, 0 },
- { 18483, -107798, 80546, -12912, 0 },
- { 18347, -108033, 80644, -12912, 0 },
- { 18363, -108520, 80647, -12912, 0 },
- { 18483, -108740, 80752, -12912, 0 },
- { 18363, -109016, 80642, -12912, 0 },
- { 18483, -108740, 80546, -12912, 0 }
- };
- private static final int[][] _group_4 =
- {
- { 18362, -110082, 83998, -12928, 0 },
- { 18362, -110082, 84210, -12928, 0 },
- { 18363, -109963, 84102, -12896, 0 },
- { 18347, -109322, 84102, -12880, 0 },
- { 18362, -109131, 84097, -12880, 0 },
- { 18483, -108932, 84101, -12880, 0 },
- { 18483, -109313, 84488, -12880, 0 },
- { 18362, -109122, 84490, -12880, 0 },
- { 18347, -108939, 84489, -12880, 0 }
- };
- private static final int[][] MP_HERBS_DROPLIST =
- {
- // itemId, count, chance
- { 8605, 1, 10 },
- { 8604, 2, 40 },
- { 8603, 3, 70 }
- };
- // @formatter:on
-
- private static final void dropHerb(L2Npc mob, L2PcInstance player, int[][] drop)
- {
- final int chance = getRandom(100);
- for (int[] element : drop)
- {
- if (chance < element[2])
- {
- mob.dropItem(player, element[0], element[1]);
- }
- }
- }
-
- private static final void giveBuffs(L2Character ch)
- {
- if (skill1 != null)
- {
- skill1.applyEffects(ch, ch);
- }
- if (skill2 != null)
- {
- skill2.applyEffects(ch, ch);
- }
- if (skill3 != null)
- {
- skill3.applyEffects(ch, ch);
- }
- if (skill4 != null)
- {
- skill4.applyEffects(ch, ch);
- }
- }
-
- public NornilsGarden()
- {
- super(NornilsGarden.class.getSimpleName());
- addStartNpc(_garden_guard);
- addFirstTalkId(_garden_guard);
- addTalkId(_garden_guard);
- for (int i[] : _gatekeepers)
- {
- addKillId(i[0]);
- }
- for (int i[] : _auto_gates)
- {
- addEnterZoneId(i[0]);
- }
- addTalkId(_final_gates);
- addAttackId(_herb_jar);
- addAttackId(18362); // first garden guard
- }
-
- @Override
- public final void teleportPlayer(L2PcInstance player, Location loc, int instanceId)
- {
- giveBuffs(player);
- if (player.hasSummon())
- {
- giveBuffs(player.getSummon());
- }
- super.teleportPlayer(player, loc, instanceId);
- }
-
- private void exitInstance(L2PcInstance player)
- {
- InstanceWorld inst = InstanceManager.getInstance().getWorld(player.getInstanceId());
- if (inst instanceof NornilsWorld)
- {
- NornilsWorld world = ((NornilsWorld) inst);
- world.removeAllowed(player.getObjectId());
- teleportPlayer(player, EXIT_PPL, 0);
- }
- }
-
- private final synchronized String enterInstance(L2Npc npc, L2PcInstance player)
- {
- InstanceWorld world = InstanceManager.getInstance().getPlayerWorld(player);
- if (world != null)
- {
- if (!(world instanceof NornilsWorld) || (world.getTemplateId() != TEMPLATE_ID))
- {
- player.sendPacket(SystemMessageId.YOU_HAVE_ENTERED_ANOTHER_INSTANT_ZONE_THEREFORE_YOU_CANNOT_ENTER_CORRESPONDING_DUNGEON);
- return null;
- }
- // check for level difference again on reenter
- if ((player.getLevel() > INSTANCE_LVL_MAX) || (player.getLevel() < INSTANCE_LVL_MIN))
- {
- SystemMessage sm = SystemMessage.getSystemMessage(SystemMessageId.C1_S_LEVEL_REQUIREMENT_IS_NOT_SUFFICIENT_AND_CANNOT_BE_ENTERED);
- sm.addPcName(player);
- player.sendPacket(sm);
- return null;
- }
- // check what instance still exist
- final Instance inst = InstanceManager.getInstance().getInstance(world.getInstanceId());
- if (inst != null)
- {
- teleportPlayer(player, SPAWN_PPL, world.getInstanceId());
- }
- return null;
- }
- // Creating new instance
- String result = checkConditions(npc, player);
- if (!(result.equalsIgnoreCase("ok")))
- {
- return result;
- }
-
- final int instanceId = InstanceManager.getInstance().createDynamicInstance("NornilsGarden.xml");
- final Instance inst = InstanceManager.getInstance().getInstance(instanceId);
-
- inst.setName(InstanceManager.getInstance().getInstanceIdName(TEMPLATE_ID));
- inst.setSpawnLoc(new Location(player));
- inst.setAllowSummon(false);
- inst.setDuration(DURATION_TIME * 60000);
- inst.setEmptyDestroyTime(EMPTY_DESTROY_TIME * 60000);
- world = new NornilsWorld();
- world.setInstanceId(instanceId);
- world.setTemplateId(TEMPLATE_ID);
- InstanceManager.getInstance().addWorld(world);
- _log.info("Nornils Garden: started, Instance: " + instanceId + " created by player: " + player.getName());
-
- prepareInstance((NornilsWorld) world);
-
- // and finally teleport party into instance
- final L2Party party = player.getParty();
- if (party != null)
- {
- for (L2PcInstance partyMember : party.getMembers())
- {
- world.addAllowed(partyMember.getObjectId());
- teleportPlayer(partyMember, SPAWN_PPL, instanceId);
- }
- }
- return null;
- }
-
- private void prepareInstance(NornilsWorld world)
- {
- world.first_npc = addSpawn(18362, -109702, 74696, -12528, 49568, false, 0, false, world.getInstanceId());
-
- final L2DoorInstance door = getDoor(16200010, world.getInstanceId());
- if (door != null)
- {
- door.setTargetable(false);
- door.setMeshIndex(2);
- }
- }
-
- private void spawn1(L2Npc npc)
- {
- InstanceWorld inst = InstanceManager.getInstance().getWorld(npc.getInstanceId());
- if (inst instanceof NornilsWorld)
- {
- NornilsWorld world = ((NornilsWorld) inst);
- if (npc.equals(world.first_npc) && !world.spawned_1)
- {
- world.spawned_1 = true;
-
- for (int mob[] : _group_1)
- {
- addSpawn(mob[0], mob[1], mob[2], mob[3], mob[4], false, 0, false, world.getInstanceId());
- }
- }
- }
- }
-
- private void spawn2(L2Npc npc)
- {
- InstanceWorld inst = InstanceManager.getInstance().getWorld(npc.getInstanceId());
- if (inst instanceof NornilsWorld)
- {
- NornilsWorld world = ((NornilsWorld) inst);
- if (!world.spawned_2)
- {
- world.spawned_2 = true;
-
- for (int mob[] : _group_2)
- {
- addSpawn(mob[0], mob[1], mob[2], mob[3], mob[4], false, 0, false, world.getInstanceId());
- }
- }
- }
- }
-
- private void spawn3(L2Character cha)
- {
- InstanceWorld inst = InstanceManager.getInstance().getWorld(cha.getInstanceId());
- if (inst instanceof NornilsWorld)
- {
- NornilsWorld world = ((NornilsWorld) inst);
- if (!world.spawned_3)
- {
- world.spawned_3 = true;
-
- for (int mob[] : _group_3)
- {
- addSpawn(mob[0], mob[1], mob[2], mob[3], mob[4], false, 0, false, world.getInstanceId());
- }
- }
- }
- }
-
- private void spawn4(L2Character cha)
- {
- InstanceWorld inst = InstanceManager.getInstance().getWorld(cha.getInstanceId());
- if (inst instanceof NornilsWorld)
- {
- NornilsWorld world = ((NornilsWorld) inst);
- if (!world.spawned_4)
- {
- world.spawned_4 = true;
-
- for (int mob[] : _group_4)
- {
- addSpawn(mob[0], mob[1], mob[2], mob[3], mob[4], false, 0, false, world.getInstanceId());
- }
- }
- }
- }
-
- public void openDoor(QuestState st, L2PcInstance player, int doorId)
- {
- st.unset("correct");
- InstanceWorld tmpworld = InstanceManager.getInstance().getWorld(player.getInstanceId());
- if (tmpworld instanceof NornilsWorld)
- {
- openDoor(doorId, tmpworld.getInstanceId());
- }
- }
-
- private static final String checkConditions(L2Npc npc, L2PcInstance player)
- {
- final L2Party party = player.getParty();
- // player must be in party
- if (party == null)
- {
- player.sendPacket(SystemMessageId.NOT_IN_PARTY_CANT_ENTER);
- return "32330-05.html";
- }
- // ...and be party leader
- if (party.getLeader() != player)
- {
- player.sendPacket(SystemMessageId.ONLY_PARTY_LEADER_CAN_ENTER);
- return "32330-08.html";
- }
- boolean _kamael = false;
- // for each party member
- for (L2PcInstance partyMember : party.getMembers())
- {
- // player level must be in range
- if (partyMember.getLevel() > INSTANCE_LVL_MAX)
- {
- SystemMessage sm = SystemMessage.getSystemMessage(SystemMessageId.C1_S_LEVEL_REQUIREMENT_IS_NOT_SUFFICIENT_AND_CANNOT_BE_ENTERED);
- sm.addPcName(partyMember);
- player.sendPacket(sm);
- return "32330-06.html";
- }
- if (partyMember.getLevel() < INSTANCE_LVL_MIN)
- {
- SystemMessage sm = SystemMessage.getSystemMessage(SystemMessageId.C1_S_LEVEL_REQUIREMENT_IS_NOT_SUFFICIENT_AND_CANNOT_BE_ENTERED);
- sm.addPcName(partyMember);
- player.sendPacket(sm);
- return "32330-07.html";
- }
- if (partyMember.getClassId().level() != 0)
- {
- SystemMessage sm = SystemMessage.getSystemMessage(SystemMessageId.C1_S_LEVEL_REQUIREMENT_IS_NOT_SUFFICIENT_AND_CANNOT_BE_ENTERED);
- sm.addPcName(partyMember);
- player.sendPacket(sm);
- return "32330-06.html";
- }
- // player must be near party leader
- if (!partyMember.isInsideRadius(player, 500, true, true))
- {
- SystemMessage sm = SystemMessage.getSystemMessage(SystemMessageId.C1_IS_IN_A_LOCATION_WHICH_CANNOT_BE_ENTERED_THEREFORE_IT_CANNOT_BE_PROCESSED);
- sm.addPcName(partyMember);
- player.sendPacket(sm);
- return "32330-08.html";
- }
- if (partyMember.getRace().ordinal() == 5)
- {
- QuestState checkst = partyMember.getQuestState(Q00179_IntoTheLargeCavern.class.getSimpleName());
- if ((checkst != null) && (checkst.getState() == State.STARTED))
- {
- _kamael = true;
- }
- else
- {
- SystemMessage sm = SystemMessage.getSystemMessage(SystemMessageId.C1_S_QUEST_REQUIREMENT_IS_NOT_SUFFICIENT_AND_CANNOT_BE_ENTERED);
- sm.addPcName(partyMember);
- player.sendPacket(sm);
- return "32330-08.html";
- }
- }
- }
- if (!_kamael)
- {
- return "32330-08.html";
- }
- return "ok";
- }
-
- @Override
- public String onEnterZone(L2Character character, L2ZoneType zone)
- {
- if ((character instanceof L2PcInstance) && !character.isDead() && !character.isTeleporting() && ((L2PcInstance) character).isOnline())
- {
- InstanceWorld tmpworld = InstanceManager.getInstance().getWorld(character.getInstanceId());
- if (tmpworld instanceof NornilsWorld)
- {
- for (int _auto[] : _auto_gates)
- {
- if (zone.getId() == _auto[0])
- {
- openDoor(_auto[1], tmpworld.getInstanceId());
- }
- if (zone.getId() == 20111)
- {
- spawn3(character);
- }
- else if (zone.getId() == 20112)
- {
- spawn4(character);
- }
-
- }
- }
- }
- return super.onEnterZone(character, zone);
- }
-
- @Override
- public final String onAdvEvent(String event, L2Npc npc, L2PcInstance player)
- {
- String htmltext = event;
- QuestState st = getQuestState(player, false);
- if (st == null)
- {
- return getNoQuestMsg(player);
- }
-
- if ((npc.getId() == _garden_guard) && event.equalsIgnoreCase("enter_instance"))
- {
- try
- {
- htmltext = enterInstance(npc, player);
- }
- catch (Exception e)
- {
- }
- }
- else if ((npc.getId() == 32258) && event.equalsIgnoreCase("exit"))
- {
- try
- {
- exitInstance(player);
- }
- catch (Exception e)
- {
- }
- }
- else if (Util.contains(_final_gates, npc.getId()))
- {
- if (event.equalsIgnoreCase("32260-02.html") || event.equalsIgnoreCase("32261-02.html") || event.equalsIgnoreCase("32262-02.html"))
- {
- st.unset("correct");
- }
- else if (Util.isDigit(event))
- {
- int correct = st.getInt("correct");
- correct++;
- st.set("correct", String.valueOf(correct));
- htmltext = npc.getId() + "-0" + String.valueOf(correct + 2) + ".html";
- }
- else if (event.equalsIgnoreCase("check"))
- {
- int correct = st.getInt("correct");
- if ((npc.getId() == 32260) && (correct == 3))
- {
- openDoor(st, player, 16200014);
- }
- else if ((npc.getId() == 32261) && (correct == 3))
- {
- openDoor(st, player, 16200015);
- }
- else if ((npc.getId() == 32262) && (correct == 4))
- {
- openDoor(st, player, 16200016);
- }
- else
- {
- return npc.getId() + "-00.html";
- }
- }
- }
- return htmltext;
- }
-
- @Override
- public final String onTalk(L2Npc npc, L2PcInstance player)
- {
- if (Util.contains(_final_gates, npc.getId()))
- {
- QuestState cst = player.getQuestState(Q00179_IntoTheLargeCavern.class.getSimpleName());
- if ((cst != null) && (cst.getState() == State.STARTED))
- {
- return npc.getId() + "-01.html";
- }
- return getNoQuestMsg(player);
- }
-
- return null;
- }
-
- @Override
- public final String onFirstTalk(L2Npc npc, L2PcInstance player)
- {
- getQuestState(player, true);
- return npc.getId() + ".html";
- }
-
- @Override
- public final String onAttack(L2Npc npc, L2PcInstance attacker, int damage, boolean isSummon)
- {
- if ((npc.getId() == _herb_jar) && !npc.isDead())
- {
- dropHerb(npc, attacker, HP_HERBS_DROPLIST);
- dropHerb(npc, attacker, MP_HERBS_DROPLIST);
- npc.doDie(attacker);
- }
- else if ((npc.getId() == 18362) && (npc.getInstanceId() > 0))
- {
- spawn1(npc);
- }
- return null;
- }
-
- @Override
- public final String onKill(L2Npc npc, L2PcInstance player, boolean isSummon)
- {
- final QuestState st = getQuestState(player, false);
- if (st == null)
- {
- return null;
- }
-
- for (int _gk[] : _gatekeepers)
- {
- if (npc.getId() == _gk[0])
- {
- // Drop key
- npc.dropItem(player, _gk[1], 1);
-
- // Check if gatekeeper should open bridge, and open it
- if (_gk[2] > 0)
- {
- InstanceWorld tmpworld = InstanceManager.getInstance().getWorld(player.getInstanceId());
- if (tmpworld instanceof NornilsWorld)
- {
- openDoor(_gk[2], tmpworld.getInstanceId());
- }
- }
- }
- if (npc.getId() == 18355)
- {
- spawn2(npc);
- }
- }
- return super.onKill(npc, player, isSummon);
- }
-
- @Override
- public void onEnterInstance(L2PcInstance player, InstanceWorld world, boolean firstEntrance)
- {
-
- }
- }
|