Addition of not done quests.
This commit is contained in:
parent
69178eba2d
commit
fdeb9fcd36
@ -49,4 +49,8 @@
|
|||||||
1900 Storm Isle - Secret Spot
|
1900 Storm Isle - Secret Spot
|
||||||
1901 Storm Isle - Furtive Deal
|
1901 Storm Isle - Furtive Deal
|
||||||
10595 The Dimensional Warp, Part 8
|
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.Q01901_StormIsleFurtiveDeal;
|
||||||
import quests.not_done.Q10595_TheDimensionalWarpPart8;
|
import quests.not_done.Q10595_TheDimensionalWarpPart8;
|
||||||
import quests.not_done.Q10596_TheDimensionalWarpPart9;
|
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
|
* @author NosBit
|
||||||
@ -137,6 +141,10 @@ public class QuestMasterHandler
|
|||||||
Q10888_SaviorsPathDefeatTheEmbryo.class,
|
Q10888_SaviorsPathDefeatTheEmbryo.class,
|
||||||
Q10889_SaviorsPathFallenEmperorsThrone.class,
|
Q10889_SaviorsPathFallenEmperorsThrone.class,
|
||||||
Q10890_SaviorsPathHallOfEtina.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,
|
Q11024_PathOfDestinyBeginning.class,
|
||||||
Q11025_PathOfDestinyProving.class,
|
Q11025_PathOfDestinyProving.class,
|
||||||
Q11026_PathOfDestinyConviction.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));
|
||||||
|
}
|
||||||
|
}
|
@ -1,5 +1,5 @@
|
|||||||
504 Competition for the Bandit Stronghold
|
504 Battle for Bandit Stronghold
|
||||||
655 A Grand Plan for Taming Wild Beasts
|
655 Taming Wild Beasts
|
||||||
690 |Attack| Begin Alliance Base Defense - 1
|
690 |Attack| Begin Alliance Base Defense - 1
|
||||||
691 |Attack| Begin Alliance Base Defense - 2
|
691 |Attack| Begin Alliance Base Defense - 2
|
||||||
692 |Attack| Begin Alliance Base Defense - 3
|
692 |Attack| Begin Alliance Base Defense - 3
|
||||||
@ -39,14 +39,21 @@
|
|||||||
729 |Attack| Impede Kain
|
729 |Attack| Impede Kain
|
||||||
730 |Defense| Impede Kain
|
730 |Defense| Impede Kain
|
||||||
731 |Support| Impede Kain
|
731 |Support| Impede Kain
|
||||||
834 Against Dragonclaw
|
834 Against Dragonclaw
|
||||||
836 Request from the Blackbird Clan
|
836 Blackbird Clan's Request
|
||||||
837 Request from the Giant Trackers
|
837 Giant Trackers' Request
|
||||||
838 Request from the Mother Tree Guardians
|
838 Mother Tree Guardians' Request
|
||||||
839 Request from the Unworldly Visitors
|
839 Unworldly Visitors' Request
|
||||||
840 Request from the Kingdom's Royal Guard
|
840 Kingdom's Royal Guards' Request
|
||||||
861 Kain's Choice
|
861 Kain's Choice
|
||||||
1900 Storm Isle - Secret Spot
|
1900 Storm Isle - Secret Spot
|
||||||
1901 Storm Isle - Furtive Deal
|
1901 Storm Isle - Furtive Deal
|
||||||
10595 The Dimensional Warp, Part 8
|
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.Q01901_StormIsleFurtiveDeal;
|
||||||
import quests.not_done.Q10595_TheDimensionalWarpPart8;
|
import quests.not_done.Q10595_TheDimensionalWarpPart8;
|
||||||
import quests.not_done.Q10596_TheDimensionalWarpPart9;
|
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
|
* @author NosBit
|
||||||
@ -137,6 +144,13 @@ public class QuestMasterHandler
|
|||||||
Q10888_SaviorsPathDefeatTheEmbryo.class,
|
Q10888_SaviorsPathDefeatTheEmbryo.class,
|
||||||
Q10889_SaviorsPathFallenEmperorsThrone.class,
|
Q10889_SaviorsPathFallenEmperorsThrone.class,
|
||||||
Q10890_SaviorsPathHallOfEtina.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,
|
Q11024_PathOfDestinyBeginning.class,
|
||||||
Q11025_PathOfDestinyProving.class,
|
Q11025_PathOfDestinyProving.class,
|
||||||
Q11026_PathOfDestinyConviction.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));
|
||||||
|
}
|
||||||
|
}
|
@ -1,17 +1,19 @@
|
|||||||
201 Tutorial: Blue Gemstones
|
201 Tutorial: Blue Gemstones
|
||||||
202 Tutorial: Blue Gemstones
|
202 Tutorial: Blue Gemstones
|
||||||
203 Tutorial: Blue Gemstones
|
203 Tutorial: Blue Gemstones
|
||||||
204 Tutorial: Blue Gemstones
|
204 Tutorial: Blue Gemstones
|
||||||
205 Tutorial: Blue Gemstones
|
206 Tutorial: Blue Gemstones
|
||||||
206 Tutorial: Blue Gemstones
|
937 Deton's First Request
|
||||||
937 Deton's First Request
|
938 Deton's Second Request
|
||||||
938 Deton's Second Request
|
939 Deton's Third Request
|
||||||
939 Deton's Third Request
|
940 Deton's Fourth Request
|
||||||
940 Deton's Fourth Request
|
941 Deton's Fifth Request
|
||||||
941 Deton's Fifth Request
|
942 Deton's Sixth Request
|
||||||
942 Deton's Sixth Request
|
943 Deton's Seventh Request
|
||||||
943 Deton's Seventh Request
|
944 Deton's Eighth Request
|
||||||
944 Deton's Eighth Request
|
945 Deton's Ninth Request
|
||||||
945 Deton's Ninth Request
|
946 Deton's Tenth Request
|
||||||
946 Deton's Tenth Request
|
10308 Training for the Future
|
||||||
10960 Tutorial: Blue Gemstones
|
10309 Dreamland's Mysteries
|
||||||
|
10310 Victory in Balok Battleground
|
||||||
|
10960 Tutorial: Blue Gemstones
|
@ -1,7 +0,0 @@
|
|||||||
<html><body>Captain Bathis:<br>
|
|
||||||
Its you- The one who made Maraku Werevolves shiver...<br>
|
|
||||||
I was worrived about what they were up to, but thanks to you, I am relived.<br>
|
|
||||||
What?<br1>
|
|
||||||
You look curious. But Im sorry. I don't think I can tell you. I will give you a reward instead.<br>
|
|
||||||
<Button ALIGN=LEFT ICON="NORMAL" action="bypass -h Quest Q10988_Conspiracy reward">Receive reward.</Button>
|
|
||||||
</body></html>
|
|
@ -1,4 +0,0 @@
|
|||||||
<html><body>Trader Uska:<br>
|
|
||||||
I heard that the Maraku Werewolves are raising spiders to do something. We better give them a warning. Defeating 30 of them should be good enough of a warning. Will you go?<br>
|
|
||||||
<Button ALIGN=LEFT ICON="NORMAL" action="bypass -h Quest Q10988_Conspiracy TELEPORT_TO_HUNTING_GROUND">Go to the hunting ground.</Button>
|
|
||||||
</body></html>
|
|
@ -1,6 +0,0 @@
|
|||||||
<html><body>Trader Uska:<br>
|
|
||||||
You want to know what counts as a warning?<br>
|
|
||||||
Lets me see... Defeat 30 of Maraku Werewolfs, and that should do the trick.<br>
|
|
||||||
Will you do it?<br>
|
|
||||||
<Button ALIGN=LEFT ICON="NORMAL" action="bypass -h Quest Q10988_Conspiracy 30560-01.html">"I will do it."</Button>
|
|
||||||
</body></html>
|
|
@ -1,239 +0,0 @@
|
|||||||
/*
|
|
||||||
* 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.Q10988_Conspiracy;
|
|
||||||
|
|
||||||
import java.util.HashSet;
|
|
||||||
import java.util.Set;
|
|
||||||
|
|
||||||
import org.l2jmobius.Config;
|
|
||||||
import org.l2jmobius.gameserver.data.xml.CategoryData;
|
|
||||||
import org.l2jmobius.gameserver.enums.CategoryType;
|
|
||||||
import org.l2jmobius.gameserver.enums.QuestSound;
|
|
||||||
import org.l2jmobius.gameserver.model.actor.Npc;
|
|
||||||
import org.l2jmobius.gameserver.model.actor.Player;
|
|
||||||
import org.l2jmobius.gameserver.model.events.EventType;
|
|
||||||
import org.l2jmobius.gameserver.model.events.ListenerRegisterType;
|
|
||||||
import org.l2jmobius.gameserver.model.events.annotations.RegisterEvent;
|
|
||||||
import org.l2jmobius.gameserver.model.events.annotations.RegisterType;
|
|
||||||
import org.l2jmobius.gameserver.model.events.impl.creature.player.OnPlayerLogin;
|
|
||||||
import org.l2jmobius.gameserver.model.holders.ItemHolder;
|
|
||||||
import org.l2jmobius.gameserver.model.holders.NpcLogListHolder;
|
|
||||||
import org.l2jmobius.gameserver.model.quest.Quest;
|
|
||||||
import org.l2jmobius.gameserver.model.quest.QuestState;
|
|
||||||
import org.l2jmobius.gameserver.network.NpcStringId;
|
|
||||||
import org.l2jmobius.gameserver.network.serverpackets.ExShowScreenMessage;
|
|
||||||
import org.l2jmobius.gameserver.network.serverpackets.classchange.ExClassChangeSetAlarm;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Conspiracy (10988)
|
|
||||||
* @author RobikBobik, Mobius
|
|
||||||
*/
|
|
||||||
public class Q10988_Conspiracy extends Quest
|
|
||||||
{
|
|
||||||
// NPCs
|
|
||||||
private static final int USKA = 30560;
|
|
||||||
private static final int CAPTAIN_BATHIS = 30332;
|
|
||||||
// Monsters
|
|
||||||
private static final int KASHA_SPIDER = 20474;
|
|
||||||
private static final int KASHA_BLADE_SPIDER = 20478;
|
|
||||||
private static final int MARAKU_WEREVOLF_CHIEFTAIN = 20364;
|
|
||||||
private static final int EVIL_EYE_PATROL = 20428;
|
|
||||||
// Items
|
|
||||||
private static final ItemHolder SOE_TO_CAPTAIN_BATHIS = new ItemHolder(91651, 1);
|
|
||||||
private static final ItemHolder SOE_NOVICE = new ItemHolder(10650, 20);
|
|
||||||
private static final ItemHolder SPIRIT_ORE = new ItemHolder(3031, 50);
|
|
||||||
private static final ItemHolder HP_POTS = new ItemHolder(91912, 50);
|
|
||||||
private static final ItemHolder XP_GROWTH_SCROLL = new ItemHolder(49674, 1);
|
|
||||||
// Misc
|
|
||||||
private static final int MAX_LEVEL = 20;
|
|
||||||
private static final String KILL_COUNT_VAR = "KillCount";
|
|
||||||
|
|
||||||
public Q10988_Conspiracy()
|
|
||||||
{
|
|
||||||
super(10988);
|
|
||||||
addStartNpc(USKA);
|
|
||||||
addTalkId(USKA, CAPTAIN_BATHIS);
|
|
||||||
addKillId(KASHA_SPIDER, KASHA_BLADE_SPIDER, MARAKU_WEREVOLF_CHIEFTAIN, EVIL_EYE_PATROL);
|
|
||||||
addCondMaxLevel(MAX_LEVEL, "no_lvl.html");
|
|
||||||
registerQuestItems(SOE_TO_CAPTAIN_BATHIS.getId());
|
|
||||||
setQuestNameNpcStringId(NpcStringId.LV_15_20_CONSPIRACY);
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public boolean checkPartyMember(Player member, Npc npc)
|
|
||||||
{
|
|
||||||
final QuestState qs = getQuestState(member, false);
|
|
||||||
return ((qs != null) && qs.isStarted());
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public String onAdvEvent(String event, Npc npc, Player player)
|
|
||||||
{
|
|
||||||
final QuestState qs = getQuestState(player, false);
|
|
||||||
if (qs == null)
|
|
||||||
{
|
|
||||||
return null;
|
|
||||||
}
|
|
||||||
|
|
||||||
String htmltext = null;
|
|
||||||
switch (event)
|
|
||||||
{
|
|
||||||
case "30560-01.html":
|
|
||||||
{
|
|
||||||
qs.startQuest();
|
|
||||||
htmltext = event;
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
case "30332.html":
|
|
||||||
{
|
|
||||||
htmltext = event;
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
case "TELEPORT_TO_HUNTING_GROUND":
|
|
||||||
{
|
|
||||||
giveStoryBuffReward(npc, player);
|
|
||||||
player.teleToLocation(13136, -131688, -1312);
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
case "NEXT_QUEST":
|
|
||||||
{
|
|
||||||
htmltext = "30560.htm";
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
case "reward":
|
|
||||||
{
|
|
||||||
if (qs.isStarted())
|
|
||||||
{
|
|
||||||
addExpAndSp(player, 600000, 13500);
|
|
||||||
giveItems(player, SOE_NOVICE);
|
|
||||||
giveItems(player, SPIRIT_ORE);
|
|
||||||
giveItems(player, HP_POTS);
|
|
||||||
giveItems(player, XP_GROWTH_SCROLL);
|
|
||||||
giveStoryBuffReward(npc, player);
|
|
||||||
if (CategoryData.getInstance().isInCategory(CategoryType.FIRST_CLASS_GROUP, player.getClassId().getId()))
|
|
||||||
{
|
|
||||||
showOnScreenMsg(player, NpcStringId.YOU_VE_FINISHED_THE_TUTORIAL_TAKE_YOUR_1ST_CLASS_TRANSFER_AND_COMPLETE_YOUR_TRAINING_WITH_BATHIS_TO_BECOME_STRONGER, ExShowScreenMessage.TOP_CENTER, 10000);
|
|
||||||
player.sendPacket(ExClassChangeSetAlarm.STATIC_PACKET);
|
|
||||||
}
|
|
||||||
qs.exitQuest(false, true);
|
|
||||||
}
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return htmltext;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public String onKill(Npc npc, Player killer, boolean isSummon)
|
|
||||||
{
|
|
||||||
final QuestState qs = getQuestState(killer, false);
|
|
||||||
if ((qs != null) && qs.isCond(1))
|
|
||||||
{
|
|
||||||
final int killCount = qs.getInt(KILL_COUNT_VAR) + 1;
|
|
||||||
if (killCount < 30)
|
|
||||||
{
|
|
||||||
qs.set(KILL_COUNT_VAR, killCount);
|
|
||||||
playSound(killer, QuestSound.ITEMSOUND_QUEST_ITEMGET);
|
|
||||||
sendNpcLogList(killer);
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
qs.setCond(2, true);
|
|
||||||
qs.unset(KILL_COUNT_VAR);
|
|
||||||
giveItems(killer, SOE_TO_CAPTAIN_BATHIS);
|
|
||||||
showOnScreenMsg(killer, NpcStringId.YOU_VE_KILLED_ALL_THE_MONSTERS_USE_THE_SCROLL_OF_ESCAPE_IN_YOUR_INVENTORY_TO_RETURN_TO_CAPTAIN_BATHIS_IN_GLUDIO, ExShowScreenMessage.TOP_CENTER, 10000);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return super.onKill(npc, killer, isSummon);
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public Set<NpcLogListHolder> getNpcLogList(Player player)
|
|
||||||
{
|
|
||||||
final QuestState qs = getQuestState(player, false);
|
|
||||||
if ((qs != null) && qs.isCond(1))
|
|
||||||
{
|
|
||||||
final Set<NpcLogListHolder> holder = new HashSet<>();
|
|
||||||
holder.add(new NpcLogListHolder(NpcStringId.EXPOSE_A_PLOT_OF_MARAKU_WEREWOLVES.getId(), true, qs.getInt(KILL_COUNT_VAR)));
|
|
||||||
return holder;
|
|
||||||
}
|
|
||||||
return super.getNpcLogList(player);
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public String onTalk(Npc npc, Player player)
|
|
||||||
{
|
|
||||||
final QuestState qs = getQuestState(player, true);
|
|
||||||
String htmltext = getNoQuestMsg(player);
|
|
||||||
if (qs.isCreated())
|
|
||||||
{
|
|
||||||
htmltext = "30560.htm";
|
|
||||||
}
|
|
||||||
else if (qs.isStarted())
|
|
||||||
{
|
|
||||||
switch (npc.getId())
|
|
||||||
{
|
|
||||||
case USKA:
|
|
||||||
{
|
|
||||||
if (qs.isCond(1))
|
|
||||||
{
|
|
||||||
htmltext = "30560-01.html";
|
|
||||||
}
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
case CAPTAIN_BATHIS:
|
|
||||||
{
|
|
||||||
if (qs.isCond(2))
|
|
||||||
{
|
|
||||||
htmltext = "30332.html";
|
|
||||||
}
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
else if (qs.isCompleted())
|
|
||||||
{
|
|
||||||
if (npc.getId() == USKA)
|
|
||||||
{
|
|
||||||
htmltext = getAlreadyCompletedMsg(player);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return htmltext;
|
|
||||||
}
|
|
||||||
|
|
||||||
@RegisterEvent(EventType.ON_PLAYER_LOGIN)
|
|
||||||
@RegisterType(ListenerRegisterType.GLOBAL_PLAYERS)
|
|
||||||
public void onPlayerLogin(OnPlayerLogin event)
|
|
||||||
{
|
|
||||||
final Player player = event.getPlayer();
|
|
||||||
if (player == null)
|
|
||||||
{
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (!CategoryData.getInstance().isInCategory(CategoryType.FIRST_CLASS_GROUP, player.getClassId().getId()))
|
|
||||||
{
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
final QuestState qs = getQuestState(player, false);
|
|
||||||
if (Config.DISABLE_TUTORIAL || ((qs != null) && qs.isCompleted()))
|
|
||||||
{
|
|
||||||
player.sendPacket(ExClassChangeSetAlarm.STATIC_PACKET);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
@ -1,3 +0,0 @@
|
|||||||
<html><body>Trader Vollodov:<br>
|
|
||||||
You do not meet the requirements of the quest (Quest is only available to 15-20 levels).
|
|
||||||
</body></html>
|
|
@ -70,9 +70,11 @@ import quests.Q10983_TroubledForest.Q10983_TroubledForest;
|
|||||||
import quests.Q10984_CollectSpiderweb.Q10984_CollectSpiderweb;
|
import quests.Q10984_CollectSpiderweb.Q10984_CollectSpiderweb;
|
||||||
import quests.Q10985_CleaningUpTheGround.Q10985_CleaningUpTheGround;
|
import quests.Q10985_CleaningUpTheGround.Q10985_CleaningUpTheGround;
|
||||||
import quests.Q10986_SwampMonster.Q10986_SwampMonster;
|
import quests.Q10986_SwampMonster.Q10986_SwampMonster;
|
||||||
import quests.Q10988_Conspiracy.Q10988_Conspiracy;
|
|
||||||
import quests.Q10989_DangerousPredators.Q10989_DangerousPredators;
|
import quests.Q10989_DangerousPredators.Q10989_DangerousPredators;
|
||||||
import quests.Q10990_PoisonExtraction.Q10990_PoisonExtraction;
|
import quests.Q10990_PoisonExtraction.Q10990_PoisonExtraction;
|
||||||
|
import quests.not_done.Q10308_TrainingForTheFuture;
|
||||||
|
import quests.not_done.Q10309_DreamlandsMysteries;
|
||||||
|
import quests.not_done.Q10310_VictoryInBalokBattleground;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @author NosBit
|
* @author NosBit
|
||||||
@ -106,6 +108,9 @@ public class QuestMasterHandler
|
|||||||
Q10305_DragonsSuspiciousMovements.class,
|
Q10305_DragonsSuspiciousMovements.class,
|
||||||
Q10306_StopSelMahumsTroops.class,
|
Q10306_StopSelMahumsTroops.class,
|
||||||
Q10307_TurekOrcsSecret.class,
|
Q10307_TurekOrcsSecret.class,
|
||||||
|
Q10308_TrainingForTheFuture.class, // TODO: Not done.
|
||||||
|
Q10309_DreamlandsMysteries.class, // TODO: Not done.
|
||||||
|
Q10310_VictoryInBalokBattleground.class, // TODO: Not done.
|
||||||
Q10311_BestMedicine.class,
|
Q10311_BestMedicine.class,
|
||||||
Q10312_GordesLegend.class,
|
Q10312_GordesLegend.class,
|
||||||
Q10313_CunningMorgos.class,
|
Q10313_CunningMorgos.class,
|
||||||
@ -128,7 +133,6 @@ public class QuestMasterHandler
|
|||||||
Q10984_CollectSpiderweb.class,
|
Q10984_CollectSpiderweb.class,
|
||||||
Q10985_CleaningUpTheGround.class,
|
Q10985_CleaningUpTheGround.class,
|
||||||
Q10986_SwampMonster.class,
|
Q10986_SwampMonster.class,
|
||||||
Q10988_Conspiracy.class,
|
|
||||||
Q10989_DangerousPredators.class,
|
Q10989_DangerousPredators.class,
|
||||||
Q10990_PoisonExtraction.class,
|
Q10990_PoisonExtraction.class,
|
||||||
Q10968_ThePowerOfTheMagicLamp.class,
|
Q10968_ThePowerOfTheMagicLamp.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 Q10308_TrainingForTheFuture extends Quest
|
||||||
|
{
|
||||||
|
private static final int START_NPC = 30857;
|
||||||
|
|
||||||
|
public Q10308_TrainingForTheFuture()
|
||||||
|
{
|
||||||
|
super(10308);
|
||||||
|
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 Q10309_DreamlandsMysteries extends Quest
|
||||||
|
{
|
||||||
|
private static final int START_NPC = 34304;
|
||||||
|
|
||||||
|
public Q10309_DreamlandsMysteries()
|
||||||
|
{
|
||||||
|
super(10309);
|
||||||
|
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 Q10310_VictoryInBalokBattleground extends Quest
|
||||||
|
{
|
||||||
|
private static final int START_NPC = 34330;
|
||||||
|
|
||||||
|
public Q10310_VictoryInBalokBattleground()
|
||||||
|
{
|
||||||
|
super(10310);
|
||||||
|
addStartNpc(START_NPC);
|
||||||
|
addTalkId(START_NPC);
|
||||||
|
addCondMinLevel(Config.PLAYER_MAXIMUM_LEVEL, getNoQuestMsg(null));
|
||||||
|
}
|
||||||
|
}
|
@ -1,17 +1,80 @@
|
|||||||
201 Tutorial: Blue Gemstones
|
201 Tutorial: Blue Gemstones
|
||||||
202 Tutorial: Blue Gemstones
|
202 Tutorial: Blue Gemstones
|
||||||
203 Tutorial: Blue Gemstones
|
203 Tutorial: Blue Gemstones
|
||||||
204 Tutorial: Blue Gemstones
|
204 Tutorial: Blue Gemstones
|
||||||
205 Tutorial: Blue Gemstones
|
206 Tutorial: Blue Gemstones
|
||||||
206 Tutorial: Blue Gemstones
|
401 Bury in Oblivion
|
||||||
937 Deton's First Request
|
402 Armed with Bows
|
||||||
938 Deton's Second Request
|
403 Trace of Death
|
||||||
939 Deton's Third Request
|
404 Anything but Skeletons
|
||||||
940 Deton's Fourth Request
|
405 Guarding the Fields of Massacre
|
||||||
941 Deton's Fifth Request
|
406 Exploring the Fields of Massacre
|
||||||
942 Deton's Sixth Request
|
408 Scout Strike
|
||||||
943 Deton's Seventh Request
|
409 Punish Vanor Silenos
|
||||||
944 Deton's Eighth Request
|
410 Main Strike
|
||||||
945 Deton's Ninth Request
|
411 Leaders and Their Minions
|
||||||
946 Deton's Tenth Request
|
412 Vanor Silenos Guards
|
||||||
10960 Tutorial: Blue Gemstones
|
413 Exploring the Plains of Glory
|
||||||
|
415 Those Called Hatar
|
||||||
|
416 Death Bringers
|
||||||
|
417 Weird Creatures
|
||||||
|
418 Orcs All Around
|
||||||
|
419 Those Looking for Battle
|
||||||
|
420 Exploring the War-Torn Plains
|
||||||
|
422 Cruma Tower's 3rd Floor
|
||||||
|
423 Cruma Tower, 2nd floor
|
||||||
|
424 Cruma Tower's Magical Creatures
|
||||||
|
425 Giants' Golems
|
||||||
|
426 Similar Yet Different
|
||||||
|
427 Cruma Tower's Exploration
|
||||||
|
429 Poor Excuse for Giants
|
||||||
|
430 Giants' Creations
|
||||||
|
431 Traces of Ancient Creatures
|
||||||
|
432 Traces of Experiments
|
||||||
|
433 Never Forgotten
|
||||||
|
434 Exploring the Silent Valley
|
||||||
|
436 Beware of Tanta Lizardmen
|
||||||
|
437 Dangerous Lizardmen
|
||||||
|
438 Attacks from All Sides
|
||||||
|
439 Getting Rid of Summoners
|
||||||
|
440 Guards in Disguise
|
||||||
|
441 Exploring the Plains of the Lizardmen
|
||||||
|
443 Born from Dragon Blood
|
||||||
|
444 Curse of the Dragon Valley
|
||||||
|
445 Where Demons Whisper
|
||||||
|
446 No Right to Die
|
||||||
|
447 Dragons' Traces
|
||||||
|
448 Exploring the Dragon Valley (West)
|
||||||
|
450 Masters of the Dragon Valley
|
||||||
|
451 Rise of the Dragons
|
||||||
|
452 Mighty Fighters
|
||||||
|
453 Dragon Mages
|
||||||
|
454 Valley Drakes
|
||||||
|
455 Exploring the Dragon Valley (East)
|
||||||
|
457 Necessary Precautions
|
||||||
|
458 Born to fight
|
||||||
|
459 Sel Mahum Horde
|
||||||
|
460 Magic for smart ones
|
||||||
|
461 In the Base's Barracks
|
||||||
|
462 Exploring the Sel Mahum Base
|
||||||
|
464 Barracks' Main Force
|
||||||
|
465 Don't come closer
|
||||||
|
466 Turek Orcs' Tenacity
|
||||||
|
467 Imposing Orcs
|
||||||
|
468 Turek Orc Leaders
|
||||||
|
469 Exploring the Turek Orc Barracks
|
||||||
|
937 Deton's First Request
|
||||||
|
938 Deton's Second Request
|
||||||
|
939 Deton's Third Request
|
||||||
|
940 Deton's Fourth Request
|
||||||
|
941 Deton's Fifth Request
|
||||||
|
942 Deton's Sixth Request
|
||||||
|
943 Deton's Seventh Request
|
||||||
|
944 Deton's Eighth Request
|
||||||
|
945 Deton's Ninth Request
|
||||||
|
946 Deton's Tenth Request
|
||||||
|
10308 Training for the Future
|
||||||
|
10309 Dreamland's Mysteries
|
||||||
|
10310 Victory in Balok Battleground
|
||||||
|
10949 Patterns and Hidden Power
|
||||||
|
10960 Tutorial: Blue Gemstones
|
@ -1,7 +0,0 @@
|
|||||||
<html><body>Captain Bathis:<br>
|
|
||||||
Its you- The one who made Maraku Werevolves shiver...<br>
|
|
||||||
I was worrived about what they were up to, but thanks to you, I am relived.<br>
|
|
||||||
What?<br1>
|
|
||||||
You look curious. But Im sorry. I don't think I can tell you. I will give you a reward instead.<br>
|
|
||||||
<Button ALIGN=LEFT ICON="NORMAL" action="bypass -h Quest Q10988_Conspiracy reward">Receive reward.</Button>
|
|
||||||
</body></html>
|
|
@ -1,4 +0,0 @@
|
|||||||
<html><body>Trader Uska:<br>
|
|
||||||
I heard that the Maraku Werewolves are raising spiders to do something. We better give them a warning. Defeating 30 of them should be good enough of a warning. Will you go?<br>
|
|
||||||
<Button ALIGN=LEFT ICON="NORMAL" action="bypass -h Quest Q10988_Conspiracy TELEPORT_TO_HUNTING_GROUND">Go to the hunting ground.</Button>
|
|
||||||
</body></html>
|
|
@ -1,6 +0,0 @@
|
|||||||
<html><body>Trader Uska:<br>
|
|
||||||
You want to know what counts as a warning?<br>
|
|
||||||
Lets me see... Defeat 30 of Maraku Werewolfs, and that should do the trick.<br>
|
|
||||||
Will you do it?<br>
|
|
||||||
<Button ALIGN=LEFT ICON="NORMAL" action="bypass -h Quest Q10988_Conspiracy 30560-01.html">"I will do it."</Button>
|
|
||||||
</body></html>
|
|
@ -1,239 +0,0 @@
|
|||||||
/*
|
|
||||||
* 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.Q10988_Conspiracy;
|
|
||||||
|
|
||||||
import java.util.HashSet;
|
|
||||||
import java.util.Set;
|
|
||||||
|
|
||||||
import org.l2jmobius.Config;
|
|
||||||
import org.l2jmobius.gameserver.data.xml.CategoryData;
|
|
||||||
import org.l2jmobius.gameserver.enums.CategoryType;
|
|
||||||
import org.l2jmobius.gameserver.enums.QuestSound;
|
|
||||||
import org.l2jmobius.gameserver.model.actor.Npc;
|
|
||||||
import org.l2jmobius.gameserver.model.actor.Player;
|
|
||||||
import org.l2jmobius.gameserver.model.events.EventType;
|
|
||||||
import org.l2jmobius.gameserver.model.events.ListenerRegisterType;
|
|
||||||
import org.l2jmobius.gameserver.model.events.annotations.RegisterEvent;
|
|
||||||
import org.l2jmobius.gameserver.model.events.annotations.RegisterType;
|
|
||||||
import org.l2jmobius.gameserver.model.events.impl.creature.player.OnPlayerLogin;
|
|
||||||
import org.l2jmobius.gameserver.model.holders.ItemHolder;
|
|
||||||
import org.l2jmobius.gameserver.model.holders.NpcLogListHolder;
|
|
||||||
import org.l2jmobius.gameserver.model.quest.Quest;
|
|
||||||
import org.l2jmobius.gameserver.model.quest.QuestState;
|
|
||||||
import org.l2jmobius.gameserver.network.NpcStringId;
|
|
||||||
import org.l2jmobius.gameserver.network.serverpackets.ExShowScreenMessage;
|
|
||||||
import org.l2jmobius.gameserver.network.serverpackets.classchange.ExClassChangeSetAlarm;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Conspiracy (10988)
|
|
||||||
* @author RobikBobik, Mobius
|
|
||||||
*/
|
|
||||||
public class Q10988_Conspiracy extends Quest
|
|
||||||
{
|
|
||||||
// NPCs
|
|
||||||
private static final int USKA = 30560;
|
|
||||||
private static final int CAPTAIN_BATHIS = 30332;
|
|
||||||
// Monsters
|
|
||||||
private static final int KASHA_SPIDER = 20474;
|
|
||||||
private static final int KASHA_BLADE_SPIDER = 20478;
|
|
||||||
private static final int MARAKU_WEREVOLF_CHIEFTAIN = 20364;
|
|
||||||
private static final int EVIL_EYE_PATROL = 20428;
|
|
||||||
// Items
|
|
||||||
private static final ItemHolder SOE_TO_CAPTAIN_BATHIS = new ItemHolder(91651, 1);
|
|
||||||
private static final ItemHolder SOE_NOVICE = new ItemHolder(10650, 20);
|
|
||||||
private static final ItemHolder SPIRIT_ORE = new ItemHolder(3031, 50);
|
|
||||||
private static final ItemHolder HP_POTS = new ItemHolder(91912, 50);
|
|
||||||
private static final ItemHolder XP_GROWTH_SCROLL = new ItemHolder(49674, 1);
|
|
||||||
// Misc
|
|
||||||
private static final int MAX_LEVEL = 20;
|
|
||||||
private static final String KILL_COUNT_VAR = "KillCount";
|
|
||||||
|
|
||||||
public Q10988_Conspiracy()
|
|
||||||
{
|
|
||||||
super(10988);
|
|
||||||
addStartNpc(USKA);
|
|
||||||
addTalkId(USKA, CAPTAIN_BATHIS);
|
|
||||||
addKillId(KASHA_SPIDER, KASHA_BLADE_SPIDER, MARAKU_WEREVOLF_CHIEFTAIN, EVIL_EYE_PATROL);
|
|
||||||
addCondMaxLevel(MAX_LEVEL, "no_lvl.html");
|
|
||||||
registerQuestItems(SOE_TO_CAPTAIN_BATHIS.getId());
|
|
||||||
setQuestNameNpcStringId(NpcStringId.LV_15_20_CONSPIRACY);
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public boolean checkPartyMember(Player member, Npc npc)
|
|
||||||
{
|
|
||||||
final QuestState qs = getQuestState(member, false);
|
|
||||||
return ((qs != null) && qs.isStarted());
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public String onAdvEvent(String event, Npc npc, Player player)
|
|
||||||
{
|
|
||||||
final QuestState qs = getQuestState(player, false);
|
|
||||||
if (qs == null)
|
|
||||||
{
|
|
||||||
return null;
|
|
||||||
}
|
|
||||||
|
|
||||||
String htmltext = null;
|
|
||||||
switch (event)
|
|
||||||
{
|
|
||||||
case "30560-01.html":
|
|
||||||
{
|
|
||||||
qs.startQuest();
|
|
||||||
htmltext = event;
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
case "30332.html":
|
|
||||||
{
|
|
||||||
htmltext = event;
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
case "TELEPORT_TO_HUNTING_GROUND":
|
|
||||||
{
|
|
||||||
giveStoryBuffReward(npc, player);
|
|
||||||
player.teleToLocation(13136, -131688, -1312);
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
case "NEXT_QUEST":
|
|
||||||
{
|
|
||||||
htmltext = "30560.htm";
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
case "reward":
|
|
||||||
{
|
|
||||||
if (qs.isStarted())
|
|
||||||
{
|
|
||||||
addExpAndSp(player, 600000, 13500);
|
|
||||||
giveItems(player, SOE_NOVICE);
|
|
||||||
giveItems(player, SPIRIT_ORE);
|
|
||||||
giveItems(player, HP_POTS);
|
|
||||||
giveItems(player, XP_GROWTH_SCROLL);
|
|
||||||
giveStoryBuffReward(npc, player);
|
|
||||||
if (CategoryData.getInstance().isInCategory(CategoryType.FIRST_CLASS_GROUP, player.getClassId().getId()))
|
|
||||||
{
|
|
||||||
showOnScreenMsg(player, NpcStringId.YOU_VE_FINISHED_THE_TUTORIAL_TAKE_YOUR_1ST_CLASS_TRANSFER_AND_COMPLETE_YOUR_TRAINING_WITH_BATHIS_TO_BECOME_STRONGER, ExShowScreenMessage.TOP_CENTER, 10000);
|
|
||||||
player.sendPacket(ExClassChangeSetAlarm.STATIC_PACKET);
|
|
||||||
}
|
|
||||||
qs.exitQuest(false, true);
|
|
||||||
}
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return htmltext;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public String onKill(Npc npc, Player killer, boolean isSummon)
|
|
||||||
{
|
|
||||||
final QuestState qs = getQuestState(killer, false);
|
|
||||||
if ((qs != null) && qs.isCond(1))
|
|
||||||
{
|
|
||||||
final int killCount = qs.getInt(KILL_COUNT_VAR) + 1;
|
|
||||||
if (killCount < 30)
|
|
||||||
{
|
|
||||||
qs.set(KILL_COUNT_VAR, killCount);
|
|
||||||
playSound(killer, QuestSound.ITEMSOUND_QUEST_ITEMGET);
|
|
||||||
sendNpcLogList(killer);
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
qs.setCond(2, true);
|
|
||||||
qs.unset(KILL_COUNT_VAR);
|
|
||||||
giveItems(killer, SOE_TO_CAPTAIN_BATHIS);
|
|
||||||
showOnScreenMsg(killer, NpcStringId.YOU_VE_KILLED_ALL_THE_MONSTERS_USE_THE_SCROLL_OF_ESCAPE_IN_YOUR_INVENTORY_TO_RETURN_TO_CAPTAIN_BATHIS_IN_GLUDIO, ExShowScreenMessage.TOP_CENTER, 10000);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return super.onKill(npc, killer, isSummon);
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public Set<NpcLogListHolder> getNpcLogList(Player player)
|
|
||||||
{
|
|
||||||
final QuestState qs = getQuestState(player, false);
|
|
||||||
if ((qs != null) && qs.isCond(1))
|
|
||||||
{
|
|
||||||
final Set<NpcLogListHolder> holder = new HashSet<>();
|
|
||||||
holder.add(new NpcLogListHolder(NpcStringId.EXPOSE_A_PLOT_OF_MARAKU_WEREWOLVES.getId(), true, qs.getInt(KILL_COUNT_VAR)));
|
|
||||||
return holder;
|
|
||||||
}
|
|
||||||
return super.getNpcLogList(player);
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public String onTalk(Npc npc, Player player)
|
|
||||||
{
|
|
||||||
final QuestState qs = getQuestState(player, true);
|
|
||||||
String htmltext = getNoQuestMsg(player);
|
|
||||||
if (qs.isCreated())
|
|
||||||
{
|
|
||||||
htmltext = "30560.htm";
|
|
||||||
}
|
|
||||||
else if (qs.isStarted())
|
|
||||||
{
|
|
||||||
switch (npc.getId())
|
|
||||||
{
|
|
||||||
case USKA:
|
|
||||||
{
|
|
||||||
if (qs.isCond(1))
|
|
||||||
{
|
|
||||||
htmltext = "30560-01.html";
|
|
||||||
}
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
case CAPTAIN_BATHIS:
|
|
||||||
{
|
|
||||||
if (qs.isCond(2))
|
|
||||||
{
|
|
||||||
htmltext = "30332.html";
|
|
||||||
}
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
else if (qs.isCompleted())
|
|
||||||
{
|
|
||||||
if (npc.getId() == USKA)
|
|
||||||
{
|
|
||||||
htmltext = getAlreadyCompletedMsg(player);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return htmltext;
|
|
||||||
}
|
|
||||||
|
|
||||||
@RegisterEvent(EventType.ON_PLAYER_LOGIN)
|
|
||||||
@RegisterType(ListenerRegisterType.GLOBAL_PLAYERS)
|
|
||||||
public void onPlayerLogin(OnPlayerLogin event)
|
|
||||||
{
|
|
||||||
final Player player = event.getPlayer();
|
|
||||||
if (player == null)
|
|
||||||
{
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (!CategoryData.getInstance().isInCategory(CategoryType.FIRST_CLASS_GROUP, player.getClassId().getId()))
|
|
||||||
{
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
final QuestState qs = getQuestState(player, false);
|
|
||||||
if (Config.DISABLE_TUTORIAL || ((qs != null) && qs.isCompleted()))
|
|
||||||
{
|
|
||||||
player.sendPacket(ExClassChangeSetAlarm.STATIC_PACKET);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
@ -1,3 +0,0 @@
|
|||||||
<html><body>Trader Vollodov:<br>
|
|
||||||
You do not meet the requirements of the quest (Quest is only available to 15-20 levels).
|
|
||||||
</body></html>
|
|
@ -69,9 +69,72 @@ import quests.Q10983_TroubledForest.Q10983_TroubledForest;
|
|||||||
import quests.Q10984_CollectSpiderweb.Q10984_CollectSpiderweb;
|
import quests.Q10984_CollectSpiderweb.Q10984_CollectSpiderweb;
|
||||||
import quests.Q10985_CleaningUpTheGround.Q10985_CleaningUpTheGround;
|
import quests.Q10985_CleaningUpTheGround.Q10985_CleaningUpTheGround;
|
||||||
import quests.Q10986_SwampMonster.Q10986_SwampMonster;
|
import quests.Q10986_SwampMonster.Q10986_SwampMonster;
|
||||||
import quests.Q10988_Conspiracy.Q10988_Conspiracy;
|
|
||||||
import quests.Q10989_DangerousPredators.Q10989_DangerousPredators;
|
import quests.Q10989_DangerousPredators.Q10989_DangerousPredators;
|
||||||
import quests.Q10990_PoisonExtraction.Q10990_PoisonExtraction;
|
import quests.Q10990_PoisonExtraction.Q10990_PoisonExtraction;
|
||||||
|
import quests.not_done.Q00401_BuryInOblivion;
|
||||||
|
import quests.not_done.Q00402_ArmedWithBows;
|
||||||
|
import quests.not_done.Q00403_TraceOfDeath;
|
||||||
|
import quests.not_done.Q00404_AnythingButSkeletons;
|
||||||
|
import quests.not_done.Q00405_GuardingTheFieldsOfMassacre;
|
||||||
|
import quests.not_done.Q00406_ExploringTheFieldsOfMassacre;
|
||||||
|
import quests.not_done.Q00408_ScoutStrike;
|
||||||
|
import quests.not_done.Q00409_PunishVanorSilenos;
|
||||||
|
import quests.not_done.Q00410_MainStrike;
|
||||||
|
import quests.not_done.Q00411_LeadersAndTheirMinions;
|
||||||
|
import quests.not_done.Q00412_VanorSilenosGuards;
|
||||||
|
import quests.not_done.Q00413_ExploringThePlainsOfGlory;
|
||||||
|
import quests.not_done.Q00415_ThoseCalledHatar;
|
||||||
|
import quests.not_done.Q00416_DeathBringers;
|
||||||
|
import quests.not_done.Q00417_WeirdCreatures;
|
||||||
|
import quests.not_done.Q00418_OrcsAllAround;
|
||||||
|
import quests.not_done.Q00419_ThoseLookingForBattle;
|
||||||
|
import quests.not_done.Q00420_ExploringTheWarTornPlains;
|
||||||
|
import quests.not_done.Q00422_CrumaTowers3rdFloor;
|
||||||
|
import quests.not_done.Q00423_CrumaTower2ndFloor;
|
||||||
|
import quests.not_done.Q00424_CrumaTowersMagicalCreatures;
|
||||||
|
import quests.not_done.Q00425_GiantsGolems;
|
||||||
|
import quests.not_done.Q00426_SimilarYetDifferent;
|
||||||
|
import quests.not_done.Q00427_CrumaTowersExploration;
|
||||||
|
import quests.not_done.Q00429_PoorExcuseForGiants;
|
||||||
|
import quests.not_done.Q00430_GiantsCreations;
|
||||||
|
import quests.not_done.Q00431_TracesOfAncientCreatures;
|
||||||
|
import quests.not_done.Q00432_TracesOfExperiments;
|
||||||
|
import quests.not_done.Q00433_NeverForgotten;
|
||||||
|
import quests.not_done.Q00434_ExploringTheSilentValley;
|
||||||
|
import quests.not_done.Q00436_BewareOfTantaLizardmen;
|
||||||
|
import quests.not_done.Q00437_DangerousLizardmen;
|
||||||
|
import quests.not_done.Q00438_AttacksFromAllSides;
|
||||||
|
import quests.not_done.Q00439_GettingRidOfSummoners;
|
||||||
|
import quests.not_done.Q00440_GuardsInDisguise;
|
||||||
|
import quests.not_done.Q00441_ExploringThePlainsOfTheLizardmen;
|
||||||
|
import quests.not_done.Q00443_BornFromDragonBlood;
|
||||||
|
import quests.not_done.Q00444_CurseOfTheDragonValley;
|
||||||
|
import quests.not_done.Q00445_WhereDemonsWhisper;
|
||||||
|
import quests.not_done.Q00446_NoRightToDie;
|
||||||
|
import quests.not_done.Q00447_DragonsTraces;
|
||||||
|
import quests.not_done.Q00448_ExploringTheDragonValleyWest;
|
||||||
|
import quests.not_done.Q00450_MastersOfTheDragonValley;
|
||||||
|
import quests.not_done.Q00451_RiseOfTheDragons;
|
||||||
|
import quests.not_done.Q00452_MightyFighters;
|
||||||
|
import quests.not_done.Q00453_DragonMages;
|
||||||
|
import quests.not_done.Q00454_ValleyDrakes;
|
||||||
|
import quests.not_done.Q00455_ExploringTheDragonValleyEast;
|
||||||
|
import quests.not_done.Q00457_NecessaryPrecautions;
|
||||||
|
import quests.not_done.Q00458_BornToFight;
|
||||||
|
import quests.not_done.Q00459_SelMahumHorde;
|
||||||
|
import quests.not_done.Q00460_MagicForSmartOnes;
|
||||||
|
import quests.not_done.Q00461_InTheBasesBarracks;
|
||||||
|
import quests.not_done.Q00462_ExploringTheSelMahumBase;
|
||||||
|
import quests.not_done.Q00464_BarracksMainForce;
|
||||||
|
import quests.not_done.Q00465_DontComeCloser;
|
||||||
|
import quests.not_done.Q00466_TurekOrcsTenacity;
|
||||||
|
import quests.not_done.Q00467_ImposingOrcs;
|
||||||
|
import quests.not_done.Q00468_TurekOrcLeaders;
|
||||||
|
import quests.not_done.Q00469_ExploringTheTurekOrcBarracks;
|
||||||
|
import quests.not_done.Q10308_TrainingForTheFuture;
|
||||||
|
import quests.not_done.Q10309_DreamlandsMysteries;
|
||||||
|
import quests.not_done.Q10310_VictoryInBalokBattleground;
|
||||||
|
import quests.not_done.Q10949_PatternsAndHiddenPower;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @author NosBit
|
* @author NosBit
|
||||||
@ -84,6 +147,66 @@ public class QuestMasterHandler
|
|||||||
{
|
{
|
||||||
Q00127_FishingSpecialistsRequest.class,
|
Q00127_FishingSpecialistsRequest.class,
|
||||||
Q00255_Tutorial.class,
|
Q00255_Tutorial.class,
|
||||||
|
Q00401_BuryInOblivion.class, // TODO: Not done.
|
||||||
|
Q00402_ArmedWithBows.class, // TODO: Not done.
|
||||||
|
Q00403_TraceOfDeath.class, // TODO: Not done.
|
||||||
|
Q00404_AnythingButSkeletons.class, // TODO: Not done.
|
||||||
|
Q00405_GuardingTheFieldsOfMassacre.class, // TODO: Not done.
|
||||||
|
Q00406_ExploringTheFieldsOfMassacre.class, // TODO: Not done.
|
||||||
|
Q00408_ScoutStrike.class, // TODO: Not done.
|
||||||
|
Q00409_PunishVanorSilenos.class, // TODO: Not done.
|
||||||
|
Q00410_MainStrike.class, // TODO: Not done.
|
||||||
|
Q00411_LeadersAndTheirMinions.class, // TODO: Not done.
|
||||||
|
Q00412_VanorSilenosGuards.class, // TODO: Not done.
|
||||||
|
Q00413_ExploringThePlainsOfGlory.class, // TODO: Not done.
|
||||||
|
Q00415_ThoseCalledHatar.class, // TODO: Not done.
|
||||||
|
Q00416_DeathBringers.class, // TODO: Not done.
|
||||||
|
Q00417_WeirdCreatures.class, // TODO: Not done.
|
||||||
|
Q00418_OrcsAllAround.class, // TODO: Not done.
|
||||||
|
Q00419_ThoseLookingForBattle.class, // TODO: Not done.
|
||||||
|
Q00420_ExploringTheWarTornPlains.class, // TODO: Not done.
|
||||||
|
Q00422_CrumaTowers3rdFloor.class, // TODO: Not done.
|
||||||
|
Q00423_CrumaTower2ndFloor.class, // TODO: Not done.
|
||||||
|
Q00424_CrumaTowersMagicalCreatures.class, // TODO: Not done.
|
||||||
|
Q00425_GiantsGolems.class, // TODO: Not done.
|
||||||
|
Q00426_SimilarYetDifferent.class, // TODO: Not done.
|
||||||
|
Q00427_CrumaTowersExploration.class, // TODO: Not done.
|
||||||
|
Q00429_PoorExcuseForGiants.class, // TODO: Not done.
|
||||||
|
Q00430_GiantsCreations.class, // TODO: Not done.
|
||||||
|
Q00431_TracesOfAncientCreatures.class, // TODO: Not done.
|
||||||
|
Q00432_TracesOfExperiments.class, // TODO: Not done.
|
||||||
|
Q00433_NeverForgotten.class, // TODO: Not done.
|
||||||
|
Q00434_ExploringTheSilentValley.class, // TODO: Not done.
|
||||||
|
Q00436_BewareOfTantaLizardmen.class, // TODO: Not done.
|
||||||
|
Q00437_DangerousLizardmen.class, // TODO: Not done.
|
||||||
|
Q00438_AttacksFromAllSides.class, // TODO: Not done.
|
||||||
|
Q00439_GettingRidOfSummoners.class, // TODO: Not done.
|
||||||
|
Q00440_GuardsInDisguise.class, // TODO: Not done.
|
||||||
|
Q00441_ExploringThePlainsOfTheLizardmen.class, // TODO: Not done.
|
||||||
|
Q00443_BornFromDragonBlood.class, // TODO: Not done.
|
||||||
|
Q00444_CurseOfTheDragonValley.class, // TODO: Not done.
|
||||||
|
Q00445_WhereDemonsWhisper.class, // TODO: Not done.
|
||||||
|
Q00446_NoRightToDie.class, // TODO: Not done.
|
||||||
|
Q00447_DragonsTraces.class, // TODO: Not done.
|
||||||
|
Q00448_ExploringTheDragonValleyWest.class, // TODO: Not done.
|
||||||
|
Q00450_MastersOfTheDragonValley.class, // TODO: Not done.
|
||||||
|
Q00451_RiseOfTheDragons.class, // TODO: Not done.
|
||||||
|
Q00452_MightyFighters.class, // TODO: Not done.
|
||||||
|
Q00453_DragonMages.class, // TODO: Not done.
|
||||||
|
Q00454_ValleyDrakes.class, // TODO: Not done.
|
||||||
|
Q00455_ExploringTheDragonValleyEast.class, // TODO: Not done.
|
||||||
|
Q00457_NecessaryPrecautions.class, // TODO: Not done.
|
||||||
|
Q00458_BornToFight.class, // TODO: Not done.
|
||||||
|
Q00459_SelMahumHorde.class, // TODO: Not done.
|
||||||
|
Q00460_MagicForSmartOnes.class, // TODO: Not done.
|
||||||
|
Q00461_InTheBasesBarracks.class, // TODO: Not done.
|
||||||
|
Q00462_ExploringTheSelMahumBase.class, // TODO: Not done.
|
||||||
|
Q00464_BarracksMainForce.class, // TODO: Not done.
|
||||||
|
Q00465_DontComeCloser.class, // TODO: Not done.
|
||||||
|
Q00466_TurekOrcsTenacity.class, // TODO: Not done.
|
||||||
|
Q00467_ImposingOrcs.class, // TODO: Not done.
|
||||||
|
Q00468_TurekOrcLeaders.class, // TODO: Not done.
|
||||||
|
Q00469_ExploringTheTurekOrcBarracks.class, // TODO: Not done.
|
||||||
Q00502_BrothersBoundInChains.class,
|
Q00502_BrothersBoundInChains.class,
|
||||||
Q00662_AGameOfCards.class,
|
Q00662_AGameOfCards.class,
|
||||||
Q10673_SagaOfLegend.class,
|
Q10673_SagaOfLegend.class,
|
||||||
@ -104,10 +227,14 @@ public class QuestMasterHandler
|
|||||||
Q10305_DragonsSuspiciousMovements.class,
|
Q10305_DragonsSuspiciousMovements.class,
|
||||||
Q10306_StopSelMahumsTroops.class,
|
Q10306_StopSelMahumsTroops.class,
|
||||||
Q10307_TurekOrcsSecret.class,
|
Q10307_TurekOrcsSecret.class,
|
||||||
|
Q10308_TrainingForTheFuture.class, // TODO: Not done.
|
||||||
|
Q10309_DreamlandsMysteries.class, // TODO: Not done.
|
||||||
|
Q10310_VictoryInBalokBattleground.class, // TODO: Not done.
|
||||||
Q10311_BestMedicine.class,
|
Q10311_BestMedicine.class,
|
||||||
Q10312_GordesLegend.class,
|
Q10312_GordesLegend.class,
|
||||||
Q10313_CunningMorgos.class,
|
Q10313_CunningMorgos.class,
|
||||||
Q10314_MorgosRetributionXilenos.class,
|
Q10314_MorgosRetributionXilenos.class,
|
||||||
|
Q10949_PatternsAndHiddenPower.class, // TODO: Not done.
|
||||||
Q10950_FiercestFlame.class,
|
Q10950_FiercestFlame.class,
|
||||||
Q10951_NewFlameOfOrcs.class,
|
Q10951_NewFlameOfOrcs.class,
|
||||||
Q10952_ProtectAtAllCosts.class,
|
Q10952_ProtectAtAllCosts.class,
|
||||||
@ -126,7 +253,6 @@ public class QuestMasterHandler
|
|||||||
Q10984_CollectSpiderweb.class,
|
Q10984_CollectSpiderweb.class,
|
||||||
Q10985_CleaningUpTheGround.class,
|
Q10985_CleaningUpTheGround.class,
|
||||||
Q10986_SwampMonster.class,
|
Q10986_SwampMonster.class,
|
||||||
Q10988_Conspiracy.class,
|
|
||||||
Q10989_DangerousPredators.class,
|
Q10989_DangerousPredators.class,
|
||||||
Q10990_PoisonExtraction.class,
|
Q10990_PoisonExtraction.class,
|
||||||
Q10968_ThePowerOfTheMagicLamp.class,
|
Q10968_ThePowerOfTheMagicLamp.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 Q00401_BuryInOblivion extends Quest
|
||||||
|
{
|
||||||
|
private static final int START_NPC = 34369;
|
||||||
|
|
||||||
|
public Q00401_BuryInOblivion()
|
||||||
|
{
|
||||||
|
super(401);
|
||||||
|
addStartNpc(START_NPC);
|
||||||
|
addTalkId(START_NPC);
|
||||||
|
addCondMinLevel(Config.PLAYER_MAXIMUM_LEVEL, getNoQuestMsg(null));
|
||||||
|
}
|
||||||
|
}
|
36
L2J_Mobius_Essence_6.3_Crusader/dist/game/data/scripts/quests/not_done/Q00402_ArmedWithBows.java
vendored
Normal file
36
L2J_Mobius_Essence_6.3_Crusader/dist/game/data/scripts/quests/not_done/Q00402_ArmedWithBows.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 Q00402_ArmedWithBows extends Quest
|
||||||
|
{
|
||||||
|
private static final int START_NPC = 34369;
|
||||||
|
|
||||||
|
public Q00402_ArmedWithBows()
|
||||||
|
{
|
||||||
|
super(402);
|
||||||
|
addStartNpc(START_NPC);
|
||||||
|
addTalkId(START_NPC);
|
||||||
|
addCondMinLevel(Config.PLAYER_MAXIMUM_LEVEL, getNoQuestMsg(null));
|
||||||
|
}
|
||||||
|
}
|
36
L2J_Mobius_Essence_6.3_Crusader/dist/game/data/scripts/quests/not_done/Q00403_TraceOfDeath.java
vendored
Normal file
36
L2J_Mobius_Essence_6.3_Crusader/dist/game/data/scripts/quests/not_done/Q00403_TraceOfDeath.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 Q00403_TraceOfDeath extends Quest
|
||||||
|
{
|
||||||
|
private static final int START_NPC = 34369;
|
||||||
|
|
||||||
|
public Q00403_TraceOfDeath()
|
||||||
|
{
|
||||||
|
super(403);
|
||||||
|
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 Q00404_AnythingButSkeletons extends Quest
|
||||||
|
{
|
||||||
|
private static final int START_NPC = 34369;
|
||||||
|
|
||||||
|
public Q00404_AnythingButSkeletons()
|
||||||
|
{
|
||||||
|
super(404);
|
||||||
|
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 Q00405_GuardingTheFieldsOfMassacre extends Quest
|
||||||
|
{
|
||||||
|
private static final int START_NPC = 34369;
|
||||||
|
|
||||||
|
public Q00405_GuardingTheFieldsOfMassacre()
|
||||||
|
{
|
||||||
|
super(405);
|
||||||
|
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 Q00406_ExploringTheFieldsOfMassacre extends Quest
|
||||||
|
{
|
||||||
|
private static final int START_NPC = 34369;
|
||||||
|
|
||||||
|
public Q00406_ExploringTheFieldsOfMassacre()
|
||||||
|
{
|
||||||
|
super(406);
|
||||||
|
addStartNpc(START_NPC);
|
||||||
|
addTalkId(START_NPC);
|
||||||
|
addCondMinLevel(Config.PLAYER_MAXIMUM_LEVEL, getNoQuestMsg(null));
|
||||||
|
}
|
||||||
|
}
|
36
L2J_Mobius_Essence_6.3_Crusader/dist/game/data/scripts/quests/not_done/Q00408_ScoutStrike.java
vendored
Normal file
36
L2J_Mobius_Essence_6.3_Crusader/dist/game/data/scripts/quests/not_done/Q00408_ScoutStrike.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 Q00408_ScoutStrike extends Quest
|
||||||
|
{
|
||||||
|
private static final int START_NPC = 34369;
|
||||||
|
|
||||||
|
public Q00408_ScoutStrike()
|
||||||
|
{
|
||||||
|
super(408);
|
||||||
|
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 Q00409_PunishVanorSilenos extends Quest
|
||||||
|
{
|
||||||
|
private static final int START_NPC = 34369;
|
||||||
|
|
||||||
|
public Q00409_PunishVanorSilenos()
|
||||||
|
{
|
||||||
|
super(409);
|
||||||
|
addStartNpc(START_NPC);
|
||||||
|
addTalkId(START_NPC);
|
||||||
|
addCondMinLevel(Config.PLAYER_MAXIMUM_LEVEL, getNoQuestMsg(null));
|
||||||
|
}
|
||||||
|
}
|
36
L2J_Mobius_Essence_6.3_Crusader/dist/game/data/scripts/quests/not_done/Q00410_MainStrike.java
vendored
Normal file
36
L2J_Mobius_Essence_6.3_Crusader/dist/game/data/scripts/quests/not_done/Q00410_MainStrike.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 Q00410_MainStrike extends Quest
|
||||||
|
{
|
||||||
|
private static final int START_NPC = 34369;
|
||||||
|
|
||||||
|
public Q00410_MainStrike()
|
||||||
|
{
|
||||||
|
super(410);
|
||||||
|
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 Q00411_LeadersAndTheirMinions extends Quest
|
||||||
|
{
|
||||||
|
private static final int START_NPC = 34369;
|
||||||
|
|
||||||
|
public Q00411_LeadersAndTheirMinions()
|
||||||
|
{
|
||||||
|
super(411);
|
||||||
|
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 Q00412_VanorSilenosGuards extends Quest
|
||||||
|
{
|
||||||
|
private static final int START_NPC = 34369;
|
||||||
|
|
||||||
|
public Q00412_VanorSilenosGuards()
|
||||||
|
{
|
||||||
|
super(412);
|
||||||
|
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 Q00413_ExploringThePlainsOfGlory extends Quest
|
||||||
|
{
|
||||||
|
private static final int START_NPC = 34369;
|
||||||
|
|
||||||
|
public Q00413_ExploringThePlainsOfGlory()
|
||||||
|
{
|
||||||
|
super(413);
|
||||||
|
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 Q00415_ThoseCalledHatar extends Quest
|
||||||
|
{
|
||||||
|
private static final int START_NPC = 34369;
|
||||||
|
|
||||||
|
public Q00415_ThoseCalledHatar()
|
||||||
|
{
|
||||||
|
super(415);
|
||||||
|
addStartNpc(START_NPC);
|
||||||
|
addTalkId(START_NPC);
|
||||||
|
addCondMinLevel(Config.PLAYER_MAXIMUM_LEVEL, getNoQuestMsg(null));
|
||||||
|
}
|
||||||
|
}
|
36
L2J_Mobius_Essence_6.3_Crusader/dist/game/data/scripts/quests/not_done/Q00416_DeathBringers.java
vendored
Normal file
36
L2J_Mobius_Essence_6.3_Crusader/dist/game/data/scripts/quests/not_done/Q00416_DeathBringers.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 Q00416_DeathBringers extends Quest
|
||||||
|
{
|
||||||
|
private static final int START_NPC = 34369;
|
||||||
|
|
||||||
|
public Q00416_DeathBringers()
|
||||||
|
{
|
||||||
|
super(416);
|
||||||
|
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 Q00417_WeirdCreatures extends Quest
|
||||||
|
{
|
||||||
|
private static final int START_NPC = 34369;
|
||||||
|
|
||||||
|
public Q00417_WeirdCreatures()
|
||||||
|
{
|
||||||
|
super(417);
|
||||||
|
addStartNpc(START_NPC);
|
||||||
|
addTalkId(START_NPC);
|
||||||
|
addCondMinLevel(Config.PLAYER_MAXIMUM_LEVEL, getNoQuestMsg(null));
|
||||||
|
}
|
||||||
|
}
|
36
L2J_Mobius_Essence_6.3_Crusader/dist/game/data/scripts/quests/not_done/Q00418_OrcsAllAround.java
vendored
Normal file
36
L2J_Mobius_Essence_6.3_Crusader/dist/game/data/scripts/quests/not_done/Q00418_OrcsAllAround.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 Q00418_OrcsAllAround extends Quest
|
||||||
|
{
|
||||||
|
private static final int START_NPC = 34369;
|
||||||
|
|
||||||
|
public Q00418_OrcsAllAround()
|
||||||
|
{
|
||||||
|
super(418);
|
||||||
|
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 Q00419_ThoseLookingForBattle extends Quest
|
||||||
|
{
|
||||||
|
private static final int START_NPC = 34369;
|
||||||
|
|
||||||
|
public Q00419_ThoseLookingForBattle()
|
||||||
|
{
|
||||||
|
super(419);
|
||||||
|
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 Q00420_ExploringTheWarTornPlains extends Quest
|
||||||
|
{
|
||||||
|
private static final int START_NPC = 34369;
|
||||||
|
|
||||||
|
public Q00420_ExploringTheWarTornPlains()
|
||||||
|
{
|
||||||
|
super(420);
|
||||||
|
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 Q00422_CrumaTowers3rdFloor extends Quest
|
||||||
|
{
|
||||||
|
private static final int START_NPC = 34369;
|
||||||
|
|
||||||
|
public Q00422_CrumaTowers3rdFloor()
|
||||||
|
{
|
||||||
|
super(422);
|
||||||
|
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 Q00423_CrumaTower2ndFloor extends Quest
|
||||||
|
{
|
||||||
|
private static final int START_NPC = 34369;
|
||||||
|
|
||||||
|
public Q00423_CrumaTower2ndFloor()
|
||||||
|
{
|
||||||
|
super(423);
|
||||||
|
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 Q00424_CrumaTowersMagicalCreatures extends Quest
|
||||||
|
{
|
||||||
|
private static final int START_NPC = 34369;
|
||||||
|
|
||||||
|
public Q00424_CrumaTowersMagicalCreatures()
|
||||||
|
{
|
||||||
|
super(424);
|
||||||
|
addStartNpc(START_NPC);
|
||||||
|
addTalkId(START_NPC);
|
||||||
|
addCondMinLevel(Config.PLAYER_MAXIMUM_LEVEL, getNoQuestMsg(null));
|
||||||
|
}
|
||||||
|
}
|
36
L2J_Mobius_Essence_6.3_Crusader/dist/game/data/scripts/quests/not_done/Q00425_GiantsGolems.java
vendored
Normal file
36
L2J_Mobius_Essence_6.3_Crusader/dist/game/data/scripts/quests/not_done/Q00425_GiantsGolems.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 Q00425_GiantsGolems extends Quest
|
||||||
|
{
|
||||||
|
private static final int START_NPC = 34369;
|
||||||
|
|
||||||
|
public Q00425_GiantsGolems()
|
||||||
|
{
|
||||||
|
super(425);
|
||||||
|
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 Q00426_SimilarYetDifferent extends Quest
|
||||||
|
{
|
||||||
|
private static final int START_NPC = 34369;
|
||||||
|
|
||||||
|
public Q00426_SimilarYetDifferent()
|
||||||
|
{
|
||||||
|
super(426);
|
||||||
|
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 Q00427_CrumaTowersExploration extends Quest
|
||||||
|
{
|
||||||
|
private static final int START_NPC = 34369;
|
||||||
|
|
||||||
|
public Q00427_CrumaTowersExploration()
|
||||||
|
{
|
||||||
|
super(427);
|
||||||
|
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 Q00429_PoorExcuseForGiants extends Quest
|
||||||
|
{
|
||||||
|
private static final int START_NPC = 34369;
|
||||||
|
|
||||||
|
public Q00429_PoorExcuseForGiants()
|
||||||
|
{
|
||||||
|
super(429);
|
||||||
|
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 Q00430_GiantsCreations extends Quest
|
||||||
|
{
|
||||||
|
private static final int START_NPC = 34369;
|
||||||
|
|
||||||
|
public Q00430_GiantsCreations()
|
||||||
|
{
|
||||||
|
super(430);
|
||||||
|
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 Q00431_TracesOfAncientCreatures extends Quest
|
||||||
|
{
|
||||||
|
private static final int START_NPC = 34369;
|
||||||
|
|
||||||
|
public Q00431_TracesOfAncientCreatures()
|
||||||
|
{
|
||||||
|
super(431);
|
||||||
|
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 Q00432_TracesOfExperiments extends Quest
|
||||||
|
{
|
||||||
|
private static final int START_NPC = 34369;
|
||||||
|
|
||||||
|
public Q00432_TracesOfExperiments()
|
||||||
|
{
|
||||||
|
super(432);
|
||||||
|
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 Q00433_NeverForgotten extends Quest
|
||||||
|
{
|
||||||
|
private static final int START_NPC = 34369;
|
||||||
|
|
||||||
|
public Q00433_NeverForgotten()
|
||||||
|
{
|
||||||
|
super(433);
|
||||||
|
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 Q00434_ExploringTheSilentValley extends Quest
|
||||||
|
{
|
||||||
|
private static final int START_NPC = 34369;
|
||||||
|
|
||||||
|
public Q00434_ExploringTheSilentValley()
|
||||||
|
{
|
||||||
|
super(434);
|
||||||
|
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 Q00436_BewareOfTantaLizardmen extends Quest
|
||||||
|
{
|
||||||
|
private static final int START_NPC = 34369;
|
||||||
|
|
||||||
|
public Q00436_BewareOfTantaLizardmen()
|
||||||
|
{
|
||||||
|
super(436);
|
||||||
|
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 Q00437_DangerousLizardmen extends Quest
|
||||||
|
{
|
||||||
|
private static final int START_NPC = 34369;
|
||||||
|
|
||||||
|
public Q00437_DangerousLizardmen()
|
||||||
|
{
|
||||||
|
super(437);
|
||||||
|
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 Q00438_AttacksFromAllSides extends Quest
|
||||||
|
{
|
||||||
|
private static final int START_NPC = 34369;
|
||||||
|
|
||||||
|
public Q00438_AttacksFromAllSides()
|
||||||
|
{
|
||||||
|
super(438);
|
||||||
|
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 Q00439_GettingRidOfSummoners extends Quest
|
||||||
|
{
|
||||||
|
private static final int START_NPC = 34369;
|
||||||
|
|
||||||
|
public Q00439_GettingRidOfSummoners()
|
||||||
|
{
|
||||||
|
super(439);
|
||||||
|
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 Q00440_GuardsInDisguise extends Quest
|
||||||
|
{
|
||||||
|
private static final int START_NPC = 34369;
|
||||||
|
|
||||||
|
public Q00440_GuardsInDisguise()
|
||||||
|
{
|
||||||
|
super(440);
|
||||||
|
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 Q00441_ExploringThePlainsOfTheLizardmen extends Quest
|
||||||
|
{
|
||||||
|
private static final int START_NPC = 34369;
|
||||||
|
|
||||||
|
public Q00441_ExploringThePlainsOfTheLizardmen()
|
||||||
|
{
|
||||||
|
super(441);
|
||||||
|
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 Q00443_BornFromDragonBlood extends Quest
|
||||||
|
{
|
||||||
|
private static final int START_NPC = 34369;
|
||||||
|
|
||||||
|
public Q00443_BornFromDragonBlood()
|
||||||
|
{
|
||||||
|
super(443);
|
||||||
|
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 Q00444_CurseOfTheDragonValley extends Quest
|
||||||
|
{
|
||||||
|
private static final int START_NPC = 34369;
|
||||||
|
|
||||||
|
public Q00444_CurseOfTheDragonValley()
|
||||||
|
{
|
||||||
|
super(444);
|
||||||
|
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 Q00445_WhereDemonsWhisper extends Quest
|
||||||
|
{
|
||||||
|
private static final int START_NPC = 34369;
|
||||||
|
|
||||||
|
public Q00445_WhereDemonsWhisper()
|
||||||
|
{
|
||||||
|
super(445);
|
||||||
|
addStartNpc(START_NPC);
|
||||||
|
addTalkId(START_NPC);
|
||||||
|
addCondMinLevel(Config.PLAYER_MAXIMUM_LEVEL, getNoQuestMsg(null));
|
||||||
|
}
|
||||||
|
}
|
36
L2J_Mobius_Essence_6.3_Crusader/dist/game/data/scripts/quests/not_done/Q00446_NoRightToDie.java
vendored
Normal file
36
L2J_Mobius_Essence_6.3_Crusader/dist/game/data/scripts/quests/not_done/Q00446_NoRightToDie.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 Q00446_NoRightToDie extends Quest
|
||||||
|
{
|
||||||
|
private static final int START_NPC = 34369;
|
||||||
|
|
||||||
|
public Q00446_NoRightToDie()
|
||||||
|
{
|
||||||
|
super(446);
|
||||||
|
addStartNpc(START_NPC);
|
||||||
|
addTalkId(START_NPC);
|
||||||
|
addCondMinLevel(Config.PLAYER_MAXIMUM_LEVEL, getNoQuestMsg(null));
|
||||||
|
}
|
||||||
|
}
|
36
L2J_Mobius_Essence_6.3_Crusader/dist/game/data/scripts/quests/not_done/Q00447_DragonsTraces.java
vendored
Normal file
36
L2J_Mobius_Essence_6.3_Crusader/dist/game/data/scripts/quests/not_done/Q00447_DragonsTraces.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 Q00447_DragonsTraces extends Quest
|
||||||
|
{
|
||||||
|
private static final int START_NPC = 34369;
|
||||||
|
|
||||||
|
public Q00447_DragonsTraces()
|
||||||
|
{
|
||||||
|
super(447);
|
||||||
|
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 Q00448_ExploringTheDragonValleyWest extends Quest
|
||||||
|
{
|
||||||
|
private static final int START_NPC = 34369;
|
||||||
|
|
||||||
|
public Q00448_ExploringTheDragonValleyWest()
|
||||||
|
{
|
||||||
|
super(448);
|
||||||
|
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 Q00450_MastersOfTheDragonValley extends Quest
|
||||||
|
{
|
||||||
|
private static final int START_NPC = 34369;
|
||||||
|
|
||||||
|
public Q00450_MastersOfTheDragonValley()
|
||||||
|
{
|
||||||
|
super(450);
|
||||||
|
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 Q00451_RiseOfTheDragons extends Quest
|
||||||
|
{
|
||||||
|
private static final int START_NPC = 34369;
|
||||||
|
|
||||||
|
public Q00451_RiseOfTheDragons()
|
||||||
|
{
|
||||||
|
super(451);
|
||||||
|
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 Q00452_MightyFighters extends Quest
|
||||||
|
{
|
||||||
|
private static final int START_NPC = 34369;
|
||||||
|
|
||||||
|
public Q00452_MightyFighters()
|
||||||
|
{
|
||||||
|
super(452);
|
||||||
|
addStartNpc(START_NPC);
|
||||||
|
addTalkId(START_NPC);
|
||||||
|
addCondMinLevel(Config.PLAYER_MAXIMUM_LEVEL, getNoQuestMsg(null));
|
||||||
|
}
|
||||||
|
}
|
36
L2J_Mobius_Essence_6.3_Crusader/dist/game/data/scripts/quests/not_done/Q00453_DragonMages.java
vendored
Normal file
36
L2J_Mobius_Essence_6.3_Crusader/dist/game/data/scripts/quests/not_done/Q00453_DragonMages.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 Q00453_DragonMages extends Quest
|
||||||
|
{
|
||||||
|
private static final int START_NPC = 34369;
|
||||||
|
|
||||||
|
public Q00453_DragonMages()
|
||||||
|
{
|
||||||
|
super(453);
|
||||||
|
addStartNpc(START_NPC);
|
||||||
|
addTalkId(START_NPC);
|
||||||
|
addCondMinLevel(Config.PLAYER_MAXIMUM_LEVEL, getNoQuestMsg(null));
|
||||||
|
}
|
||||||
|
}
|
36
L2J_Mobius_Essence_6.3_Crusader/dist/game/data/scripts/quests/not_done/Q00454_ValleyDrakes.java
vendored
Normal file
36
L2J_Mobius_Essence_6.3_Crusader/dist/game/data/scripts/quests/not_done/Q00454_ValleyDrakes.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 Q00454_ValleyDrakes extends Quest
|
||||||
|
{
|
||||||
|
private static final int START_NPC = 34369;
|
||||||
|
|
||||||
|
public Q00454_ValleyDrakes()
|
||||||
|
{
|
||||||
|
super(454);
|
||||||
|
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 Q00455_ExploringTheDragonValleyEast extends Quest
|
||||||
|
{
|
||||||
|
private static final int START_NPC = 34369;
|
||||||
|
|
||||||
|
public Q00455_ExploringTheDragonValleyEast()
|
||||||
|
{
|
||||||
|
super(455);
|
||||||
|
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 Q00457_NecessaryPrecautions extends Quest
|
||||||
|
{
|
||||||
|
private static final int START_NPC = 34369;
|
||||||
|
|
||||||
|
public Q00457_NecessaryPrecautions()
|
||||||
|
{
|
||||||
|
super(457);
|
||||||
|
addStartNpc(START_NPC);
|
||||||
|
addTalkId(START_NPC);
|
||||||
|
addCondMinLevel(Config.PLAYER_MAXIMUM_LEVEL, getNoQuestMsg(null));
|
||||||
|
}
|
||||||
|
}
|
36
L2J_Mobius_Essence_6.3_Crusader/dist/game/data/scripts/quests/not_done/Q00458_BornToFight.java
vendored
Normal file
36
L2J_Mobius_Essence_6.3_Crusader/dist/game/data/scripts/quests/not_done/Q00458_BornToFight.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 Q00458_BornToFight extends Quest
|
||||||
|
{
|
||||||
|
private static final int START_NPC = 34369;
|
||||||
|
|
||||||
|
public Q00458_BornToFight()
|
||||||
|
{
|
||||||
|
super(458);
|
||||||
|
addStartNpc(START_NPC);
|
||||||
|
addTalkId(START_NPC);
|
||||||
|
addCondMinLevel(Config.PLAYER_MAXIMUM_LEVEL, getNoQuestMsg(null));
|
||||||
|
}
|
||||||
|
}
|
36
L2J_Mobius_Essence_6.3_Crusader/dist/game/data/scripts/quests/not_done/Q00459_SelMahumHorde.java
vendored
Normal file
36
L2J_Mobius_Essence_6.3_Crusader/dist/game/data/scripts/quests/not_done/Q00459_SelMahumHorde.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 Q00459_SelMahumHorde extends Quest
|
||||||
|
{
|
||||||
|
private static final int START_NPC = 34369;
|
||||||
|
|
||||||
|
public Q00459_SelMahumHorde()
|
||||||
|
{
|
||||||
|
super(459);
|
||||||
|
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 Q00460_MagicForSmartOnes extends Quest
|
||||||
|
{
|
||||||
|
private static final int START_NPC = 34369;
|
||||||
|
|
||||||
|
public Q00460_MagicForSmartOnes()
|
||||||
|
{
|
||||||
|
super(460);
|
||||||
|
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 Q00461_InTheBasesBarracks extends Quest
|
||||||
|
{
|
||||||
|
private static final int START_NPC = 34369;
|
||||||
|
|
||||||
|
public Q00461_InTheBasesBarracks()
|
||||||
|
{
|
||||||
|
super(461);
|
||||||
|
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 Q00462_ExploringTheSelMahumBase extends Quest
|
||||||
|
{
|
||||||
|
private static final int START_NPC = 34369;
|
||||||
|
|
||||||
|
public Q00462_ExploringTheSelMahumBase()
|
||||||
|
{
|
||||||
|
super(462);
|
||||||
|
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 Q00464_BarracksMainForce extends Quest
|
||||||
|
{
|
||||||
|
private static final int START_NPC = 34369;
|
||||||
|
|
||||||
|
public Q00464_BarracksMainForce()
|
||||||
|
{
|
||||||
|
super(464);
|
||||||
|
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 Q00465_DontComeCloser extends Quest
|
||||||
|
{
|
||||||
|
private static final int START_NPC = 34369;
|
||||||
|
|
||||||
|
public Q00465_DontComeCloser()
|
||||||
|
{
|
||||||
|
super(465);
|
||||||
|
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 Q00466_TurekOrcsTenacity extends Quest
|
||||||
|
{
|
||||||
|
private static final int START_NPC = 34369;
|
||||||
|
|
||||||
|
public Q00466_TurekOrcsTenacity()
|
||||||
|
{
|
||||||
|
super(466);
|
||||||
|
addStartNpc(START_NPC);
|
||||||
|
addTalkId(START_NPC);
|
||||||
|
addCondMinLevel(Config.PLAYER_MAXIMUM_LEVEL, getNoQuestMsg(null));
|
||||||
|
}
|
||||||
|
}
|
36
L2J_Mobius_Essence_6.3_Crusader/dist/game/data/scripts/quests/not_done/Q00467_ImposingOrcs.java
vendored
Normal file
36
L2J_Mobius_Essence_6.3_Crusader/dist/game/data/scripts/quests/not_done/Q00467_ImposingOrcs.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 Q00467_ImposingOrcs extends Quest
|
||||||
|
{
|
||||||
|
private static final int START_NPC = 34369;
|
||||||
|
|
||||||
|
public Q00467_ImposingOrcs()
|
||||||
|
{
|
||||||
|
super(467);
|
||||||
|
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 Q00468_TurekOrcLeaders extends Quest
|
||||||
|
{
|
||||||
|
private static final int START_NPC = 34369;
|
||||||
|
|
||||||
|
public Q00468_TurekOrcLeaders()
|
||||||
|
{
|
||||||
|
super(468);
|
||||||
|
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 Q00469_ExploringTheTurekOrcBarracks extends Quest
|
||||||
|
{
|
||||||
|
private static final int START_NPC = 34369;
|
||||||
|
|
||||||
|
public Q00469_ExploringTheTurekOrcBarracks()
|
||||||
|
{
|
||||||
|
super(469);
|
||||||
|
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 Q10308_TrainingForTheFuture extends Quest
|
||||||
|
{
|
||||||
|
private static final int START_NPC = 30857;
|
||||||
|
|
||||||
|
public Q10308_TrainingForTheFuture()
|
||||||
|
{
|
||||||
|
super(10308);
|
||||||
|
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 Q10309_DreamlandsMysteries extends Quest
|
||||||
|
{
|
||||||
|
private static final int START_NPC = 34304;
|
||||||
|
|
||||||
|
public Q10309_DreamlandsMysteries()
|
||||||
|
{
|
||||||
|
super(10309);
|
||||||
|
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 Q10310_VictoryInBalokBattleground extends Quest
|
||||||
|
{
|
||||||
|
private static final int START_NPC = 34330;
|
||||||
|
|
||||||
|
public Q10310_VictoryInBalokBattleground()
|
||||||
|
{
|
||||||
|
super(10310);
|
||||||
|
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 Q10949_PatternsAndHiddenPower extends Quest
|
||||||
|
{
|
||||||
|
private static final int START_NPC = 30857;
|
||||||
|
|
||||||
|
public Q10949_PatternsAndHiddenPower()
|
||||||
|
{
|
||||||
|
super(10949);
|
||||||
|
addStartNpc(START_NPC);
|
||||||
|
addTalkId(START_NPC);
|
||||||
|
addCondMinLevel(Config.PLAYER_MAXIMUM_LEVEL, getNoQuestMsg(null));
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user