Skip to content
Snippets Groups Projects
Commit d83eb7d6 authored by St3eT's avatar St3eT
Browse files

BETA: Pailaka - Song Of Ice And Fire (128) update/cleanup. Also separated...

BETA: Pailaka - Song Of Ice And Fire (128) update/cleanup. Also separated Quest and Instance scripts.
* Thanks to: Pandragon
parent 63cfd8b5
No related branches found
No related tags found
No related merge requests found
Showing
with 237 additions and 11 deletions
......@@ -201,7 +201,7 @@ instances/MithrilMine/MithrilMine.java
instances/MonasteryOfSilence1/MonasteryOfSilence1.java
instances/NornilsGarden/NornilsGarden.java
instances/PailakaDevilsLegacy/PailakaDevilsLegacy.java
instances/Pailaka/PailakaSongOfIceAndFire.java
instances/PailakaSongOfIceAndFire/PailakaSongOfIceAndFire.java
instances/SanctumOftheLordsOfDawn/SanctumOftheLordsOfDawn.java
instances/SecretArea/SecretArea.java
instances/SeedOfDestruction/Stage1.java
......
/*
* Copyright (C) 2004-2014 L2J DataPack
*
* This file is part of L2J DataPack.
*
* L2J DataPack 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.
*
* L2J DataPack 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 instances.PailakaSongOfIceAndFire;
import ai.npc.AbstractNpcAI;
import com.l2jserver.gameserver.instancemanager.InstanceManager;
import com.l2jserver.gameserver.model.Location;
import com.l2jserver.gameserver.model.actor.L2Character;
import com.l2jserver.gameserver.model.actor.L2Npc;
import com.l2jserver.gameserver.model.actor.instance.L2PcInstance;
import com.l2jserver.gameserver.model.instancezone.InstanceWorld;
import com.l2jserver.gameserver.model.zone.L2ZoneType;
import com.l2jserver.gameserver.network.NpcStringId;
import com.l2jserver.gameserver.network.SystemMessageId;
import com.l2jserver.gameserver.network.clientpackets.Say2;
/**
* Pailaka Song of Ice and Fire Instance zone.
* @author Gnacik, St3eT
*/
public final class PailakaSongOfIceAndFire extends AbstractNpcAI
{
protected class PSoIWorld extends InstanceWorld
{
}
// NPCs
private static final int ADLER1 = 32497;
private static final int GARGOS = 18607;
private static final int BLOOM = 18616;
private static final int BOTTLE = 32492;
private static final int BRAZIER = 32493;
// Items
private static final int FIRE_ENHANCER = 13040;
private static final int WATER_ENHANCER = 13041;
private static final int SHIELD_POTION = 13032;
private static final int HEAL_POTION = 13033;
// Location
private static final Location TELEPORT = new Location(-52875, 188232, -4696);
// Misc
private static final int INSTANCE_ID = 43;
private static final int ZONE = 20108;
private PailakaSongOfIceAndFire()
{
super(PailakaSongOfIceAndFire.class.getSimpleName(), "instances");
addStartNpc(ADLER1);
addTalkId(ADLER1);
addAttackId(BOTTLE, BRAZIER);
addExitZoneId(ZONE);
addSeeCreatureId(GARGOS);
addSpawnId(BLOOM);
addKillId(BLOOM);
}
private void enterInstance(L2PcInstance player, String template)
{
InstanceWorld world = InstanceManager.getInstance().getPlayerWorld(player);
if (world != null)
{
if (world instanceof PSoIWorld)
{
teleportPlayer(player, TELEPORT, world.getInstanceId());
return;
}
player.sendPacket(SystemMessageId.ALREADY_ENTERED_ANOTHER_INSTANCE_CANT_ENTER);
return;
}
world = new PSoIWorld();
world.setInstanceId(InstanceManager.getInstance().createDynamicInstance(template));
world.setTemplateId(INSTANCE_ID);
InstanceManager.getInstance().addWorld(world);
world.addAllowed(player.getObjectId());
teleportPlayer(player, TELEPORT, world.getInstanceId());
_log.info("Pailaka Song of Ice and Fire" + template + " Instance: " + world.getInstanceId() + " created by player: " + player.getName());
}
@Override
public final String onAdvEvent(String event, L2Npc npc, L2PcInstance player)
{
switch (event)
{
case "enter":
{
enterInstance(player, "PailakaSongOfIceAndFire.xml");
break;
}
case "GARGOS_LAUGH":
{
broadcastNpcSay(npc, Say2.NPC_SHOUT, NpcStringId.OHHOHOH);
break;
}
case "TELEPORT":
{
teleportPlayer(player, TELEPORT, player.getInstanceId());
break;
}
case "DELETE":
{
if (npc != null)
{
npc.deleteMe();
}
break;
}
case "BLOOM_TIMER":
{
startQuestTimer("BLOOM_TIMER2", getRandom(2, 4) * 60 * 1000, npc, null);
break;
}
case "BLOOM_TIMER2":
{
npc.setInvisible(!npc.isInvisible());
startQuestTimer("BLOOM_TIMER", 5000, npc, null);
break;
}
}
return super.onAdvEvent(event, npc, player);
}
@Override
public final String onAttack(L2Npc npc, L2PcInstance player, int damage, boolean isSummon)
{
if ((damage > 0) && npc.isScriptValue(0))
{
switch (getRandom(6))
{
case 0:
{
if (npc.getId() == BOTTLE)
{
npc.dropItem(player, WATER_ENHANCER, getRandom(1, 6));
}
break;
}
case 1:
{
if (npc.getId() == BRAZIER)
{
npc.dropItem(player, FIRE_ENHANCER, getRandom(1, 6));
}
break;
}
case 2:
case 3:
{
npc.dropItem(player, SHIELD_POTION, getRandom(1, 10));
break;
}
case 4:
case 5:
{
npc.dropItem(player, HEAL_POTION, getRandom(1, 10));
break;
}
}
npc.setScriptValue(1);
startQuestTimer("DELETE", 3000, npc, null);
}
return super.onAttack(npc, player, damage, isSummon);
}
@Override
public final String onKill(L2Npc npc, L2PcInstance player, boolean isSummon)
{
npc.dropItem(player, getRandomBoolean() ? SHIELD_POTION : HEAL_POTION, getRandom(1, 7));
return super.onKill(npc, player, isSummon);
}
@Override
public String onExitZone(L2Character character, L2ZoneType zone)
{
if ((character.isPlayer()) && !character.isDead() && !character.isTeleporting() && ((L2PcInstance) character).isOnline())
{
final InstanceWorld world = InstanceManager.getInstance().getWorld(character.getInstanceId());
if ((world != null) && (world.getTemplateId() == INSTANCE_ID))
{
startQuestTimer("TELEPORT", 1000, null, (L2PcInstance) character);
}
}
return super.onExitZone(character, zone);
}
@Override
public String onSeeCreature(L2Npc npc, L2Character creature, boolean isSummon)
{
if (npc.isScriptValue(0) && creature.isPlayer())
{
npc.setScriptValue(1);
startQuestTimer("GARGOS_LAUGH", 1000, npc, creature.getActingPlayer());
}
return super.onSeeCreature(npc, creature, isSummon);
}
@Override
public String onSpawn(L2Npc npc)
{
npc.setInvisible(true);
startQuestTimer("BLOOM_TIMER", 1000, npc, null);
return super.onSpawn(npc);
}
public static void main(String[] args)
{
new PailakaSongOfIceAndFire();
}
}
\ No newline at end of file
<html><body>Inspector Adler:<br>
Ah, we meet again! Apparently the chaos caused by Pailaka has still not been resolved. If you are willing, I can send you to Pailaka again. What would you like to do?<br>
<a action="bypass -h Quest 128_PailakaSongOfIceAndFire enter">Enter Pailaka.</a>
<a action="bypass -h Quest PailakaSongOfIceAndFire enter">Enter Pailaka.</a>
</body></html>
\ No newline at end of file
......@@ -2,5 +2,5 @@
What do you know about Pailaka? The Ivory Tower discovered it shortly after Kamaloka.<br>
Apparently, it's a kind of "pocket reality" created by Kamaloka's energy acting on places that are filled with a high degree of chaos: old battlefields or the sites of powerful magical experiments, for example.<br>
Although Pailaka is not part of our reality, what happens there can affect our world...<br>
<a action="bypass -h Quest 128_PailakaSongOfIceAndFire 32497-02.htm">Keep listening.</a>
<a action="bypass -h Quest Q00128_PailakaSongOfIceAndFire 32497-02.htm">Keep listening.</a>
</body></html>
\ No newline at end of file
......@@ -4,6 +4,6 @@ We followed the flow of mana and traced the energy of Kamaloka to find likely sp
At present, Pailaka has not affected our reality, but who knows what may happen in time? It may even impact next year's harvest.<br>
We discovered Pailaka in the Forgotten Temple close to here. If you are willing, I would like you to enter Pailaka and restore order. Will you do it?<br>
<font color="LEVEL">(You will be rewarded for your efforts. Vitality points will be granted to you immediately upon completing the quest. If you receive the reward while your Vitality Level is high, though, you may notice a slight reduction.)</font><br>
<a action="bypass -h Quest 128_PailakaSongOfIceAndFire 32497-03.htm">Say yes.</a><br>
<a action="bypass -h Quest 128_PailakaSongOfIceAndFire 32497-04.htm">Say no.</a>
<a action="bypass -h Quest Q00128_PailakaSongOfIceAndFire 32497-03.htm">Say yes.</a><br>
<a action="bypass -h Quest Q00128_PailakaSongOfIceAndFire 32497-04.htm">Say no.</a>
</body></html>
\ No newline at end of file
......@@ -2,5 +2,5 @@
We really don't know what you will encounter when you open the gateway to Pailaka. But as with Kamaloka, I suspect you will find an ally there willing to share information.<br>
You should have no difficulty learning what you must do.<br>
Good luck!<br>
<a action="bypass -h Quest 128_PailakaSongOfIceAndFire enter">Accept the challenge of Pailaka.</a>
<a action="bypass -h Quest PailakaSongOfIceAndFire enter">Accept the challenge of Pailaka.</a>
</body></html>
\ No newline at end of file
......@@ -2,5 +2,5 @@
Are you an adventurer? Hmm, finding an adventurer in a dangerous place like this...<br>
I suppose I shouldn't be surprised! Still, I must admit I didn't expect to find you here.<br>
Were you sent by the Adventurers Association? Or perhaps you found your way here on your own? Ah, you look puzzled, my friend!<br>
<a action="bypass -h Quest 128_PailakaSongOfIceAndFire 32500-02.htm">Ask for an explanation.</a>
<a action="bypass -h Quest Q00128_PailakaSongOfIceAndFire 32500-02.htm">Ask for an explanation.</a>
</body></html>
\ No newline at end of file
......@@ -2,5 +2,5 @@
Hmm... Let's see if I can make this brief... Once there was a balance here between the power of the Water and Fire Sprites, but now those two have become increasingly aggressive.<br>
Worse, I've received a report that some of the Sprites have embraced the chaos and are changing into fearsome monsters.<br>
We have crafted a weapon to fight them, but we need someone who can wield it...<br>
<a action="bypass -h Quest 128_PailakaSongOfIceAndFire 32500-03.htm">Ask how to use the weapon.</a>
<a action="bypass -h Quest Q00128_PailakaSongOfIceAndFire 32500-03.htm">Ask how to use the weapon.</a>
</body></html>
\ No newline at end of file
......@@ -3,5 +3,5 @@ First, of course, you must be able to enter the temple itself.<br>
We can magically protect ourselves, but others...<br>
Wait -- you really believe you can do this, don't you? Perhaps you're right! I don't know how, but your aura seems immune to the chaos that has infected this place. It's even better than our magic!<br>
Who are you, adventurer?<br>
<a action="bypass -h Quest 128_PailakaSongOfIceAndFire 32500-04.htm">Explain how you got here.</a>
<a action="bypass -h Quest Q00128_PailakaSongOfIceAndFire 32500-04.htm">Explain how you got here.</a>
</body></html>
\ No newline at end of file
......@@ -3,5 +3,5 @@ If what you say is true, then you really did come here from another dimension!<b
There has been much speculation about other dimensions at our Ivory Tower, but it seems your Ivory Tower is even more advanced... <br>
If the cause of our troubles lies in the fissure of power in this dimension, you should be able to return to your dimension by stabilizing that fissure. What I mean is that if you can restore the balance of the Sprites' power here, you will be able to return to your world.<br>
In any case, as an otherworlder you will surely be less affected by their power than we are. I place this task on your shoulders, my friend.<br>
<a action="bypass -h Quest 128_PailakaSongOfIceAndFire 32500-05.htm">Accept</a>
<a action="bypass -h Quest Q00128_PailakaSongOfIceAndFire 32500-05.htm">Accept</a>
</body></html>
\ No newline at end of file
......@@ -2,5 +2,5 @@
Please defeat those chaotic Sprites in the temple and restore stability.<br>
You may use this Sprite's Sword, forged with both the power of water and fire. I know you will use it well.<br>
Also, take this book written by the Elves who built this place -- it will tell you if something is wrong with the temple. When you enter the temple, follow the book's instructions.<br>
<a action="bypass -h Quest 128_PailakaSongOfIceAndFire 32500-06.htm">Accept the sword and the book.</a>
<a action="bypass -h Quest Q00128_PailakaSongOfIceAndFire 32500-06.htm">Accept the sword and the book.</a>
</body></html>
\ No newline at end of file
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