diff --git a/L2J_Mobius_08.2_Homunculus/dist/game/data/scripts/quests/Q11025_PathOfDestinyProving/Q11025_PathOfDestinyProving.java b/L2J_Mobius_08.2_Homunculus/dist/game/data/scripts/quests/Q11025_PathOfDestinyProving/Q11025_PathOfDestinyProving.java index c6b8ce89ea..3f0e1f3c3a 100644 --- a/L2J_Mobius_08.2_Homunculus/dist/game/data/scripts/quests/Q11025_PathOfDestinyProving/Q11025_PathOfDestinyProving.java +++ b/L2J_Mobius_08.2_Homunculus/dist/game/data/scripts/quests/Q11025_PathOfDestinyProving/Q11025_PathOfDestinyProving.java @@ -793,7 +793,13 @@ public class Q11025_PathOfDestinyProving extends Quest return; } + // Fix for player killed skeleton and Telesha disappears. final QuestState qs = getQuestState(player, false); + if ((qs != null) && qs.isCond(13)) + { + qs.setCond(12, false); + } + if (Config.DISABLE_TUTORIAL || ((qs != null) && qs.isCompleted())) { player.sendPacket(ExClassChangeSetAlarm.STATIC_PACKET); diff --git a/L2J_Mobius_09.2_ReturnOfTheQueenAnt/dist/game/data/scripts/quests/Q11025_PathOfDestinyProving/Q11025_PathOfDestinyProving.java b/L2J_Mobius_09.2_ReturnOfTheQueenAnt/dist/game/data/scripts/quests/Q11025_PathOfDestinyProving/Q11025_PathOfDestinyProving.java index 50ed3213b6..5f08cbbf5c 100644 --- a/L2J_Mobius_09.2_ReturnOfTheQueenAnt/dist/game/data/scripts/quests/Q11025_PathOfDestinyProving/Q11025_PathOfDestinyProving.java +++ b/L2J_Mobius_09.2_ReturnOfTheQueenAnt/dist/game/data/scripts/quests/Q11025_PathOfDestinyProving/Q11025_PathOfDestinyProving.java @@ -786,7 +786,13 @@ public class Q11025_PathOfDestinyProving extends Quest return; } + // Fix for player killed skeleton and Telesha disappears. final QuestState qs = getQuestState(player, false); + if ((qs != null) && qs.isCond(13)) + { + qs.setCond(12, false); + } + if (Config.DISABLE_TUTORIAL || ((qs != null) && qs.isCompleted())) { player.sendPacket(ExClassChangeSetAlarm.STATIC_PACKET); diff --git a/L2J_Mobius_10.0_MasterClass/dist/game/data/scripts/quests/Q11025_PathOfDestinyProving/Q11025_PathOfDestinyProving.java b/L2J_Mobius_10.0_MasterClass/dist/game/data/scripts/quests/Q11025_PathOfDestinyProving/Q11025_PathOfDestinyProving.java index 0f706cc170..b87c7a9b12 100644 --- a/L2J_Mobius_10.0_MasterClass/dist/game/data/scripts/quests/Q11025_PathOfDestinyProving/Q11025_PathOfDestinyProving.java +++ b/L2J_Mobius_10.0_MasterClass/dist/game/data/scripts/quests/Q11025_PathOfDestinyProving/Q11025_PathOfDestinyProving.java @@ -787,7 +787,13 @@ public class Q11025_PathOfDestinyProving extends Quest return; } + // Fix for player killed skeleton and Telesha disappears. final QuestState qs = getQuestState(player, false); + if ((qs != null) && qs.isCond(13)) + { + qs.setCond(12, false); + } + if (Config.DISABLE_TUTORIAL || ((qs != null) && qs.isCompleted())) { player.sendPacket(ExClassChangeSetAlarm.STATIC_PACKET);