Addition of not done quests.
This commit is contained in:
@@ -49,4 +49,8 @@
|
||||
1900 Storm Isle - Secret Spot
|
||||
1901 Storm Isle - Furtive Deal
|
||||
10595 The Dimensional Warp, Part 8
|
||||
10596 The Dimensional Warp, Part 9
|
||||
10596 The Dimensional Warp, Part 9
|
||||
10904 Journey to the Conquest World
|
||||
10905 Hunting Time
|
||||
10906 Chasing the Light
|
||||
10907 Where Flowers Blossom
|
||||
|
@@ -75,6 +75,10 @@ import quests.not_done.Q01900_StormIsleSecretSpot;
|
||||
import quests.not_done.Q01901_StormIsleFurtiveDeal;
|
||||
import quests.not_done.Q10595_TheDimensionalWarpPart8;
|
||||
import quests.not_done.Q10596_TheDimensionalWarpPart9;
|
||||
import quests.not_done.Q10904_JourneyToTheConquestWorld;
|
||||
import quests.not_done.Q10905_HuntingTime;
|
||||
import quests.not_done.Q10906_ChasingTheLight;
|
||||
import quests.not_done.Q10907_WhereFlowersBlossom;
|
||||
|
||||
/**
|
||||
* @author NosBit
|
||||
@@ -137,6 +141,10 @@ public class QuestMasterHandler
|
||||
Q10888_SaviorsPathDefeatTheEmbryo.class,
|
||||
Q10889_SaviorsPathFallenEmperorsThrone.class,
|
||||
Q10890_SaviorsPathHallOfEtina.class,
|
||||
Q10904_JourneyToTheConquestWorld.class, // TODO: Not done.
|
||||
Q10905_HuntingTime.class, // TODO: Not done.
|
||||
Q10906_ChasingTheLight.class, // TODO: Not done.
|
||||
Q10907_WhereFlowersBlossom.class, // TODO: Not done.
|
||||
Q11024_PathOfDestinyBeginning.class,
|
||||
Q11025_PathOfDestinyProving.class,
|
||||
Q11026_PathOfDestinyConviction.class,
|
||||
|
@@ -0,0 +1,36 @@
|
||||
/*
|
||||
* 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 quests.not_done;
|
||||
|
||||
import org.l2jmobius.Config;
|
||||
import org.l2jmobius.gameserver.model.quest.Quest;
|
||||
|
||||
/**
|
||||
* @author Mobius
|
||||
*/
|
||||
public class Q10904_JourneyToTheConquestWorld extends Quest
|
||||
{
|
||||
private static final int START_NPC = 34600;
|
||||
|
||||
public Q10904_JourneyToTheConquestWorld()
|
||||
{
|
||||
super(10904);
|
||||
addStartNpc(START_NPC);
|
||||
addTalkId(START_NPC);
|
||||
addCondMinLevel(Config.PLAYER_MAXIMUM_LEVEL, getNoQuestMsg(null));
|
||||
}
|
||||
}
|
36
L2J_Mobius_10.2_MasterClass/dist/game/data/scripts/quests/not_done/Q10905_HuntingTime.java
vendored
Normal file
36
L2J_Mobius_10.2_MasterClass/dist/game/data/scripts/quests/not_done/Q10905_HuntingTime.java
vendored
Normal file
@@ -0,0 +1,36 @@
|
||||
/*
|
||||
* 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 quests.not_done;
|
||||
|
||||
import org.l2jmobius.Config;
|
||||
import org.l2jmobius.gameserver.model.quest.Quest;
|
||||
|
||||
/**
|
||||
* @author Mobius
|
||||
*/
|
||||
public class Q10905_HuntingTime extends Quest
|
||||
{
|
||||
private static final int START_NPC = 34599;
|
||||
|
||||
public Q10905_HuntingTime()
|
||||
{
|
||||
super(10905);
|
||||
addStartNpc(START_NPC);
|
||||
addTalkId(START_NPC);
|
||||
addCondMinLevel(Config.PLAYER_MAXIMUM_LEVEL, getNoQuestMsg(null));
|
||||
}
|
||||
}
|
36
L2J_Mobius_10.2_MasterClass/dist/game/data/scripts/quests/not_done/Q10906_ChasingTheLight.java
vendored
Normal file
36
L2J_Mobius_10.2_MasterClass/dist/game/data/scripts/quests/not_done/Q10906_ChasingTheLight.java
vendored
Normal file
@@ -0,0 +1,36 @@
|
||||
/*
|
||||
* 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 quests.not_done;
|
||||
|
||||
import org.l2jmobius.Config;
|
||||
import org.l2jmobius.gameserver.model.quest.Quest;
|
||||
|
||||
/**
|
||||
* @author Mobius
|
||||
*/
|
||||
public class Q10906_ChasingTheLight extends Quest
|
||||
{
|
||||
private static final int START_NPC = 34599;
|
||||
|
||||
public Q10906_ChasingTheLight()
|
||||
{
|
||||
super(10906);
|
||||
addStartNpc(START_NPC);
|
||||
addTalkId(START_NPC);
|
||||
addCondMinLevel(Config.PLAYER_MAXIMUM_LEVEL, getNoQuestMsg(null));
|
||||
}
|
||||
}
|
@@ -0,0 +1,36 @@
|
||||
/*
|
||||
* 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 quests.not_done;
|
||||
|
||||
import org.l2jmobius.Config;
|
||||
import org.l2jmobius.gameserver.model.quest.Quest;
|
||||
|
||||
/**
|
||||
* @author Mobius
|
||||
*/
|
||||
public class Q10907_WhereFlowersBlossom extends Quest
|
||||
{
|
||||
private static final int START_NPC = 34599;
|
||||
|
||||
public Q10907_WhereFlowersBlossom()
|
||||
{
|
||||
super(10907);
|
||||
addStartNpc(START_NPC);
|
||||
addTalkId(START_NPC);
|
||||
addCondMinLevel(Config.PLAYER_MAXIMUM_LEVEL, getNoQuestMsg(null));
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user