Proper Tarti AI.
Contributed by gigilo1968.
This commit is contained in:
parent
1edd1b8703
commit
bfeaf1cd7c
59
L2J_Mobius_5.0_Salvation/dist/game/data/scripts/ai/areas/Aden/Tarti/Tarti.java
vendored
Normal file
59
L2J_Mobius_5.0_Salvation/dist/game/data/scripts/ai/areas/Aden/Tarti/Tarti.java
vendored
Normal file
@ -0,0 +1,59 @@
|
||||
/*
|
||||
* 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.Aden.Tarti;
|
||||
|
||||
import org.l2jmobius.gameserver.model.actor.Npc;
|
||||
import org.l2jmobius.gameserver.model.actor.instance.PlayerInstance;
|
||||
import org.l2jmobius.gameserver.network.serverpackets.PlaySound;
|
||||
|
||||
import ai.AbstractNpcAI;
|
||||
|
||||
/**
|
||||
* Tarti AI
|
||||
* @author Gigi
|
||||
* @date 2019-08-17 - [22:44:02]
|
||||
*/
|
||||
public class Tarti extends AbstractNpcAI
|
||||
{
|
||||
// NPC
|
||||
private static final int TARTI = 34360;
|
||||
// Misc
|
||||
private static final String[] TARTI_VOICE =
|
||||
{
|
||||
"Npcdialog1.tarti_ep50_greeting_8",
|
||||
"Npcdialog1.tarti_ep50_greeting_9",
|
||||
"Npcdialog1.tarti_ep50_greeting_10"
|
||||
};
|
||||
|
||||
private Tarti()
|
||||
{
|
||||
addStartNpc(TARTI);
|
||||
addFirstTalkId(TARTI);
|
||||
}
|
||||
|
||||
@Override
|
||||
public String onFirstTalk(Npc npc, PlayerInstance player)
|
||||
{
|
||||
player.sendPacket(new PlaySound(3, TARTI_VOICE[getRandom(3)], 0, 0, 0, 0, 0));
|
||||
return "34360.html";
|
||||
}
|
||||
|
||||
public static void main(String[] args)
|
||||
{
|
||||
new Tarti();
|
||||
}
|
||||
}
|
@ -112,7 +112,7 @@
|
||||
<npc id="33946" x="147108" y="25670" z="-2014" heading="14661" respawnTime="60sec" /> <!-- Adventure Guildsman -->
|
||||
<npc id="34413" x="146488" y="26728" z="-2209" heading="2264" respawnTime="60sec" /> <!-- Penny -->
|
||||
<npc id="34362" x="146472" y="26808" z="-2209" heading="62980" respawnTime="60sec" /> <!-- Herphah -->
|
||||
<npc id="34359" x="146856" y="26696" z="-2209" heading="14831" respawnTime="60sec" /> <!-- Tarti -->
|
||||
<npc id="34360" x="146856" y="26696" z="-2209" heading="14831" respawnTime="60sec" /> <!-- Tarti -->
|
||||
</group>
|
||||
</spawn>
|
||||
</list>
|
59
L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/ai/areas/Aden/Tarti/Tarti.java
vendored
Normal file
59
L2J_Mobius_5.5_EtinasFate/dist/game/data/scripts/ai/areas/Aden/Tarti/Tarti.java
vendored
Normal file
@ -0,0 +1,59 @@
|
||||
/*
|
||||
* 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.Aden.Tarti;
|
||||
|
||||
import org.l2jmobius.gameserver.model.actor.Npc;
|
||||
import org.l2jmobius.gameserver.model.actor.instance.PlayerInstance;
|
||||
import org.l2jmobius.gameserver.network.serverpackets.PlaySound;
|
||||
|
||||
import ai.AbstractNpcAI;
|
||||
|
||||
/**
|
||||
* Tarti AI
|
||||
* @author Gigi
|
||||
* @date 2019-08-17 - [22:44:02]
|
||||
*/
|
||||
public class Tarti extends AbstractNpcAI
|
||||
{
|
||||
// NPC
|
||||
private static final int TARTI = 34360;
|
||||
// Misc
|
||||
private static final String[] TARTI_VOICE =
|
||||
{
|
||||
"Npcdialog1.tarti_ep50_greeting_8",
|
||||
"Npcdialog1.tarti_ep50_greeting_9",
|
||||
"Npcdialog1.tarti_ep50_greeting_10"
|
||||
};
|
||||
|
||||
private Tarti()
|
||||
{
|
||||
addStartNpc(TARTI);
|
||||
addFirstTalkId(TARTI);
|
||||
}
|
||||
|
||||
@Override
|
||||
public String onFirstTalk(Npc npc, PlayerInstance player)
|
||||
{
|
||||
player.sendPacket(new PlaySound(3, TARTI_VOICE[getRandom(3)], 0, 0, 0, 0, 0));
|
||||
return "34360.html";
|
||||
}
|
||||
|
||||
public static void main(String[] args)
|
||||
{
|
||||
new Tarti();
|
||||
}
|
||||
}
|
@ -112,7 +112,7 @@
|
||||
<npc id="33946" x="147108" y="25670" z="-2014" heading="14661" respawnTime="60sec" /> <!-- Adventure Guildsman -->
|
||||
<npc id="34413" x="146488" y="26728" z="-2209" heading="2264" respawnTime="60sec" /> <!-- Penny -->
|
||||
<npc id="34362" x="146472" y="26808" z="-2209" heading="62980" respawnTime="60sec" /> <!-- Herphah -->
|
||||
<npc id="34359" x="146856" y="26696" z="-2209" heading="14831" respawnTime="60sec" /> <!-- Tarti -->
|
||||
<npc id="34360" x="146856" y="26696" z="-2209" heading="14831" respawnTime="60sec" /> <!-- Tarti -->
|
||||
</group>
|
||||
</spawn>
|
||||
</list>
|
59
L2J_Mobius_6.0_Fafurion/dist/game/data/scripts/ai/areas/Aden/Tarti/Tarti.java
vendored
Normal file
59
L2J_Mobius_6.0_Fafurion/dist/game/data/scripts/ai/areas/Aden/Tarti/Tarti.java
vendored
Normal file
@ -0,0 +1,59 @@
|
||||
/*
|
||||
* 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.Aden.Tarti;
|
||||
|
||||
import org.l2jmobius.gameserver.model.actor.Npc;
|
||||
import org.l2jmobius.gameserver.model.actor.instance.PlayerInstance;
|
||||
import org.l2jmobius.gameserver.network.serverpackets.PlaySound;
|
||||
|
||||
import ai.AbstractNpcAI;
|
||||
|
||||
/**
|
||||
* Tarti AI
|
||||
* @author Gigi
|
||||
* @date 2019-08-17 - [22:44:02]
|
||||
*/
|
||||
public class Tarti extends AbstractNpcAI
|
||||
{
|
||||
// NPC
|
||||
private static final int TARTI = 34360;
|
||||
// Misc
|
||||
private static final String[] TARTI_VOICE =
|
||||
{
|
||||
"Npcdialog1.tarti_ep50_greeting_8",
|
||||
"Npcdialog1.tarti_ep50_greeting_9",
|
||||
"Npcdialog1.tarti_ep50_greeting_10"
|
||||
};
|
||||
|
||||
private Tarti()
|
||||
{
|
||||
addStartNpc(TARTI);
|
||||
addFirstTalkId(TARTI);
|
||||
}
|
||||
|
||||
@Override
|
||||
public String onFirstTalk(Npc npc, PlayerInstance player)
|
||||
{
|
||||
player.sendPacket(new PlaySound(3, TARTI_VOICE[getRandom(3)], 0, 0, 0, 0, 0));
|
||||
return "34360.html";
|
||||
}
|
||||
|
||||
public static void main(String[] args)
|
||||
{
|
||||
new Tarti();
|
||||
}
|
||||
}
|
@ -112,7 +112,7 @@
|
||||
<npc id="33946" x="147108" y="25670" z="-2014" heading="14661" respawnTime="60sec" /> <!-- Adventure Guildsman -->
|
||||
<npc id="34413" x="146488" y="26728" z="-2209" heading="2264" respawnTime="60sec" /> <!-- Penny -->
|
||||
<npc id="34362" x="146472" y="26808" z="-2209" heading="62980" respawnTime="60sec" /> <!-- Herphah -->
|
||||
<npc id="34359" x="146856" y="26696" z="-2209" heading="14831" respawnTime="60sec" /> <!-- Tarti -->
|
||||
<npc id="34360" x="146856" y="26696" z="-2209" heading="14831" respawnTime="60sec" /> <!-- Tarti -->
|
||||
</group>
|
||||
</spawn>
|
||||
</list>
|
Loading…
Reference in New Issue
Block a user