Addition of not done quests.
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
504 Competition for the Bandit Stronghold
|
||||
655 A Grand Plan for Taming Wild Beasts
|
||||
504 Battle for Bandit Stronghold
|
||||
655 Taming Wild Beasts
|
||||
690 |Attack| Begin Alliance Base Defense - 1
|
||||
691 |Attack| Begin Alliance Base Defense - 2
|
||||
692 |Attack| Begin Alliance Base Defense - 3
|
||||
@@ -39,14 +39,21 @@
|
||||
729 |Attack| Impede Kain
|
||||
730 |Defense| Impede Kain
|
||||
731 |Support| Impede Kain
|
||||
834 Against Dragonclaw
|
||||
836 Request from the Blackbird Clan
|
||||
837 Request from the Giant Trackers
|
||||
838 Request from the Mother Tree Guardians
|
||||
839 Request from the Unworldly Visitors
|
||||
840 Request from the Kingdom's Royal Guard
|
||||
834 Against Dragonclaw
|
||||
836 Blackbird Clan's Request
|
||||
837 Giant Trackers' Request
|
||||
838 Mother Tree Guardians' Request
|
||||
839 Unworldly Visitors' Request
|
||||
840 Kingdom's Royal Guards' Request
|
||||
861 Kain's Choice
|
||||
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
|
||||
11028 Wind of Destiny - Encounter
|
||||
11029 Wind of Destiny - Promise
|
||||
11030 Wind of Destiny - Choice
|
@@ -75,6 +75,13 @@ 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;
|
||||
import quests.not_done.Q11028_WindOfDestinyEncounter;
|
||||
import quests.not_done.Q11029_WindOfDestinyPromise;
|
||||
import quests.not_done.Q11030_WindOfDestinyChoice;
|
||||
|
||||
/**
|
||||
* @author NosBit
|
||||
@@ -137,6 +144,13 @@ 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.
|
||||
Q11028_WindOfDestinyEncounter.class, // TODO: Not done.
|
||||
Q11029_WindOfDestinyPromise.class, // TODO: Not done.
|
||||
Q11030_WindOfDestinyChoice.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.3_MasterClass/dist/game/data/scripts/quests/not_done/Q10905_HuntingTime.java
vendored
Normal file
36
L2J_Mobius_10.3_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.3_MasterClass/dist/game/data/scripts/quests/not_done/Q10906_ChasingTheLight.java
vendored
Normal file
36
L2J_Mobius_10.3_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));
|
||||
}
|
||||
}
|
@@ -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 Q11028_WindOfDestinyEncounter extends Quest
|
||||
{
|
||||
private static final int START_NPC = 34505;
|
||||
|
||||
public Q11028_WindOfDestinyEncounter()
|
||||
{
|
||||
super(11028);
|
||||
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 Q11029_WindOfDestinyPromise extends Quest
|
||||
{
|
||||
private static final int START_NPC = 34505;
|
||||
|
||||
public Q11029_WindOfDestinyPromise()
|
||||
{
|
||||
super(11029);
|
||||
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 Q11030_WindOfDestinyChoice extends Quest
|
||||
{
|
||||
private static final int START_NPC = 34505;
|
||||
|
||||
public Q11030_WindOfDestinyChoice()
|
||||
{
|
||||
super(11030);
|
||||
addStartNpc(START_NPC);
|
||||
addTalkId(START_NPC);
|
||||
addCondMinLevel(Config.PLAYER_MAXIMUM_LEVEL, getNoQuestMsg(null));
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user