Skip to content
Snippets Groups Projects
Commit 35ba6e27 authored by Zealar's avatar Zealar
Browse files

Fix SkillChannelizer for Naia Falan

Reported by: @maneco2

Also
- Improve and add missing data in skill
- Proper mobs location spawn
- Remove random walk
parent 60458c0d
No related branches found
No related tags found
No related merge requests found
...@@ -41,7 +41,7 @@ public final class HellboundCore extends AbstractNpcAI ...@@ -41,7 +41,7 @@ public final class HellboundCore extends AbstractNpcAI
public HellboundCore() public HellboundCore()
{ {
super(HellboundCore.class.getSimpleName(), "hellbound/AI"); super(HellboundCore.class.getSimpleName(), "hellbound/AI");
addSpawnId(HELLBOUND_CORE); addSpawnId(HELLBOUND_CORE, NAIA);
} }
@Override @Override
...@@ -51,7 +51,7 @@ public final class HellboundCore extends AbstractNpcAI ...@@ -51,7 +51,7 @@ public final class HellboundCore extends AbstractNpcAI
{ {
for (L2Character naia : npc.getKnownList().getKnownCharactersInRadius(900)) for (L2Character naia : npc.getKnownList().getKnownCharactersInRadius(900))
{ {
if ((naia != null) && naia.isMonster() && (naia.getId() == NAIA) && !naia.isDead()) if ((naia != null) && naia.isMonster() && (naia.getId() == NAIA) && !naia.isDead() && !naia.isChanneling())
{ {
naia.setTarget(npc); naia.setTarget(npc);
naia.doSimultaneousCast(BEAM.getSkill()); naia.doSimultaneousCast(BEAM.getSkill());
...@@ -65,7 +65,15 @@ public final class HellboundCore extends AbstractNpcAI ...@@ -65,7 +65,15 @@ public final class HellboundCore extends AbstractNpcAI
@Override @Override
public final String onSpawn(L2Npc npc) public final String onSpawn(L2Npc npc)
{ {
startQuestTimer("cast", 10000, npc, null); if (npc.getId() == NAIA)
{
npc.setIsNoRndWalk(true);
}
else
{
startQuestTimer("cast", 10000, npc, null);
}
return super.onSpawn(npc); return super.onSpawn(npc);
} }
} }
\ No newline at end of file
...@@ -2072,32 +2072,32 @@ ...@@ -2072,32 +2072,32 @@
<hellboundLevel min="5" /> <hellboundLevel min="5" />
</npc> </npc>
<npc id="18484"> <npc id="18484">
<location x="-23428" y="245322" z="-3142" /> <location x="-23428" y="245408" z="-3072" />
<respawn delay="300" randomInterval="150" /> <respawn delay="300" randomInterval="150" />
<hellboundLevel min="6" max="6" /> <hellboundLevel min="6" max="6" />
</npc> </npc>
<npc id="18484"> <npc id="18484">
<location x="-23627" y="244925" z="-3138" /> <location x="-23845" y="244452" z="-3138" />
<respawn delay="300" randomInterval="150" /> <respawn delay="300" randomInterval="150" />
<hellboundLevel min="6" max="6" /> <hellboundLevel min="6" max="6" />
</npc> </npc>
<npc id="18484"> <npc id="18484">
<location x="-23199" y="245080" z="-3138" /> <location x="-23619" y="245844" z="-3140" />
<respawn delay="300" randomInterval="150" /> <respawn delay="300" randomInterval="150" />
<hellboundLevel min="6" max="6" /> <hellboundLevel min="6" max="6" />
</npc> </npc>
<npc id="18484"> <npc id="18484">
<location x="-24270" y="245074" z="-3132" /> <location x="-24391" y="244782" z="-3138" />
<respawn delay="300" randomInterval="150" /> <respawn delay="300" randomInterval="150" />
<hellboundLevel min="6" max="6" /> <hellboundLevel min="6" max="6" />
</npc> </npc>
<npc id="18484"> <npc id="18484">
<location x="-23798" y="245110" z="-3109" /> <location x="-24354" y="245380" z="-3138" />
<respawn delay="300" randomInterval="150" /> <respawn delay="300" randomInterval="150" />
<hellboundLevel min="6" max="6" /> <hellboundLevel min="6" max="6" />
</npc> </npc>
<npc id="18484"> <npc id="18484">
<location x="-24409" y="244729" z="-3138" /> <location x="-23319" y="244695" z="-3138" />
<respawn delay="300" randomInterval="150" /> <respawn delay="300" randomInterval="150" />
<hellboundLevel min="6" max="6" /> <hellboundLevel min="6" max="6" />
</npc> </npc>
......
...@@ -1263,7 +1263,7 @@ ...@@ -1263,7 +1263,7 @@
<set name="abnormalVisualEffect" val="NONE" /> <set name="abnormalVisualEffect" val="NONE" />
<set name="castRange" val="800" /> <set name="castRange" val="800" />
<set name="channelingSkillId" val="5106" /> <set name="channelingSkillId" val="5106" />
<set name="channelingSkillId" val="5106" /> <set name="channelingTickInterval" val="2" />
<set name="effectPoint" val="1" /> <set name="effectPoint" val="1" />
<set name="effectRange" val="1000" /> <set name="effectRange" val="1000" />
<set name="hitTime" val="25000" /> <set name="hitTime" val="25000" />
...@@ -1276,6 +1276,9 @@ ...@@ -1276,6 +1276,9 @@
<set name="reuseDelay" val="1000" /> <set name="reuseDelay" val="1000" />
<set name="rideState" val="NONE;STRIDER;WYVERN;WOLF" /> <set name="rideState" val="NONE;STRIDER;WYVERN;WOLF" />
<set name="targetType" val="ONE" /> <set name="targetType" val="ONE" />
<cond msgId="109">
<target npcId="32331" />
</cond>
</skill> </skill>
<skill id="5494" levels="1" name="Gust"> <skill id="5494" levels="1" name="Gust">
<!-- Confirmed CT2.5 --> <!-- Confirmed CT2.5 -->
......
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