Addition of Toma AI.
This commit is contained in:
parent
013bd485fe
commit
ac6476c14f
5
L2J_Mobius_Classic_2.0_Saviors/dist/game/data/scripts/ai/areas/DwarvenVillage/Toma/30556.htm
vendored
Normal file
5
L2J_Mobius_Classic_2.0_Saviors/dist/game/data/scripts/ai/areas/DwarvenVillage/Toma/30556.htm
vendored
Normal file
@ -0,0 +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>
|
||||
<Button ALIGN=LEFT ICON="QUEST" action="bypass -h npc_%objectId%_Quest">Quest</Button>
|
||||
</body></html>
|
69
L2J_Mobius_Classic_2.0_Saviors/dist/game/data/scripts/ai/areas/DwarvenVillage/Toma/Toma.java
vendored
Normal file
69
L2J_Mobius_Classic_2.0_Saviors/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();
|
||||
}
|
||||
}
|
5
L2J_Mobius_Classic_2.0_Zaken/dist/game/data/scripts/ai/areas/DwarvenVillage/Toma/30556.htm
vendored
Normal file
5
L2J_Mobius_Classic_2.0_Zaken/dist/game/data/scripts/ai/areas/DwarvenVillage/Toma/30556.htm
vendored
Normal file
@ -0,0 +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>
|
||||
<Button ALIGN=LEFT ICON="QUEST" action="bypass -h npc_%objectId%_Quest">Quest</Button>
|
||||
</body></html>
|
69
L2J_Mobius_Classic_2.0_Zaken/dist/game/data/scripts/ai/areas/DwarvenVillage/Toma/Toma.java
vendored
Normal file
69
L2J_Mobius_Classic_2.0_Zaken/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();
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user