Timer chances for Pursuit Of Clan Ambition (503).

This commit is contained in:
MobiusDev 2017-09-29 08:59:20 +00:00
parent 0eb5b73195
commit bfc946d627
4 changed files with 10 additions and 10 deletions

View File

@ -804,7 +804,7 @@ public final class Q00503_PursuitOfClanAmbition extends Quest
{
if (npc.isScriptValue(50301))
{
startQuestTimer("DESPAWN_WITCH_ATHREA", 5000, npc, null);
startQuestTimer("DESPAWN_WITCH_ATHREA", 180000, npc, null);
npc.broadcastPacket(new NpcSay(npc, ChatType.NPC_GENERAL, NpcStringId.WAR_AND_DEATH));
}
break;
@ -813,7 +813,7 @@ public final class Q00503_PursuitOfClanAmbition extends Quest
{
if (npc.isScriptValue(50302))
{
startQuestTimer("DESPAWN_WITCH_KALIS", 5000, npc, null);
startQuestTimer("DESPAWN_WITCH_KALIS", 180000, npc, null);
npc.broadcastPacket(new NpcSay(npc, ChatType.NPC_GENERAL, NpcStringId.AMBITION_AND_POWER));
}
break;

View File

@ -804,7 +804,7 @@ public final class Q00503_PursuitOfClanAmbition extends Quest
{
if (npc.isScriptValue(50301))
{
startQuestTimer("DESPAWN_WITCH_ATHREA", 5000, npc, null);
startQuestTimer("DESPAWN_WITCH_ATHREA", 180000, npc, null);
npc.broadcastPacket(new NpcSay(npc, ChatType.NPC_GENERAL, NpcStringId.WAR_AND_DEATH));
}
break;
@ -813,7 +813,7 @@ public final class Q00503_PursuitOfClanAmbition extends Quest
{
if (npc.isScriptValue(50302))
{
startQuestTimer("DESPAWN_WITCH_KALIS", 5000, npc, null);
startQuestTimer("DESPAWN_WITCH_KALIS", 180000, npc, null);
npc.broadcastPacket(new NpcSay(npc, ChatType.NPC_GENERAL, NpcStringId.AMBITION_AND_POWER));
}
break;

View File

@ -804,7 +804,7 @@ public final class Q00503_PursuitOfClanAmbition extends Quest
{
if (npc.isScriptValue(50301))
{
startQuestTimer("DESPAWN_WITCH_ATHREA", 5000, npc, null);
startQuestTimer("DESPAWN_WITCH_ATHREA", 180000, npc, null);
npc.broadcastPacket(new NpcSay(npc, ChatType.NPC_GENERAL, NpcStringId.WAR_AND_DEATH));
}
break;
@ -813,7 +813,7 @@ public final class Q00503_PursuitOfClanAmbition extends Quest
{
if (npc.isScriptValue(50302))
{
startQuestTimer("DESPAWN_WITCH_KALIS", 5000, npc, null);
startQuestTimer("DESPAWN_WITCH_KALIS", 180000, npc, null);
npc.broadcastPacket(new NpcSay(npc, ChatType.NPC_GENERAL, NpcStringId.AMBITION_AND_POWER));
}
break;

View File

@ -307,8 +307,8 @@ public final class Q00503_PursuitOfClanAmbition extends Quest
}
case "SPAWN_WITCH":
{
addSpawn(WITCH_ATHREA, 160688, 21296, -3714, 0, false, 5000);
addSpawn(WITCH_KALIS, 160690, 21176, -3712, 0, false, 5000);
addSpawn(WITCH_ATHREA, 160688, 21296, -3714, 0);
addSpawn(WITCH_KALIS, 160690, 21176, -3712, 0);
break;
}
}
@ -803,13 +803,13 @@ public final class Q00503_PursuitOfClanAmbition extends Quest
{
case WITCH_ATHREA:
{
startQuestTimer("DESPAWN_WITCH_ATHREA", 5000, npc, null);
startQuestTimer("DESPAWN_WITCH_ATHREA", 180000, npc, null);
npc.broadcastPacket(new NpcSay(npc, ChatType.NPC_GENERAL, NpcStringId.WAR_AND_DEATH));
break;
}
case WITCH_KALIS:
{
startQuestTimer("DESPAWN_WITCH_KALIS", 5000, npc, null);
startQuestTimer("DESPAWN_WITCH_KALIS", 180000, npc, null);
npc.broadcastPacket(new NpcSay(npc, ChatType.NPC_GENERAL, NpcStringId.AMBITION_AND_POWER));
break;
}