Addition of Veron AI.
Contributed by Index.
This commit is contained in:
parent
ad974e0400
commit
1854537ebf
@ -1518,6 +1518,23 @@
|
||||
<point X="-115320" Y="244411" Z="-7968" delay="0" run="false" />
|
||||
<point X="-115322" Y="245040" Z="-7968" delay="0" run="false" />
|
||||
</route>
|
||||
<route name="si_lib_03" repeat="true" repeatStyle="back">
|
||||
<target id="33112" spawnX="-115224" spawnY="244056" spawnZ="-7925" />
|
||||
<point X="-115224" Y="244056" Z="-7968" delay="0" run="false" />
|
||||
<point X="-115319" Y="244702" Z="-7968" delay="0" run="false" />
|
||||
<point X="-115182" Y="245104" Z="-7968" delay="0" run="false" />
|
||||
<point X="-115087" Y="245251" Z="-7968" delay="0" run="false" />
|
||||
<point X="-114636" Y="245311" Z="-7968" delay="0" run="false" />
|
||||
<point X="-114358" Y="245171" Z="-7968" delay="0" run="false" />
|
||||
<point X="-114210" Y="245069" Z="-7968" delay="0" run="false" />
|
||||
<point X="-113962" Y="244734" Z="-7968" delay="0" run="false" />
|
||||
<point X="-114117" Y="244311" Z="-7968" delay="0" run="false" />
|
||||
<point X="-114359" Y="244090" Z="-7968" delay="0" run="false" />
|
||||
<point X="-114635" Y="244081" Z="-7968" delay="0" run="false" />
|
||||
<point X="-115043" Y="244170" Z="-7968" delay="0" run="false" />
|
||||
<point X="-115329" Y="244455" Z="-7968" delay="0" run="false" />
|
||||
<point X="-115451" Y="245039" Z="-7968" delay="0" run="false" />
|
||||
</route>
|
||||
<!-- Windmill Hill walkers -->
|
||||
<route name="windmill_decoline1" repeat="true" repeatStyle="back">
|
||||
<target id="33422" spawnX="-77644" spawnY="165991" spawnZ="-3704" />
|
||||
|
@ -1,20 +1,20 @@
|
||||
/*
|
||||
* This file is part of the L2J Mobius project.
|
||||
*
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
* the Free Software Foundation, either version 3 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
* General Public License for more details.
|
||||
*
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License
|
||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
package ai.areas.TalkingIsland;
|
||||
package ai.areas.TalkingIsland.Walkers;
|
||||
|
||||
import org.l2jmobius.gameserver.enums.ChatType;
|
||||
import org.l2jmobius.gameserver.model.actor.Npc;
|
62
L2J_Mobius_01.0_Ertheia/dist/game/data/scripts/ai/areas/TalkingIsland/Walkers/Veron.java
vendored
Normal file
62
L2J_Mobius_01.0_Ertheia/dist/game/data/scripts/ai/areas/TalkingIsland/Walkers/Veron.java
vendored
Normal file
@ -0,0 +1,62 @@
|
||||
/*
|
||||
* This file is part of the L2J Mobius project.
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
* the Free Software Foundation, either version 3 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
* General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License
|
||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
package ai.areas.TalkingIsland.Walkers;
|
||||
|
||||
import org.l2jmobius.gameserver.enums.ChatType;
|
||||
import org.l2jmobius.gameserver.model.actor.Npc;
|
||||
import org.l2jmobius.gameserver.model.actor.Player;
|
||||
import org.l2jmobius.gameserver.network.NpcStringId;
|
||||
|
||||
import ai.AbstractNpcAI;
|
||||
|
||||
/**
|
||||
* Veron AI.
|
||||
* @author Index
|
||||
*/
|
||||
public class Veron extends AbstractNpcAI
|
||||
{
|
||||
// NPC
|
||||
private static final int VERON = 33112;
|
||||
|
||||
private Veron()
|
||||
{
|
||||
addSpawnId(VERON);
|
||||
}
|
||||
|
||||
@Override
|
||||
public String onAdvEvent(String event, Npc npc, Player player)
|
||||
{
|
||||
if (event.equals("NPC_SHOUT"))
|
||||
{
|
||||
npc.broadcastSay(ChatType.NPC_GENERAL, NpcStringId.SHILEN);
|
||||
startQuestTimer("NPC_SHOUT", (10 + getRandom(5)) * 1000, npc, null);
|
||||
}
|
||||
return super.onAdvEvent(event, npc, player);
|
||||
}
|
||||
|
||||
@Override
|
||||
public String onSpawn(Npc npc)
|
||||
{
|
||||
startQuestTimer("NPC_SHOUT", (10 + getRandom(5)) * 1000, npc, null);
|
||||
return super.onSpawn(npc);
|
||||
}
|
||||
|
||||
public static void main(String[] args)
|
||||
{
|
||||
new Veron();
|
||||
}
|
||||
}
|
@ -342,6 +342,7 @@
|
||||
<npc id="33002" x="-109706" y="237424" z="-2960" heading="64353" respawnTime="60sec" /> <!-- -->
|
||||
<npc id="33004" x="-114710" y="245444" z="-7968" heading="49152" respawnTime="60sec" /> <!-- Toyron -->
|
||||
<npc id="33111" x="-114945" y="243991" z="-7968" heading="34854" respawnTime="60sec" /> <!-- Kandra -->
|
||||
<npc id="33112" x="-115224" y="244056" z="-7925" heading="57363" respawnTime="60sec" /> <!-- Veron -->
|
||||
<npc id="33106" x="-118471" y="249016" z="-1904" respawnTime="60sec" /> <!-- Guard -->
|
||||
<npc id="33106" x="-120005" y="246922" z="-1304" respawnTime="60sec" /> <!-- Guard -->
|
||||
<npc id="33107" x="-122185" y="240690" z="-2328" respawnTime="60sec" /> <!-- -->
|
||||
|
Loading…
Reference in New Issue
Block a user