From 89574236e6616089ea60050d89ad8b172e3e1e39 Mon Sep 17 00:00:00 2001
From: MobiusDevelopment <8391001+MobiusDevelopment@users.noreply.github.com>
Date: Tue, 30 Apr 2019 22:05:52 +0000
Subject: [PATCH] Removed non existent client quests.
---
.../data/scripts/quests/MissingQuests.txt | 2 --
.../scripts/quests/QuestMasterHandler.java | 4 ---
.../Q00657_MonsterArenaTrialForWarriors.java | 36 -------------------
...658_MonsterArenaTrialForEliteWarriors.java | 36 -------------------
4 files changed, 78 deletions(-)
delete mode 100644 L2J_Mobius_Classic_2.4_SecretOfEmpire/dist/game/data/scripts/quests/not_done/Q00657_MonsterArenaTrialForWarriors.java
delete mode 100644 L2J_Mobius_Classic_2.4_SecretOfEmpire/dist/game/data/scripts/quests/not_done/Q00658_MonsterArenaTrialForEliteWarriors.java
diff --git a/L2J_Mobius_Classic_2.4_SecretOfEmpire/dist/game/data/scripts/quests/MissingQuests.txt b/L2J_Mobius_Classic_2.4_SecretOfEmpire/dist/game/data/scripts/quests/MissingQuests.txt
index 6687b5bb20..86c6c6110c 100644
--- a/L2J_Mobius_Classic_2.4_SecretOfEmpire/dist/game/data/scripts/quests/MissingQuests.txt
+++ b/L2J_Mobius_Classic_2.4_SecretOfEmpire/dist/game/data/scripts/quests/MissingQuests.txt
@@ -1,6 +1,4 @@
630 Pirate Treasure Hunt
-657 Monster Arena: Trial for Warriors
-658 Monster Arena: Trial for Elite Warriors
664 Quarrels Time
910 Request from the Red Libra Guild - Basic
911 Request from the Red Libra Guild - Intermediate
diff --git a/L2J_Mobius_Classic_2.4_SecretOfEmpire/dist/game/data/scripts/quests/QuestMasterHandler.java b/L2J_Mobius_Classic_2.4_SecretOfEmpire/dist/game/data/scripts/quests/QuestMasterHandler.java
index 9d11e89a03..86b602880e 100644
--- a/L2J_Mobius_Classic_2.4_SecretOfEmpire/dist/game/data/scripts/quests/QuestMasterHandler.java
+++ b/L2J_Mobius_Classic_2.4_SecretOfEmpire/dist/game/data/scripts/quests/QuestMasterHandler.java
@@ -181,8 +181,6 @@ import quests.Q11021_RedGemNecklace1.Q11021_RedGemNecklace1;
import quests.Q11022_RedGemNecklace2.Q11022_RedGemNecklace2;
import quests.Q11023_RedGemNecklace3.Q11023_RedGemNecklace3;
import quests.not_done.Q00630_PirateTreasureHunt;
-import quests.not_done.Q00657_MonsterArenaTrialForWarriors;
-import quests.not_done.Q00658_MonsterArenaTrialForEliteWarriors;
import quests.not_done.Q00664_QuarrelsTime;
import quests.not_done.Q00910_RequestFromTheRedLibraGuildLv1;
import quests.not_done.Q00911_RequestFromTheRedLibraGuildLv2;
@@ -335,8 +333,6 @@ public class QuestMasterHandler
Q00418_PathOfTheArtisan.class,
Q00500_BrothersBoundInChains.class,
Q00630_PirateTreasureHunt.class, // TODO: Not done.
- Q00657_MonsterArenaTrialForWarriors.class, // TODO: Not done.
- Q00658_MonsterArenaTrialForEliteWarriors.class, // TODO: Not done.
Q00662_AGameOfCards.class,
Q00664_QuarrelsTime.class, // TODO: Not done.
Q00910_RequestFromTheRedLibraGuildLv1.class, // TODO: Not done.
diff --git a/L2J_Mobius_Classic_2.4_SecretOfEmpire/dist/game/data/scripts/quests/not_done/Q00657_MonsterArenaTrialForWarriors.java b/L2J_Mobius_Classic_2.4_SecretOfEmpire/dist/game/data/scripts/quests/not_done/Q00657_MonsterArenaTrialForWarriors.java
deleted file mode 100644
index ff2bde1697..0000000000
--- a/L2J_Mobius_Classic_2.4_SecretOfEmpire/dist/game/data/scripts/quests/not_done/Q00657_MonsterArenaTrialForWarriors.java
+++ /dev/null
@@ -1,36 +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 .
- */
-package quests.not_done;
-
-import org.l2jmobius.Config;
-import org.l2jmobius.gameserver.model.quest.Quest;
-
-/**
- * @author Mobius
- */
-public class Q00657_MonsterArenaTrialForWarriors extends Quest
-{
- private static final int START_NPC = 34277;
-
- public Q00657_MonsterArenaTrialForWarriors()
- {
- super(657);
- addStartNpc(START_NPC);
- addTalkId(START_NPC);
- addCondMinLevel(Config.PLAYER_MAXIMUM_LEVEL, getNoQuestMsg(null));
- }
-}
diff --git a/L2J_Mobius_Classic_2.4_SecretOfEmpire/dist/game/data/scripts/quests/not_done/Q00658_MonsterArenaTrialForEliteWarriors.java b/L2J_Mobius_Classic_2.4_SecretOfEmpire/dist/game/data/scripts/quests/not_done/Q00658_MonsterArenaTrialForEliteWarriors.java
deleted file mode 100644
index 7bdad89686..0000000000
--- a/L2J_Mobius_Classic_2.4_SecretOfEmpire/dist/game/data/scripts/quests/not_done/Q00658_MonsterArenaTrialForEliteWarriors.java
+++ /dev/null
@@ -1,36 +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 .
- */
-package quests.not_done;
-
-import org.l2jmobius.Config;
-import org.l2jmobius.gameserver.model.quest.Quest;
-
-/**
- * @author Mobius
- */
-public class Q00658_MonsterArenaTrialForEliteWarriors extends Quest
-{
- private static final int START_NPC = 34277;
-
- public Q00658_MonsterArenaTrialForEliteWarriors()
- {
- super(658);
- addStartNpc(START_NPC);
- addTalkId(START_NPC);
- addCondMinLevel(Config.PLAYER_MAXIMUM_LEVEL, getNoQuestMsg(null));
- }
-}