Spawn AI for Toma.
This commit is contained in:
parent
2d70b82d65
commit
442cf232df
@ -1,5 +1,5 @@
|
||||
<html><body>Master Toma:<br>
|
||||
Who are you?<br>
|
||||
I don't speak with those I do not know. Just go on!<br>
|
||||
I don't speak with those I do not know... Just go on!<br>
|
||||
<a action="bypass -h npc_%objectId%_Quest">Quest</a>
|
||||
</body></html>
|
69
L2J_Mobius_CT_2.6_HighFive/dist/game/data/scripts/ai/areas/DwarvenVillage/Toma/Toma.java
vendored
Normal file
69
L2J_Mobius_CT_2.6_HighFive/dist/game/data/scripts/ai/areas/DwarvenVillage/Toma/Toma.java
vendored
Normal file
@ -0,0 +1,69 @@
|
||||
/*
|
||||
* 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.DwarvenVillage.Toma;
|
||||
|
||||
import com.l2jmobius.gameserver.model.Location;
|
||||
import com.l2jmobius.gameserver.model.actor.L2Npc;
|
||||
import com.l2jmobius.gameserver.model.actor.instance.L2PcInstance;
|
||||
|
||||
import ai.AbstractNpcAI;
|
||||
|
||||
/**
|
||||
* @author Mobius
|
||||
*/
|
||||
public class Toma extends AbstractNpcAI
|
||||
{
|
||||
// NPC
|
||||
private static final int TOMA = 30556;
|
||||
// Locations
|
||||
private static final Location[] LOCATIONS =
|
||||
{
|
||||
new Location(151680, -174891, -1782),
|
||||
new Location(154153, -220105, -3402),
|
||||
new Location(178834, -184336, -355, 41400)
|
||||
};
|
||||
// Misc
|
||||
private static final int TELEPORT_DELAY = 1800000; // 30 minutes
|
||||
|
||||
private Toma()
|
||||
{
|
||||
addFirstTalkId(TOMA);
|
||||
onAdvEvent("RESPAWN_TOMA", null, null);
|
||||
startQuestTimer("RESPAWN_TOMA", TELEPORT_DELAY, null, null, true);
|
||||
}
|
||||
|
||||
@Override
|
||||
public String onAdvEvent(String event, L2Npc npc, L2PcInstance player)
|
||||
{
|
||||
if (event.equals("RESPAWN_TOMA"))
|
||||
{
|
||||
addSpawn(TOMA, LOCATIONS[getRandom(LOCATIONS.length)], false, TELEPORT_DELAY);
|
||||
}
|
||||
return null;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String onFirstTalk(L2Npc npc, L2PcInstance player)
|
||||
{
|
||||
return "30556.htm";
|
||||
}
|
||||
|
||||
public static void main(String[] args)
|
||||
{
|
||||
new Toma();
|
||||
}
|
||||
}
|
@ -33258,7 +33258,6 @@
|
||||
<npc id="22258" x="154116" y="179356" z="-3472" heading="13481" respawnDelay="60" />
|
||||
<npc id="22855" x="154126" y="114954" z="-5248" heading="42071" respawnDelay="60" />
|
||||
<npc id="22265" x="154127" y="149289" z="-3336" heading="0" respawnDelay="60" />
|
||||
<npc id="30556" x="154132" y="-220070" z="-3392" heading="0" respawnDelay="60" />
|
||||
<npc id="21314" x="154132" y="-110104" z="-2701" heading="46910" respawnDelay="70" />
|
||||
<npc id="21111" x="154138" y="-15008" z="-4076" heading="0" respawnDelay="45" />
|
||||
<npc id="22854" x="154153" y="114577" z="-5240" heading="54603" respawnDelay="60" />
|
||||
|
Loading…
Reference in New Issue
Block a user