Skip to content
Snippets Groups Projects
Commit cab39a87 authored by xban1x's avatar xban1x
Browse files

BETA: DP-Part for [L6234].

	* Reviewed by: UnAfraid, Zoey76
parent 826ff9be
No related branches found
No related tags found
No related merge requests found
......@@ -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";
}
......
......@@ -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);
......
......@@ -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";
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment