Skip to content
Snippets Groups Projects
Commit 107ef318 authored by malyelfik's avatar malyelfik
Browse files

BETA: Forge of the Gods AI:

* AI:
 * Rooney
 * Lavasaurus spawn
 * Tar Beetle
* Quests:
 * Gather the Flames (617)
 * How Lavasauruses Are Made (901)
* SQL:
 * Updated npcaidata

Patch by: nonom, !UnAfraid, malyelfik
Reviewed by: !UnAfraid
parent fcc0c708
No related branches found
No related tags found
No related merge requests found
Showing
with 751 additions and 179 deletions
<html><body>Blacksmith of Wind Rooney:<br>
I'm Rooney. I came here with my older brother, Vulcan, looking for the ultimate flames in this Forge of the Gods! But I just can't stand in one place like a stone, you know, like Vulcan does! So I'm just stretching my legs a little... Ha!<br>
<a action="bypass -h npc_%objectId%_Quest">Quest</a>
</body></html>
\ No newline at end of file
...@@ -12,6 +12,9 @@ handlers/MasterHandler.java ...@@ -12,6 +12,9 @@ handlers/MasterHandler.java
# Npc # Npc
ai/npc/DragonVortex/DragonVortex.java ai/npc/DragonVortex/DragonVortex.java
ai/npc/ForgeOfTheGods/ForgeOfTheGods.java
ai/npc/ForgeOfTheGods/Rooney.java
ai/npc/ForgeOfTheGods/TarBeetle.java
ai/npc/NpcBuffers/BirthdayCake.java ai/npc/NpcBuffers/BirthdayCake.java
ai/npc/NpcBuffers/CabaleBuffer.java ai/npc/NpcBuffers/CabaleBuffer.java
ai/npc/NpcBuffers/ChristmasTree.java ai/npc/NpcBuffers/ChristmasTree.java
...@@ -637,7 +640,7 @@ quests/613_ProveYourCourage_Varka/__init__.py ...@@ -637,7 +640,7 @@ quests/613_ProveYourCourage_Varka/__init__.py
quests/614_SlayTheEnemyCommander_Varka/__init__.py quests/614_SlayTheEnemyCommander_Varka/__init__.py
quests/615_MagicalPowerOfFirePart1/__init__.py quests/615_MagicalPowerOfFirePart1/__init__.py
quests/616_MagicalPowerOfFirePart2/__init__.py quests/616_MagicalPowerOfFirePart2/__init__.py
quests/617_GatherTheFlames/__init__.py quests/Q00617_GatherTheFlames/Q00617_GatherTheFlames.java
quests/618_IntoTheFlame/__init__.py quests/618_IntoTheFlame/__init__.py
quests/619_RelicsOfTheOldEmpire/__init__.py quests/619_RelicsOfTheOldEmpire/__init__.py
quests/620_FourGoblets/__init__.py quests/620_FourGoblets/__init__.py
...@@ -687,6 +690,7 @@ quests/699_GuardianOfTheSkies/__init__.py ...@@ -687,6 +690,7 @@ quests/699_GuardianOfTheSkies/__init__.py
quests/700_CursedLife/__init__.py quests/700_CursedLife/__init__.py
quests/701_Proof_Of_Existence/__init__.py quests/701_Proof_Of_Existence/__init__.py
quests/Q00702_ATrapForRevenge/Q00702_ATrapForRevenge.java quests/Q00702_ATrapForRevenge/Q00702_ATrapForRevenge.java
quests/Q00901_HowLavasaurusesAreMade/Q00901_HowLavasaurusesAreMade.java
quests/998_FallenAngelSelect/__init__.py quests/998_FallenAngelSelect/__init__.py
quests/999_T1Tutorial/__init__.py quests/999_T1Tutorial/__init__.py
quests/Q10267_JourneyToGracia/Q10267_JourneyToGracia.java quests/Q10267_JourneyToGracia/Q10267_JourneyToGracia.java
......
/*
* 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.npc.ForgeOfTheGods;
import ai.npc.AbstractNpcAI;
import com.l2jserver.gameserver.ai.CtrlIntention;
import com.l2jserver.gameserver.model.actor.L2Attackable;
import com.l2jserver.gameserver.model.actor.L2Npc;
import com.l2jserver.gameserver.model.actor.instance.L2PcInstance;
/**
* Forge of the Gods AI
* @author nonom, malyelfik
*/
public class ForgeOfTheGods extends AbstractNpcAI
{
// NPCs
private static final int[] FOG_MOBS =
{
22634, // Scarlet Stakato Worker
22635, // Scarlet Stakato Soldier
22636, // Scarlet Stakato Noble
22637, // Tepra Scorpion
22638, // Tepra Scarab
22639, // Assassin Beetle
22640, // Mercenary of Destruction
22641, // Knight of Destruction
22642, // Lavastone Golem
22643, // Magma Golem
22644, // Arimanes of Destruction
22645, // Balor of Destruction
22646, // Ashuras of Destruction
22647, // Lavasillisk
22648, // Blazing Ifrit
22649 // Magma Drake
};
private static final int[] LAVASAURUSES =
{
18799, // Newborn Lavasaurus
18800, // Fledgling Lavasaurus
18801, // Adult Lavasaurus
18802, // Elderly Lavasaurus
18803 // Ancient Lavasaurus
};
private static final int REFRESH = 15;
private static final int MOBCOUNT_BONUS_MIN = 3;
private static final int BONUS_UPPER_LV01 = 5;
private static final int BONUS_UPPER_LV02 = 10;
private static final int BONUS_UPPER_LV03 = 15;
private static final int BONUS_UPPER_LV04 = 20;
private static final int BONUS_UPPER_LV05 = 35;
private static final int BONUS_LOWER_LV01 = 5;
private static final int BONUS_LOWER_LV02 = 10;
private static final int BONUS_LOWER_LV03 = 15;
private static final int FORGE_BONUS01 = 20;
private static final int FORGE_BONUS02 = 40;
private static int _npcCount = 0;
// private static int _npcsAlive = 0; TODO: Require zone spawn support
@Override
public String onAdvEvent(String event, L2Npc npc, L2PcInstance player)
{
switch (event)
{
case "suicide":
if (npc != null)
{
npc.doDie(null);
}
break;
case "refresh":
_npcCount = 0;
break;
}
return null;
}
@Override
public String onKill(L2Npc npc, L2PcInstance killer, boolean isPet)
{
int rand = getRandom(100);
L2Npc mob = null;
_npcCount++;
// For monsters at Forge of the Gods - Lower level
if (npc.getSpawn().getLocz() < -5000) // && (_npcsAlive < 48))
{
if ((_npcCount > BONUS_LOWER_LV03) && (rand <= FORGE_BONUS02))
{
mob = addSpawn(LAVASAURUSES[4], npc, true);
}
else if (_npcCount > BONUS_LOWER_LV02)
{
mob = spawnLavasaurus(npc, rand, LAVASAURUSES[4], LAVASAURUSES[3]);
}
else if (_npcCount > BONUS_LOWER_LV01)
{
mob = spawnLavasaurus(npc, rand, LAVASAURUSES[3], LAVASAURUSES[2]);
}
else if (_npcCount >= MOBCOUNT_BONUS_MIN)
{
mob = spawnLavasaurus(npc, rand, LAVASAURUSES[2], LAVASAURUSES[1]);
}
}
else // if (_npcsAlive < 32)
{
if ((_npcCount > BONUS_UPPER_LV05) && (rand <= FORGE_BONUS02))
{
mob = addSpawn(LAVASAURUSES[1], npc, true);
}
else if (_npcCount > BONUS_UPPER_LV04)
{
mob = spawnLavasaurus(npc, rand, LAVASAURUSES[4], LAVASAURUSES[3]);
}
else if (_npcCount > BONUS_UPPER_LV03)
{
mob = spawnLavasaurus(npc, rand, LAVASAURUSES[3], LAVASAURUSES[2]);
}
else if (_npcCount > BONUS_UPPER_LV02)
{
mob = spawnLavasaurus(npc, rand, LAVASAURUSES[2], LAVASAURUSES[1]);
}
else if (_npcCount > BONUS_UPPER_LV01)
{
mob = spawnLavasaurus(npc, rand, LAVASAURUSES[1], LAVASAURUSES[0]);
}
else if ((_npcCount >= MOBCOUNT_BONUS_MIN) && (rand <= FORGE_BONUS01))
{
mob = addSpawn(LAVASAURUSES[0], npc, true);
}
}
if (mob != null)
{
((L2Attackable) mob).addDamageHate(killer, 0, 9999);
mob.getAI().setIntention(CtrlIntention.AI_INTENTION_ATTACK);
}
return super.onKill(npc, killer, isPet);
}
@Override
public final String onSpawn(L2Npc npc)
{
startQuestTimer("suicide", 60000, npc, null);
return super.onSpawn(npc);
}
private L2Npc spawnLavasaurus(L2Npc npc, int rand, int... mobs)
{
if (mobs.length < 2)
{
return null;
}
L2Npc mob = null;
if (rand <= FORGE_BONUS01)
{
mob = addSpawn(mobs[0], npc, true);
}
else if (rand <= FORGE_BONUS02)
{
mob = addSpawn(mobs[1], npc, true);
}
return mob;
}
public ForgeOfTheGods(String name, String descr)
{
super(name, descr);
addKillId(FOG_MOBS);
addSpawnId(LAVASAURUSES);
startQuestTimer("refresh", REFRESH * 1000, null, null, true);
}
public static void main(String[] args)
{
new ForgeOfTheGods(ForgeOfTheGods.class.getSimpleName(), "ai/npc/");
}
}
\ No newline at end of file
/*
* 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.npc.ForgeOfTheGods;
import ai.npc.AbstractNpcAI;
import com.l2jserver.gameserver.model.Location;
import com.l2jserver.gameserver.model.actor.L2Npc;
import com.l2jserver.gameserver.model.actor.instance.L2PcInstance;
import com.l2jserver.gameserver.network.NpcStringId;
import com.l2jserver.gameserver.network.clientpackets.Say2;
/**
* Rooney AI
* @author malyelfik
*/
public class Rooney extends AbstractNpcAI
{
// Rooney ID
private static final int NPC_ID = 32049;
// Locations
private static final Location[] LOCATIONS =
{
new Location(175937, -112167, -5550),
new Location(178896, -112425, -5860),
new Location(180628, -115992, -6135),
new Location(183010, -114753, -6135),
new Location(184496, -116773, -6135),
new Location(181857, -109491, -5865),
new Location(178917, -107633, -5853),
new Location(178804, -110080, -5853),
new Location(182221, -106806, -6025),
new Location(186488, -109715, -5915),
new Location(183847, -119231, -3113),
new Location(185193, -120342, -3113),
new Location(188047, -120867, -3113),
new Location(189734, -120471, -3113),
new Location(188754, -118940, -3313),
new Location(190022, -116803, -3313),
new Location(188443, -115814, -3313),
new Location(186421, -114614, -3313),
new Location(185188, -113307, -3313),
new Location(187378, -112946, -3313),
new Location(189815, -113425, -3313),
new Location(189301, -111327, -3313),
new Location(190289, -109176, -3313),
new Location(187783, -110478, -3313),
new Location(185889, -109990, -3313),
new Location(181881, -109060, -3695),
new Location(183570, -111344, -3675),
new Location(182077, -112567, -3695),
new Location(180127, -112776, -3698),
new Location(179155, -108629, -3695),
new Location(176282, -109510, -3698),
new Location(176071, -113163, -3515),
new Location(179376, -117056, -3640),
new Location(179760, -115385, -3640),
new Location(177950, -119691, -4140),
new Location(177037, -120820, -4340),
new Location(181125, -120148, -3702),
new Location(182212, -117969, -3352),
new Location(186074, -118154, -3312)
};
@Override
public String onAdvEvent(String event, L2Npc npc, L2PcInstance player)
{
switch (event)
{
case "checkArea":
if (!npc.getKnownList().getKnownPlayersInRadius(300).isEmpty())
{
cancelQuestTimers("checkArea");
broadcastNpcSay(npc, Say2.NPC_ALL, NpcStringId.WELCOME);
startQuestTimer("say1", 60000, npc, null);
}
break;
case "say1":
broadcastNpcSay(npc, Say2.NPC_ALL, NpcStringId.HURRY_HURRY);
startQuestTimer("say2", 60000, npc, null);
break;
case "say2":
broadcastNpcSay(npc, Say2.NPC_ALL, NpcStringId.I_AM_NOT_THAT_TYPE_OF_PERSON_WHO_STAYS_IN_ONE_PLACE_FOR_A_LONG_TIME);
startQuestTimer("say3", 60000, npc, null);
break;
case "say3":
broadcastNpcSay(npc, Say2.NPC_ALL, NpcStringId.ITS_HARD_FOR_ME_TO_KEEP_STANDING_LIKE_THIS);
startQuestTimer("say4", 60000, npc, null);
break;
case "say4":
broadcastNpcSay(npc, Say2.NPC_ALL, NpcStringId.WHY_DONT_I_GO_THAT_WAY_THIS_TIME);
startQuestTimer("teleport", 60000, npc, null);
break;
case "teleport":
npc.teleToLocation(LOCATIONS[getRandom(LOCATIONS.length)], false);
startQuestTimer("checkArea", 1000, npc, null, true);
break;
}
return null;
}
public Rooney(String name, String descr)
{
super(name, descr);
final L2Npc npc = addSpawn(NPC_ID, LOCATIONS[getRandom(LOCATIONS.length)], false, 0);
startQuestTimer("checkArea", 1000, npc, null, true);
}
public static void main(String[] args)
{
new Rooney(Rooney.class.getSimpleName(), "ai/npc/");
}
}
\ No newline at end of file
/*
* 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.npc.ForgeOfTheGods;
import ai.npc.AbstractNpcAI;
import com.l2jserver.gameserver.model.actor.L2Npc;
import com.l2jserver.gameserver.model.actor.instance.L2PcInstance;
import com.l2jserver.gameserver.model.effects.L2Effect;
import com.l2jserver.gameserver.model.holders.SkillHolder;
import com.l2jserver.gameserver.model.skills.L2Skill;
/**
* Tar Beetle AI
* @author nonom, malyelfik
*/
public class TarBeetle extends AbstractNpcAI
{
// NPC
private static final int TAR_BEETLE = 18804;
// Skills
private static final int SKILL_ID = 6142;
private static SkillHolder[] SKILLS =
{
new SkillHolder(SKILL_ID, 1),
new SkillHolder(SKILL_ID, 2),
new SkillHolder(SKILL_ID, 3)
};
private static final TarBeetleSpawn spawn = new TarBeetleSpawn();
@Override
public String onAggroRangeEnter(L2Npc npc, L2PcInstance player, boolean isPet)
{
if ((spawn.getBeetle(npc).getNumShotValue() > 0) && canCastSkill(npc))
{
int level = 0;
final L2Effect effect = player.getFirstEffect(SKILL_ID);
if (effect != null)
{
level = effect.getSkill().getAbnormalLvl();
}
if (level < 3)
{
npc.setTarget(player);
npc.doCast(SKILLS[level].getSkill());
}
}
return super.onAggroRangeEnter(npc, player, isPet);
}
@Override
public String onSpellFinished(L2Npc npc, L2PcInstance player, L2Skill skill)
{
if ((skill != null) && (skill.getId() == SKILL_ID))
{
int val = spawn.getBeetle(npc).getNumShotValue() - 1;
if ((val <= 0) || (SKILLS[0].getSkill().getMpConsume() > npc.getCurrentMp()))
{
spawn.removeBeetle(npc);
}
else
{
spawn.getBeetle(npc).setNumShotValue(val);
}
}
return super.onSpellFinished(npc, player, skill);
}
private boolean canCastSkill(L2Npc npc)
{
for (SkillHolder holder : SKILLS)
{
if (npc.isSkillDisabled(holder.getSkill()))
{
return false;
}
}
return true;
}
public TarBeetle(String name, String descr)
{
super(name, descr);
addAggroRangeEnterId(TAR_BEETLE);
addSpellFinishedId(TAR_BEETLE);
spawn.startTasks();
}
public static void main(String[] args)
{
new TarBeetle(TarBeetle.class.getSimpleName(), "ai/npc/");
}
}
\ No newline at end of file
/*
* 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.npc.ForgeOfTheGods;
import java.util.ArrayList;
import java.util.Collections;
import java.util.HashMap;
import java.util.Iterator;
import java.util.List;
import java.util.Map;
import org.w3c.dom.NamedNodeMap;
import org.w3c.dom.Node;
import com.l2jserver.gameserver.GeoData;
import com.l2jserver.gameserver.ThreadPoolManager;
import com.l2jserver.gameserver.datatables.NpcTable;
import com.l2jserver.gameserver.engines.DocumentParser;
import com.l2jserver.gameserver.model.L2Spawn;
import com.l2jserver.gameserver.model.L2Territory;
import com.l2jserver.gameserver.model.actor.L2Npc;
import com.l2jserver.util.Rnd;
/**
* Tar Beetle zone spawn
* @author malyelfik
*/
public class TarBeetleSpawn extends DocumentParser
{
private static final Map<Integer, SpawnZone> _spawnZoneList = new HashMap<>();
private static final Map<Integer, Beetle> _spawnList = new HashMap<>();
public static List<Integer> lowerZones = new ArrayList<>();
public static List<Integer> upperZones = new ArrayList<>();
public static int lowerNpcCount = 0;
public static int upperNpcCount = 0;
public TarBeetleSpawn()
{
load();
}
@Override
public void load()
{
_spawnZoneList.clear();
_spawnList.clear();
parseDatapackFile("data/spawnZones/tar_bettle.xml");
_log.info(TarBeetleSpawn.class.getSimpleName() + ": Loaded " + _spawnZoneList.size() + " spawn zones.");
}
@Override
protected void parseDocument()
{
final Node n = getCurrentDocument().getFirstChild();
for (Node d = n.getFirstChild(); d != null; d = d.getNextSibling())
{
if (d.getNodeName().equals("spawnZones"))
{
for (Node r = d.getFirstChild(); r != null; r = r.getNextSibling())
{
if (r.getNodeName().equals("zone"))
{
NamedNodeMap attrs = r.getAttributes();
int id = parseInt(attrs, "id");
int minZ = parseInt(attrs, "minZ");
int maxZ = parseInt(attrs, "maxZ");
String type = parseString(attrs, "type");
if (type.equals("upper"))
{
upperZones.add(id);
}
else if (type.equals("lower"))
{
lowerZones.add(id);
}
int[] bZones = null;
String bZonesStr = parseString(attrs, "bZones");
if (!bZonesStr.isEmpty())
{
String[] str = bZonesStr.split(";");
bZones = new int[str.length];
for (int i = 0; i < str.length; i++)
{
bZones[i] = Integer.parseInt(str[i]);
}
}
SpawnZone zone = new SpawnZone(id, bZones);
for (Node c = r.getFirstChild(); c != null; c = c.getNextSibling())
{
if (c.getNodeName().equals("point"))
{
attrs = c.getAttributes();
int x = parseInt(attrs, "x");
int y = parseInt(attrs, "y");
zone.add(x, y, minZ, maxZ, 0);
}
}
_spawnZoneList.put(id, zone);
}
}
}
}
}
public void removeBeetle(L2Npc npc)
{
npc.deleteMe();
_spawnList.remove(npc.getObjectId());
if (npc.getSpawn().getLocz() < -5000)
{
lowerNpcCount--;
}
else
{
upperNpcCount--;
}
}
public void spawn(List<Integer> zone)
{
try
{
Collections.shuffle(zone);
int[] loc = getSpawnZoneById(zone.get(0)).getRandomPoint();
final L2Spawn spawn = new L2Spawn(NpcTable.getInstance().getTemplate(18804));
spawn.setHeading(Rnd.get(65535));
spawn.setLocx(loc[0]);
spawn.setLocy(loc[1]);
spawn.setLocz(GeoData.getInstance().getSpawnHeight(loc[0], loc[1], loc[2], loc[3], null));
final L2Npc npc = spawn.doSpawn();
npc.setIsNoRndWalk(true);
npc.setIsImmobilized(true);
npc.setIsInvul(true);
npc.disableCoreAI(true);
_spawnList.put(npc.getObjectId(), new Beetle(npc));
}
catch (Exception e)
{
_log.warning(TarBeetleSpawn.class.getSimpleName() + ": Could not spawn npc! Error: " + e.getMessage());
}
}
public void startTasks()
{
ThreadPoolManager.getInstance().scheduleGeneralAtFixedRate(new SpawnTask(), 1000, 60000);
ThreadPoolManager.getInstance().scheduleGeneralAtFixedRate(new NumShotTask(), 300000, 300000);
}
public SpawnZone getSpawnZoneById(int id)
{
return _spawnZoneList.get(id);
}
public Beetle getBeetle(L2Npc npc)
{
return _spawnList.get(npc.getObjectId());
}
public static Map<Integer, Beetle> getSpawnList()
{
return _spawnList;
}
public class Beetle
{
private int _numShotValue = 5;
private final L2Npc _npc;
public Beetle(L2Npc npc)
{
_npc = npc;
}
public L2Npc getNpc()
{
return _npc;
}
public void setNumShotValue(int numShotValue)
{
_numShotValue = numShotValue;
}
public int getNumShotValue()
{
return _numShotValue;
}
}
private class SpawnZone extends L2Territory
{
private int[] _bZones;
public SpawnZone(int terr, int[] bZones)
{
super(terr);
_bZones = bZones;
}
@Override
public int[] getRandomPoint()
{
int[] loc = super.getRandomPoint();
while (isInsideBannedZone(loc))
{
loc = super.getRandomPoint();
}
return loc;
}
private boolean isInsideBannedZone(int[] loc)
{
if (_bZones != null)
{
for (int i : _bZones)
{
if (getSpawnZoneById(i).isInside(loc[0], loc[1]))
{
return true;
}
}
}
return false;
}
}
public class SpawnTask implements Runnable
{
@Override
public void run()
{
while (lowerNpcCount < 4)
{
spawn(lowerZones);
lowerNpcCount++;
}
while (upperNpcCount < 12)
{
spawn(upperZones);
upperNpcCount++;
}
}
}
public class NumShotTask implements Runnable
{
@Override
public void run()
{
Iterator<Beetle> iterator = getSpawnList().values().iterator();
while (iterator.hasNext())
{
Beetle b = iterator.next();
int val = b.getNumShotValue();
if (val == 5)
{
b.getNpc().deleteMe();
iterator.remove();
if (b.getNpc().getSpawn().getLocz() < -5000)
{
lowerNpcCount--;
}
else
{
upperNpcCount--;
}
}
else
{
b.setNumShotValue(val + 1);
}
}
}
}
}
\ No newline at end of file
<html><body>Blacksmith Hilda:<br>
So you met with Vulcan, did you? Did he give you an earful of his madness? Well, he's mad about flame, but the rewards he offers are real. Defeat the <font color="LEVEL">monsters in the Gods' Forge</font>, collect the flames you find, and go to him; he will give you an S-grade weapon recipe if you bring him <font color="LEVEL">1000 flames</font>.<br> If you gather even more flames, you might see about meeting Vulcan's younger brother <font color="LEVEL">Rooney</font>. He's as mad as his brother, and he's engaged in the same quest. <font color="LEVEL">Bring him 1200 flames and he will give you an S-grade weapon recipe.</font>. Rooney wanders from here to there, so he's not easy to find...but it might be worth your while to deal with him.
</body></html>
\ No newline at end of file
<html><body>Flame Blacksmith Vulcan:<br>
You can get flames from monsters in<font color="LEVEL"> Forge of the Gods</font>. Collect<font color="LEVEL"> 1000 flames</font> and I'll give you a grade S weapon recipe.</body></html>
\ No newline at end of file
<html><body>Flame Blacksmith Vulcan:<br>
You brought me one thousand flames as I asked! So, do you want to exchange them for a Grade S weapon recipe?<br>
<a action="bypass -h Quest 617_GatherTheFlames 31539-06.htm">"I don't want to trade now."</a><br>
<a action="bypass -h Quest 617_GatherTheFlames 31539-05.htm">"Yes, I'll trade now."</a>
</body></html>
\ No newline at end of file
<html><body>Flame Blacksmith Vulcan:<br>
You don't have 1000 flames yet. Get them from<font color="LEVEL"> monsters in Forge of the Gods</font>. Bring me<font color="LEVEL"> 1000 flames</font> and I'll give you a grade S weapon recipe.<br>
<a action="bypass -h Quest 617_GatherTheFlames 31539-06.htm">"I'll keep at it."</a><br>
<a action="bypass -h Quest 617_GatherTheFlames 31539-08.htm">"I want to quit."</a></body></html>
\ No newline at end of file
<html><body>Flame Blacksmith Vulcan:<br>
Continue gathering flames from<font color="LEVEL"> monsters in Forge of the Gods</font>.</body></html>
\ No newline at end of file
<html><body>Flame Blacksmith Vulcan:<br>
Sorry if this isn't for the weapon you wanted, but a grade S weapon recipe is hard to get and very valuable!<br>
</body></html>
\ No newline at end of file
<html><body>Flame Blacksmith Vulcan:<br>
Come back anytime if you change your mind, I'll be here.</body></html>
\ No newline at end of file
<html><body>Blacksmith of Wind Rooney:<br>
You brought 1200 flames!!! Choose your recipe from the list: (remember all these are 60%)<br>
<a action="bypass -h Quest 617_GatherTheFlames 6881">"Forgotten Blade"</a><br>
<a action="bypass -h Quest 617_GatherTheFlames 6883">"Basalt Battlehammer"</a><br>
<a action="bypass -h Quest 617_GatherTheFlames 6885">"Imperial Staff"</a><br>
<a action="bypass -h Quest 617_GatherTheFlames 6887">"Angel Slayer"</a><br>
<a action="bypass -h Quest 617_GatherTheFlames 6891">"Dragon Hunter Axe"</a><br>
<a action="bypass -h Quest 617_GatherTheFlames 6893">"Saint Spear"</a><br>
<a action="bypass -h Quest 617_GatherTheFlames 6895">"Demon Splinter"</a><br>
<a action="bypass -h Quest 617_GatherTheFlames 6897">"Heavens Divider"</a><br>
<a action="bypass -h Quest 617_GatherTheFlames 6899">"Arcana Mace"</a><br>
<a action="bypass -h Quest 617_GatherTheFlames 7580">"Draconic Bow"</a>
</body></html>
\ No newline at end of file
<html><body>Blacksmith of Wind Rooney:<br>
You don't have 1200 flames yet. Get them from<font color="LEVEL"> monsters in Forge of the Gods</font>. Bring me<font color="LEVEL"> 1200 flames</font> and I'll give you an S-grade weapon recipe.
</body></html>
\ No newline at end of file
# Created by t0rm3nt0r
# Drop rates and last reorganization by DrLecter
# for the Official L2J Datapack Project.
# Visit http://www.l2jdp.com/forum/ for more details.
import sys
from com.l2jserver import Config
from com.l2jserver.gameserver.model.quest import State
from com.l2jserver.gameserver.model.quest import QuestState
from com.l2jserver.gameserver.model.quest.jython import QuestJython as JQuest
qn = "617_GatherTheFlames"
TORCH = 7264
HILDA = 31271
VULCAN = 31539
ROONEY = 32049
DROPLIST = {21381:51,21653:51,21387:53,21655:53,21390:56,21656:69,21389:55,21388:53,\
21383:51,21392:56,21382:60,21654:52,21384:64,21394:51,21395:56,21385:52,\
21391:55,21393:58,21657:57,21386:52,21652:49,21378:49,21376:48,21377:48,\
21379:59,21380:49}
REWARDS = [ 6881,6883,6885,6887,6891,6893,6895,6897,6899,7580 ]
REWARDS2= [ 6882,6884,6886,6888,6892,6894,6896,6898,6900,7581 ]
#Change this value to 1 if you wish 100% recipes, default 60%
ALT_RP100=0
class Quest (JQuest) :
def __init__(self,id,name,descr):
JQuest.__init__(self,id,name,descr)
self.questItemIds = [TORCH]
def onEvent (self,event,st) :
htmltext = event
torches = st.getQuestItemsCount(TORCH)
if event == "31539-03.htm" :
if st.getPlayer().getLevel() >= 74 :
st.set("cond","1")
st.setState(State.STARTED)
st.playSound("ItemSound.quest_accept")
else :
htmltext = "31539-02.htm"
st.exitQuest(1)
elif event == "31231-03.htm" :
st.set("cond","1")
st.setState(State.STARTED)
st.playSound("ItemSound.quest_accept")
elif event == "31539-05.htm" and torches >= 1000 :
htmltext = "31539-07.htm"
st.takeItems(TORCH,1000)
if ALT_RP100 == 1:
st.giveItems(REWARDS2[self.getRandom(len(REWARDS2))],1)
else:
st.giveItems(REWARDS[self.getRandom(len(REWARDS))],1)
elif event == "31539-08.htm" :
st.takeItems(TORCH,-1)
st.exitQuest(1)
elif event.isdigit() and int(event) in REWARDS :
if torches >= 1200 :
st.takeItems(TORCH,1200)
if ALT_RP100 == 1:
st.giveItems(int(event)+1,1)
else:
st.giveItems(int(event),1)
htmltext = None
else :
htmltext = "Incorrect item count"
return htmltext
def onTalk (self,npc,player):
htmltext = Quest.getNoQuestMsg(player)
st = player.getQuestState(qn)
if not st : return htmltext
id = st.getState()
cond = st.getInt("cond")
torches = st.getQuestItemsCount(TORCH)
npcId = npc.getNpcId()
if npcId == VULCAN :
if id == State.CREATED :
if player.getLevel() < 74 :
st.exitQuest(1)
htmltext = "31539-02.htm"
else :
htmltext = "31539-01.htm"
elif torches < 1000 :
htmltext = "31539-05.htm"
else :
htmltext = "31539-04.htm"
elif npcId == HILDA :
if id == State.CREATED :
if player.getLevel() < 74 :
st.exitQuest(1)
htmltext = "31231-01.htm"
else :
htmltext = "31231-02.htm"
else:
htmltext = "31231-04.htm"
elif npcId == ROONEY and id == State.STARTED :
if torches >= 1200 :
htmltext = "32049-01.htm"
else :
htmltext = "32049-02.htm"
return htmltext
def onKill(self,npc,player,isPet):
partyMember = self.getRandomPartyMemberState(player, State.STARTED)
if not partyMember: return
st = partyMember.getQuestState(qn)
if not st : return
torches = st.getQuestItemsCount(TORCH)
chance = DROPLIST[npc.getNpcId()]
drop = self.getRandom(100)
qty,chance = divmod(chance*Config.RATE_QUEST_DROP,100)
if drop < chance : qty += 1
qty = int(qty)
if qty :
st.giveItems(TORCH,qty)
if divmod(torches+1,1000)[1] == 0 or divmod(torches+1,1200)[1] == 0 :
st.playSound("ItemSound.quest_middle")
else :
st.playSound("ItemSound.quest_itemget")
return
QUEST = Quest(617, qn, "Gather The Flames")
QUEST.addStartNpc(VULCAN)
QUEST.addStartNpc(HILDA)
QUEST.addTalkId(VULCAN)
QUEST.addTalkId(ROONEY)
QUEST.addTalkId(HILDA)
for mob in DROPLIST.keys() :
QUEST.addKillId(mob)
\ No newline at end of file
<html><body>Blacksmith Hilda:<br> <html><body>Blacksmith Hilda:<br>
I've a tale to interest you. Have you heard tell of <font color="LEVEL">Vulcan</font>, the blacksmith? Now, all us blacksmiths have much to say about fire ... we depend on it for our livelihood. Vulcan, though, he spoke of nothing else, and his talk was the marvel of all who heard it. He said that the fire was the actual life of the blacksmith, and could think of nothing but ways to make his fire hotter and fiercer.<br> I've a tale to interest you. Have you heard tell of <font color="LEVEL">Vulcan</font>, the blacksmith? Now, all us blacksmiths have much to say about fire we depend on it for our livelihood. Vulcan, though, he spoke of nothing else, and his talk was the marvel of all who heard it. He said that the fire was the actual life of the blacksmith, and could think of nothing but ways to make his fire hotter and fiercer.<br>
Eventually, he followed his notions right into the deeps of the <font color="LEVEL">Gods' Forge</font>, where he said he could collect and use all the fire he could want. It's a horribly dangerous place, and he's looking for those who can accompany him, adventurers who are not shy of danger and who can help him collect the flames. Do you reckon to be interested? <br> Eventually, he followed his notions right into the deeps of the <font color="LEVEL">Gods' Forge</font>, where he said he could collect and use all the fire he could want. It's a horribly dangerous place, and he's looking for those who can accompany him, adventurers who are not shy of danger and who can help him collect the flames. Do you reckon to be interested?<br>
<a action="bypass -h Quest 617_GatherTheFlames 31231-03.htm">Express interest in the venture.</a> <a action="bypass -h Quest Q00617_GatherTheFlames 31271-03.htm">Express interest in the venture.</a>
</body></html> </body></html>
\ No newline at end of file
<html><body>Blacksmith Hilda:<br> <html><body>Blacksmith Hilda:<br>
Ho, there! I'm Hilda the Blacksmith, and if you want good, solid work done, there's none better here.<br> Ho, there! I'm Hilda the Blacksmith, and if you want good, solid work done, there's none better here.<br>
Don't pay any attention to the claims of that crackpot <font color="LEVEL">Vulcan</font>. He's mad through and through. Fire is his obsession ... he's forever searching for ways to make fire hotter and fiercer. I care for my fire, as does any competent blacksmith, but there are limits. Anyway, he won't live long enough to help you with anything; he's in the habit of venturing into the <font color="LEVEL">Forge of the Gods</font>, and one day its dangers will claim him - and his eternal fire too! <br> Don't pay any attention to the claims of that crackpot <font color="LEVEL">Vulcan</font>. He's mad through and through. Fire is his obsession he's forever searching for ways to make fire hotter and fiercer. I care for my fire, as does any competent blacksmith, but there are limits. Anyway, he won't live long enough to help you with anything; he's in the habit of venturing into the <font color="LEVEL">Forge of the Gods</font>, and one day its dangers will claim him - and his eternal fire too!<br>
I've heard he is looking for adventurers to help him collect flames, but take my advice: leave that job to tougher adventurers, or wait until you yourselves are tougher. If you accompany him now, you'll die right alongside him. I've heard he is looking for adventurers to help him collect flames, but take my advice: leave that job to tougher adventurers, or wait until you yourselves are tougher. If you accompany him now, you'll die right alongside him.
</body></html> </body></html>
\ No newline at end of file \ No newline at end of file
<html><body>Blacksmith Hilda:<br> <html><body>Blacksmith Hilda:<br>
Very well, then. Defeat the <font color="LEVEL">monsters in the Gods' Forge</font>, collect the flames you find there, and bring them to Vulcan. He's mad, but he's a canny blacksmith; he'll give you an S-grade weapon recipe if you can bring him <font color="LEVEL">1000 flames</font>.<br> Very well, then. Defeat the <font color="LEVEL">monsters in the Gods' Forge</font>, collect the flames you find there, and bring them to Vulcan. He's mad, but he's a canny blacksmith; he'll give you an S-grade weapon recipe if you can bring him <font color="LEVEL">1000 flames</font>.<br>
You may have heard tell of Vulcan's younger brother <font color="LEVEL">Rooney</font>. No? Well, he's as mad as his brother is, and perhaps even cannier as a blacksmith. He's a wandering lad, but he has a lot of different S-grade weapon recipes. <font color="LEVEL">Give Rooney 1200 flames, and he'll reward you with an S-grade weapon recipe.</font> If you can find him in his wanderings, it might be a good idea for you to meet with him too. You may have heard tell of Vulcan's younger brother <font color="LEVEL">Rooney</font>. No? Well, he's as mad as his brother is, and perhaps even cannier as a blacksmith. He's a wandering lad, but he has a lot of different S-grade weapon recipes. <font color="LEVEL">Give Rooney 1200 flames, and he'll reward you with an S-grade weapon recipe.</font> If you can find him in his wanderings, it might be a good idea for you to meet with him too.
</body></html> </body></html>
\ No newline at end of file
<html><body>Blacksmith Hilda:<br>
So you met with Vulcan, did you? Did he give you an earful of his madness? Well, he's mad about flame, but the rewards he offers are real. Defeat the <font color="LEVEL">monsters in the Gods' Forge</font>, collect the flames you find, and go to him; he will give you an S-grade weapon recipe if you bring him <font color="LEVEL">1000 flames</font>.<br>
If you gather even more flames, you might see about meeting Vulcan's younger brother <font color="LEVEL">Rooney</font>. He's as mad as his brother, and he's engaged in the same quest. <font color="LEVEL">Bring him 1200 flames and he will give you an S-grade weapon recipe.</font>. Rooney wanders from here to there, so he's not easy to find...but it might be worth your while to deal with him.
</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