diff --git a/L2J_DataPack_BETA/dist/game/data/scripts/ai/npc/Teleports/MithrilMinesTeleporter/MithrilMinesTeleporter.java b/L2J_DataPack_BETA/dist/game/data/scripts/ai/npc/Teleports/MithrilMinesTeleporter/MithrilMinesTeleporter.java index b5c3f431758aba2abfaea79a6cdfd37619551575..8679dd91dbaffbfe2355f900355396cd8545302d 100644 --- a/L2J_DataPack_BETA/dist/game/data/scripts/ai/npc/Teleports/MithrilMinesTeleporter/MithrilMinesTeleporter.java +++ b/L2J_DataPack_BETA/dist/game/data/scripts/ai/npc/Teleports/MithrilMinesTeleporter/MithrilMinesTeleporter.java @@ -66,17 +66,17 @@ public class MithrilMinesTeleporter extends AbstractNpcAI @Override public String onFirstTalk(L2Npc npc, L2PcInstance player) { - if (npc.isInsideRadius(173147, -173762, L2Npc.INTERACTION_DISTANCE, true)) + if (npc.isInsideRadius(173147, -173762, 0, L2Npc.INTERACTION_DISTANCE, false, true)) { return "32652-01.htm"; } - if (npc.isInsideRadius(181941, -174614, L2Npc.INTERACTION_DISTANCE, true)) + if (npc.isInsideRadius(181941, -174614, 0, L2Npc.INTERACTION_DISTANCE, false, true)) { return "32652-02.htm"; } - if (npc.isInsideRadius(179560, -182956, L2Npc.INTERACTION_DISTANCE, true)) + if (npc.isInsideRadius(179560, -182956, 0, L2Npc.INTERACTION_DISTANCE, false, true)) { return "32652-03.htm"; } diff --git a/L2J_DataPack_BETA/dist/game/data/scripts/handlers/skillhandlers/NornilsPower.java b/L2J_DataPack_BETA/dist/game/data/scripts/handlers/skillhandlers/NornilsPower.java index 3c89a921a66a226db3953eab18ec5ba54890f630..7bec5b1f69e40e15c3cf8d6047b4361477c37dc8 100644 --- a/L2J_DataPack_BETA/dist/game/data/scripts/handlers/skillhandlers/NornilsPower.java +++ b/L2J_DataPack_BETA/dist/game/data/scripts/handlers/skillhandlers/NornilsPower.java @@ -53,7 +53,7 @@ public class NornilsPower implements ISkillHandler if ((world != null) && (world.getInstanceId() == instanceId) && (world.getTemplateId() == 11)) { - if (activeChar.isInsideRadius(-107393, 83677, 100, true)) + if (activeChar.isInsideRadius(-107393, 83677, 0, 100, false, true)) { activeChar.destroyItemByItemId("NornilsPower", 9713, 1, activeChar, true); L2DoorInstance door = InstanceManager.getInstance().getInstance(world.getInstanceId()).getDoor(16200010); diff --git a/L2J_DataPack_BETA/dist/game/data/scripts/quests/Q00423_TakeYourBestShot/Q00423_TakeYourBestShot.java b/L2J_DataPack_BETA/dist/game/data/scripts/quests/Q00423_TakeYourBestShot/Q00423_TakeYourBestShot.java index 98aada64e879a4b8c8b16ad27cfeb089c0c4e132..ff9caeb1845337b2cecdf01d20ef1231019376f5 100644 --- a/L2J_DataPack_BETA/dist/game/data/scripts/quests/Q00423_TakeYourBestShot/Q00423_TakeYourBestShot.java +++ b/L2J_DataPack_BETA/dist/game/data/scripts/quests/Q00423_TakeYourBestShot/Q00423_TakeYourBestShot.java @@ -88,7 +88,7 @@ public class Q00423_TakeYourBestShot extends Quest @Override public String onFirstTalk(L2Npc npc, L2PcInstance player) { - if (npc.isInsideRadius(96782, 85918, 100, true)) + if (npc.isInsideRadius(96782, 85918, 0, 100, false, true)) { return "32740-ugoros.html"; }