From 44932c8ec2c100fba3799a77a72d38549766436f Mon Sep 17 00:00:00 2001 From: MobiusDevelopment <8391001+MobiusDevelopment@users.noreply.github.com> Date: Tue, 28 Apr 2020 22:50:59 +0000 Subject: [PATCH] Orfen should be teleported to with 25% HP instead of 50%. Contributed by Iris. --- .../dist/game/data/scripts/ai/bosses/Orfen/Orfen.java | 2 +- .../dist/game/data/scripts/ai/bosses/Orfen/Orfen.java | 2 +- .../dist/game/data/scripts/ai/bosses/Orfen/Orfen.java | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/L2J_Mobius_Classic_2.3_SevenSigns/dist/game/data/scripts/ai/bosses/Orfen/Orfen.java b/L2J_Mobius_Classic_2.3_SevenSigns/dist/game/data/scripts/ai/bosses/Orfen/Orfen.java index edd3abc4b8..e2b7b55c6b 100644 --- a/L2J_Mobius_Classic_2.3_SevenSigns/dist/game/data/scripts/ai/bosses/Orfen/Orfen.java +++ b/L2J_Mobius_Classic_2.3_SevenSigns/dist/game/data/scripts/ai/bosses/Orfen/Orfen.java @@ -291,7 +291,7 @@ public class Orfen extends AbstractNpcAI final int npcId = npc.getId(); if (npcId == ORFEN) { - if (!_IsTeleported && ((npc.getCurrentHp() - damage) < (npc.getMaxHp() / 2))) + if (!_IsTeleported && ((npc.getCurrentHp() - damage) < (npc.getMaxHp() / 4))) { _IsTeleported = true; setSpawnPoint(npc, 0); diff --git a/L2J_Mobius_Classic_2.4_SecretOfEmpire/dist/game/data/scripts/ai/bosses/Orfen/Orfen.java b/L2J_Mobius_Classic_2.4_SecretOfEmpire/dist/game/data/scripts/ai/bosses/Orfen/Orfen.java index edd3abc4b8..e2b7b55c6b 100644 --- a/L2J_Mobius_Classic_2.4_SecretOfEmpire/dist/game/data/scripts/ai/bosses/Orfen/Orfen.java +++ b/L2J_Mobius_Classic_2.4_SecretOfEmpire/dist/game/data/scripts/ai/bosses/Orfen/Orfen.java @@ -291,7 +291,7 @@ public class Orfen extends AbstractNpcAI final int npcId = npc.getId(); if (npcId == ORFEN) { - if (!_IsTeleported && ((npc.getCurrentHp() - damage) < (npc.getMaxHp() / 2))) + if (!_IsTeleported && ((npc.getCurrentHp() - damage) < (npc.getMaxHp() / 4))) { _IsTeleported = true; setSpawnPoint(npc, 0); diff --git a/L2J_Mobius_Classic_3.0_TheKamael/dist/game/data/scripts/ai/bosses/Orfen/Orfen.java b/L2J_Mobius_Classic_3.0_TheKamael/dist/game/data/scripts/ai/bosses/Orfen/Orfen.java index edd3abc4b8..e2b7b55c6b 100644 --- a/L2J_Mobius_Classic_3.0_TheKamael/dist/game/data/scripts/ai/bosses/Orfen/Orfen.java +++ b/L2J_Mobius_Classic_3.0_TheKamael/dist/game/data/scripts/ai/bosses/Orfen/Orfen.java @@ -291,7 +291,7 @@ public class Orfen extends AbstractNpcAI final int npcId = npc.getId(); if (npcId == ORFEN) { - if (!_IsTeleported && ((npc.getCurrentHp() - damage) < (npc.getMaxHp() / 2))) + if (!_IsTeleported && ((npc.getCurrentHp() - damage) < (npc.getMaxHp() / 4))) { _IsTeleported = true; setSpawnPoint(npc, 0);