Not done quests should not be able to start.

This commit is contained in:
MobiusDevelopment 2022-02-28 10:51:08 +00:00
parent 86f68baab8
commit dd02a4ae77
91 changed files with 198 additions and 107 deletions

View File

@ -16,6 +16,7 @@
*/
package quests.not_done;
import org.l2jmobius.Config;
import org.l2jmobius.gameserver.model.quest.Quest;
/**
@ -30,7 +31,7 @@ public class Q00910_RequestFromTheRedLibraGuildBasic extends Quest
super(910);
addStartNpc(START_NPC);
addTalkId(START_NPC);
addCondMinLevel(1, getNoQuestMsg(null));
addCondMaxLevel(20, getNoQuestMsg(null));
addCondMinLevel(Config.PLAYER_MAXIMUM_LEVEL /* 1 */, getNoQuestMsg(null));
// addCondMaxLevel(20, getNoQuestMsg(null));
}
}

View File

@ -16,6 +16,7 @@
*/
package quests.not_done;
import org.l2jmobius.Config;
import org.l2jmobius.gameserver.model.quest.Quest;
/**
@ -30,7 +31,7 @@ public class Q00911_RequestFromTheRedLibraGuildIntermediate extends Quest
super(911);
addStartNpc(START_NPC);
addTalkId(START_NPC);
addCondMinLevel(21, getNoQuestMsg(null));
addCondMaxLevel(40, getNoQuestMsg(null));
addCondMinLevel(Config.PLAYER_MAXIMUM_LEVEL /* 21 */, getNoQuestMsg(null));
// addCondMaxLevel(40, getNoQuestMsg(null));
}
}

View File

@ -16,6 +16,7 @@
*/
package quests.not_done;
import org.l2jmobius.Config;
import org.l2jmobius.gameserver.model.quest.Quest;
/**
@ -30,7 +31,7 @@ public class Q00912_RequestFromTheRedLibraGuildAdvanced extends Quest
super(912);
addStartNpc(START_NPC);
addTalkId(START_NPC);
addCondMinLevel(41, getNoQuestMsg(null));
addCondMaxLevel(60, getNoQuestMsg(null));
addCondMinLevel(Config.PLAYER_MAXIMUM_LEVEL /* 41 */, getNoQuestMsg(null));
// addCondMaxLevel(60, getNoQuestMsg(null));
}
}

View File

@ -16,6 +16,7 @@
*/
package quests.not_done;
import org.l2jmobius.Config;
import org.l2jmobius.gameserver.model.quest.Quest;
/**
@ -30,6 +31,6 @@ public class Q00913_RequestFromTheRedLibraGuildSuperAdvanced extends Quest
super(913);
addStartNpc(START_NPC);
addTalkId(START_NPC);
addCondMinLevel(61, getNoQuestMsg(null));
addCondMinLevel(Config.PLAYER_MAXIMUM_LEVEL /* 61 */, getNoQuestMsg(null));
}
}

View File

@ -16,6 +16,7 @@
*/
package quests.not_done;
import org.l2jmobius.Config;
import org.l2jmobius.gameserver.model.quest.Quest;
/**
@ -30,6 +31,6 @@ public class Q00630_PirateTreasureHunt extends Quest
super(630);
addStartNpc(START_NPC);
addTalkId(START_NPC);
addCondMinLevel(70, getNoQuestMsg(null));
addCondMinLevel(Config.PLAYER_MAXIMUM_LEVEL /* 70 */, getNoQuestMsg(null));
}
}

View File

@ -16,6 +16,7 @@
*/
package quests.not_done;
import org.l2jmobius.Config;
import org.l2jmobius.gameserver.model.quest.Quest;
/**
@ -30,7 +31,7 @@ public class Q00657_MonsterArenaTrialForWarriors extends Quest
super(657);
addStartNpc(START_NPC);
addTalkId(START_NPC);
addCondMinLevel(60, getNoQuestMsg(null));
addCondMaxLevel(70, getNoQuestMsg(null));
addCondMinLevel(Config.PLAYER_MAXIMUM_LEVEL /* 60 */, getNoQuestMsg(null));
// addCondMaxLevel(70, getNoQuestMsg(null));
}
}

View File

@ -16,6 +16,7 @@
*/
package quests.not_done;
import org.l2jmobius.Config;
import org.l2jmobius.gameserver.model.quest.Quest;
/**
@ -30,6 +31,6 @@ public class Q00658_MonsterArenaTrialForEliteWarriors extends Quest
super(658);
addStartNpc(START_NPC);
addTalkId(START_NPC);
addCondMinLevel(60, getNoQuestMsg(null));
addCondMinLevel(Config.PLAYER_MAXIMUM_LEVEL /* 60 */, getNoQuestMsg(null));
}
}

View File

@ -16,6 +16,7 @@
*/
package quests.not_done;
import org.l2jmobius.Config;
import org.l2jmobius.gameserver.model.quest.Quest;
/**
@ -30,6 +31,6 @@ public class Q00664_QuarrelsTime extends Quest
super(664);
addStartNpc(START_NPC);
addTalkId(START_NPC);
addCondMinLevel(70, getNoQuestMsg(null));
addCondMinLevel(Config.PLAYER_MAXIMUM_LEVEL /* 70 */, getNoQuestMsg(null));
}
}

View File

@ -16,6 +16,7 @@
*/
package quests.not_done;
import org.l2jmobius.Config;
import org.l2jmobius.gameserver.model.quest.Quest;
/**
@ -30,7 +31,7 @@ public class Q00910_RequestFromTheRedLibraGuildBasic extends Quest
super(910);
addStartNpc(START_NPC);
addTalkId(START_NPC);
addCondMinLevel(1, getNoQuestMsg(null));
addCondMaxLevel(20, getNoQuestMsg(null));
addCondMinLevel(Config.PLAYER_MAXIMUM_LEVEL /* 1 */, getNoQuestMsg(null));
// addCondMaxLevel(20, getNoQuestMsg(null));
}
}

View File

@ -16,6 +16,7 @@
*/
package quests.not_done;
import org.l2jmobius.Config;
import org.l2jmobius.gameserver.model.quest.Quest;
/**
@ -30,7 +31,7 @@ public class Q00911_RequestFromTheRedLibraGuildIntermediate extends Quest
super(911);
addStartNpc(START_NPC);
addTalkId(START_NPC);
addCondMinLevel(21, getNoQuestMsg(null));
addCondMaxLevel(40, getNoQuestMsg(null));
addCondMinLevel(Config.PLAYER_MAXIMUM_LEVEL /* 21 */, getNoQuestMsg(null));
// addCondMaxLevel(40, getNoQuestMsg(null));
}
}

View File

@ -16,6 +16,7 @@
*/
package quests.not_done;
import org.l2jmobius.Config;
import org.l2jmobius.gameserver.model.quest.Quest;
/**
@ -30,7 +31,7 @@ public class Q00912_RequestFromTheRedLibraGuildAdvanced extends Quest
super(912);
addStartNpc(START_NPC);
addTalkId(START_NPC);
addCondMinLevel(41, getNoQuestMsg(null));
addCondMaxLevel(60, getNoQuestMsg(null));
addCondMinLevel(Config.PLAYER_MAXIMUM_LEVEL /* 41 */, getNoQuestMsg(null));
// addCondMaxLevel(60, getNoQuestMsg(null));
}
}

View File

@ -16,6 +16,7 @@
*/
package quests.not_done;
import org.l2jmobius.Config;
import org.l2jmobius.gameserver.model.quest.Quest;
/**
@ -30,6 +31,6 @@ public class Q00913_RequestFromTheRedLibraGuildSuperAdvanced extends Quest
super(913);
addStartNpc(START_NPC);
addTalkId(START_NPC);
addCondMinLevel(61, getNoQuestMsg(null));
addCondMinLevel(Config.PLAYER_MAXIMUM_LEVEL /* 61 */, getNoQuestMsg(null));
}
}

View File

@ -16,6 +16,7 @@
*/
package quests.not_done;
import org.l2jmobius.Config;
import org.l2jmobius.gameserver.model.quest.Quest;
/**
@ -30,6 +31,6 @@ public class Q10506_DianasRequest extends Quest
super(10506);
addStartNpc(START_NPC);
addTalkId(START_NPC);
addCondMinLevel(25, getNoQuestMsg(null));
addCondMinLevel(Config.PLAYER_MAXIMUM_LEVEL /* 25 */, getNoQuestMsg(null));
}
}

View File

@ -16,6 +16,7 @@
*/
package quests.not_done;
import org.l2jmobius.Config;
import org.l2jmobius.gameserver.model.quest.Quest;
/**
@ -30,6 +31,6 @@ public class Q10861_MonsterArenaTheBirthOfAWarrior extends Quest
super(10861);
addStartNpc(START_NPC);
addTalkId(START_NPC);
addCondMinLevel(60, getNoQuestMsg(null));
addCondMinLevel(Config.PLAYER_MAXIMUM_LEVEL /* 60 */, getNoQuestMsg(null));
}
}

View File

@ -16,6 +16,7 @@
*/
package quests.not_done;
import org.l2jmobius.Config;
import org.l2jmobius.gameserver.model.quest.Quest;
/**
@ -30,6 +31,6 @@ public class Q10862_MonsterArenaChallenge10Battles extends Quest
super(10862);
addStartNpc(START_NPC);
addTalkId(START_NPC);
addCondMinLevel(60, getNoQuestMsg(null));
addCondMinLevel(Config.PLAYER_MAXIMUM_LEVEL /* 60 */, getNoQuestMsg(null));
}
}

View File

@ -16,6 +16,7 @@
*/
package quests.not_done;
import org.l2jmobius.Config;
import org.l2jmobius.gameserver.model.quest.Quest;
/**
@ -30,6 +31,6 @@ public class Q10863_MonsterArenaNewChallenge15Battles extends Quest
super(10863);
addStartNpc(START_NPC);
addTalkId(START_NPC);
addCondMinLevel(60, getNoQuestMsg(null));
addCondMinLevel(Config.PLAYER_MAXIMUM_LEVEL /* 60 */, getNoQuestMsg(null));
}
}

View File

@ -16,6 +16,7 @@
*/
package quests.not_done;
import org.l2jmobius.Config;
import org.l2jmobius.gameserver.model.quest.Quest;
/**
@ -30,6 +31,6 @@ public class Q10864_MonsterArenaBraveWarrior25Battles extends Quest
super(10864);
addStartNpc(START_NPC);
addTalkId(START_NPC);
addCondMinLevel(60, getNoQuestMsg(null));
addCondMinLevel(Config.PLAYER_MAXIMUM_LEVEL /* 60 */, getNoQuestMsg(null));
}
}

View File

@ -16,6 +16,7 @@
*/
package quests.not_done;
import org.l2jmobius.Config;
import org.l2jmobius.gameserver.model.quest.Quest;
/**
@ -30,6 +31,6 @@ public class Q10865_MonsterArenaLastCall40Battles extends Quest
super(10865);
addStartNpc(START_NPC);
addTalkId(START_NPC);
addCondMinLevel(60, getNoQuestMsg(null));
addCondMinLevel(Config.PLAYER_MAXIMUM_LEVEL /* 60 */, getNoQuestMsg(null));
}
}

View File

@ -16,6 +16,7 @@
*/
package quests.not_done;
import org.l2jmobius.Config;
import org.l2jmobius.gameserver.model.quest.Quest;
/**
@ -30,6 +31,6 @@ public class Q10867_GoneMissing extends Quest
super(10867);
addStartNpc(START_NPC);
addTalkId(START_NPC);
addCondMinLevel(70, getNoQuestMsg(null));
addCondMinLevel(Config.PLAYER_MAXIMUM_LEVEL /* 70 */, getNoQuestMsg(null));
}
}

View File

@ -16,6 +16,7 @@
*/
package quests.not_done;
import org.l2jmobius.Config;
import org.l2jmobius.gameserver.model.quest.Quest;
/**
@ -30,6 +31,6 @@ public class Q10868_TheDarkSideOfPower extends Quest
super(10868);
addStartNpc(START_NPC);
addTalkId(START_NPC);
addCondMinLevel(70, getNoQuestMsg(null));
addCondMinLevel(Config.PLAYER_MAXIMUM_LEVEL /* 70 */, getNoQuestMsg(null));
}
}

View File

@ -16,6 +16,7 @@
*/
package quests.not_done;
import org.l2jmobius.Config;
import org.l2jmobius.gameserver.model.quest.Quest;
/**
@ -30,6 +31,6 @@ public class Q10870_UnfinishedDevice extends Quest
super(10870);
addStartNpc(START_NPC);
addTalkId(START_NPC);
addCondMinLevel(70, getNoQuestMsg(null));
addCondMinLevel(Config.PLAYER_MAXIMUM_LEVEL /* 70 */, getNoQuestMsg(null));
}
}

View File

@ -16,6 +16,7 @@
*/
package quests.not_done;
import org.l2jmobius.Config;
import org.l2jmobius.gameserver.model.quest.Quest;
/**
@ -30,6 +31,6 @@ public class Q10871_DeathToThePirateKing extends Quest
super(10871);
addStartNpc(START_NPC);
addTalkId(START_NPC);
addCondMinLevel(70, getNoQuestMsg(null));
addCondMinLevel(Config.PLAYER_MAXIMUM_LEVEL /* 70 */, getNoQuestMsg(null));
}
}

View File

@ -16,6 +16,7 @@
*/
package quests.not_done;
import org.l2jmobius.Config;
import org.l2jmobius.gameserver.model.quest.Quest;
/**
@ -30,6 +31,6 @@ public class Q00630_PirateTreasureHunt extends Quest
super(630);
addStartNpc(START_NPC);
addTalkId(START_NPC);
addCondMinLevel(70, getNoQuestMsg(null));
addCondMinLevel(Config.PLAYER_MAXIMUM_LEVEL /* 70 */, getNoQuestMsg(null));
}
}

View File

@ -16,6 +16,7 @@
*/
package quests.not_done;
import org.l2jmobius.Config;
import org.l2jmobius.gameserver.model.quest.Quest;
/**
@ -30,7 +31,7 @@ public class Q00657_MonsterArenaTrialForWarriors extends Quest
super(657);
addStartNpc(START_NPC);
addTalkId(START_NPC);
addCondMinLevel(60, getNoQuestMsg(null));
addCondMaxLevel(70, getNoQuestMsg(null));
addCondMinLevel(Config.PLAYER_MAXIMUM_LEVEL /* 60 */, getNoQuestMsg(null));
// addCondMaxLevel(70, getNoQuestMsg(null));
}
}

View File

@ -16,6 +16,7 @@
*/
package quests.not_done;
import org.l2jmobius.Config;
import org.l2jmobius.gameserver.model.quest.Quest;
/**
@ -30,6 +31,6 @@ public class Q00658_MonsterArenaTrialForEliteWarriors extends Quest
super(658);
addStartNpc(START_NPC);
addTalkId(START_NPC);
addCondMinLevel(60, getNoQuestMsg(null));
addCondMinLevel(Config.PLAYER_MAXIMUM_LEVEL /* 60 */, getNoQuestMsg(null));
}
}

View File

@ -16,6 +16,7 @@
*/
package quests.not_done;
import org.l2jmobius.Config;
import org.l2jmobius.gameserver.model.quest.Quest;
/**
@ -30,6 +31,6 @@ public class Q00664_QuarrelsTime extends Quest
super(664);
addStartNpc(START_NPC);
addTalkId(START_NPC);
addCondMinLevel(70, getNoQuestMsg(null));
addCondMinLevel(Config.PLAYER_MAXIMUM_LEVEL /* 70 */, getNoQuestMsg(null));
}
}

View File

@ -16,6 +16,7 @@
*/
package quests.not_done;
import org.l2jmobius.Config;
import org.l2jmobius.gameserver.model.quest.Quest;
/**
@ -30,7 +31,7 @@ public class Q00910_RequestFromTheRedLibraGuildBasic extends Quest
super(910);
addStartNpc(START_NPC);
addTalkId(START_NPC);
addCondMinLevel(1, getNoQuestMsg(null));
addCondMaxLevel(20, getNoQuestMsg(null));
addCondMinLevel(Config.PLAYER_MAXIMUM_LEVEL /* 1 */, getNoQuestMsg(null));
// addCondMaxLevel(20, getNoQuestMsg(null));
}
}

View File

@ -16,6 +16,7 @@
*/
package quests.not_done;
import org.l2jmobius.Config;
import org.l2jmobius.gameserver.model.quest.Quest;
/**
@ -30,7 +31,7 @@ public class Q00911_RequestFromTheRedLibraGuildIntermediate extends Quest
super(911);
addStartNpc(START_NPC);
addTalkId(START_NPC);
addCondMinLevel(21, getNoQuestMsg(null));
addCondMaxLevel(40, getNoQuestMsg(null));
addCondMinLevel(Config.PLAYER_MAXIMUM_LEVEL /* 21 */, getNoQuestMsg(null));
// addCondMaxLevel(40, getNoQuestMsg(null));
}
}

View File

@ -16,6 +16,7 @@
*/
package quests.not_done;
import org.l2jmobius.Config;
import org.l2jmobius.gameserver.model.quest.Quest;
/**
@ -30,7 +31,7 @@ public class Q00912_RequestFromTheRedLibraGuildAdvanced extends Quest
super(912);
addStartNpc(START_NPC);
addTalkId(START_NPC);
addCondMinLevel(41, getNoQuestMsg(null));
addCondMaxLevel(60, getNoQuestMsg(null));
addCondMinLevel(Config.PLAYER_MAXIMUM_LEVEL /* 41 */, getNoQuestMsg(null));
// addCondMaxLevel(60, getNoQuestMsg(null));
}
}

View File

@ -16,6 +16,7 @@
*/
package quests.not_done;
import org.l2jmobius.Config;
import org.l2jmobius.gameserver.model.quest.Quest;
/**
@ -30,6 +31,6 @@ public class Q00913_RequestFromTheRedLibraGuildSuperAdvanced extends Quest
super(913);
addStartNpc(START_NPC);
addTalkId(START_NPC);
addCondMinLevel(61, getNoQuestMsg(null));
addCondMinLevel(Config.PLAYER_MAXIMUM_LEVEL /* 61 */, getNoQuestMsg(null));
}
}

View File

@ -16,6 +16,7 @@
*/
package quests.not_done;
import org.l2jmobius.Config;
import org.l2jmobius.gameserver.model.quest.Quest;
/**
@ -30,6 +31,6 @@ public class Q10861_MonsterArenaTheBirthOfAWarrior extends Quest
super(10861);
addStartNpc(START_NPC);
addTalkId(START_NPC);
addCondMinLevel(60, getNoQuestMsg(null));
addCondMinLevel(Config.PLAYER_MAXIMUM_LEVEL /* 60 */, getNoQuestMsg(null));
}
}

View File

@ -16,6 +16,7 @@
*/
package quests.not_done;
import org.l2jmobius.Config;
import org.l2jmobius.gameserver.model.quest.Quest;
/**
@ -30,6 +31,6 @@ public class Q10862_MonsterArenaChallenge10Battles extends Quest
super(10862);
addStartNpc(START_NPC);
addTalkId(START_NPC);
addCondMinLevel(60, getNoQuestMsg(null));
addCondMinLevel(Config.PLAYER_MAXIMUM_LEVEL /* 60 */, getNoQuestMsg(null));
}
}

View File

@ -16,6 +16,7 @@
*/
package quests.not_done;
import org.l2jmobius.Config;
import org.l2jmobius.gameserver.model.quest.Quest;
/**
@ -30,6 +31,6 @@ public class Q10863_MonsterArenaNewChallenge15Battles extends Quest
super(10863);
addStartNpc(START_NPC);
addTalkId(START_NPC);
addCondMinLevel(60, getNoQuestMsg(null));
addCondMinLevel(Config.PLAYER_MAXIMUM_LEVEL /* 60 */, getNoQuestMsg(null));
}
}

View File

@ -16,6 +16,7 @@
*/
package quests.not_done;
import org.l2jmobius.Config;
import org.l2jmobius.gameserver.model.quest.Quest;
/**
@ -30,6 +31,6 @@ public class Q10864_MonsterArenaBraveWarrior25Battles extends Quest
super(10864);
addStartNpc(START_NPC);
addTalkId(START_NPC);
addCondMinLevel(60, getNoQuestMsg(null));
addCondMinLevel(Config.PLAYER_MAXIMUM_LEVEL /* 60 */, getNoQuestMsg(null));
}
}

View File

@ -16,6 +16,7 @@
*/
package quests.not_done;
import org.l2jmobius.Config;
import org.l2jmobius.gameserver.model.quest.Quest;
/**
@ -30,6 +31,6 @@ public class Q10865_MonsterArenaLastCall40Battles extends Quest
super(10865);
addStartNpc(START_NPC);
addTalkId(START_NPC);
addCondMinLevel(60, getNoQuestMsg(null));
addCondMinLevel(Config.PLAYER_MAXIMUM_LEVEL /* 60 */, getNoQuestMsg(null));
}
}

View File

@ -16,6 +16,7 @@
*/
package quests.not_done;
import org.l2jmobius.Config;
import org.l2jmobius.gameserver.model.quest.Quest;
/**
@ -30,6 +31,6 @@ public class Q10867_GoneMissing extends Quest
super(10867);
addStartNpc(START_NPC);
addTalkId(START_NPC);
addCondMinLevel(70, getNoQuestMsg(null));
addCondMinLevel(Config.PLAYER_MAXIMUM_LEVEL /* 70 */, getNoQuestMsg(null));
}
}

View File

@ -16,6 +16,7 @@
*/
package quests.not_done;
import org.l2jmobius.Config;
import org.l2jmobius.gameserver.model.quest.Quest;
/**
@ -30,6 +31,6 @@ public class Q10868_TheDarkSideOfPower extends Quest
super(10868);
addStartNpc(START_NPC);
addTalkId(START_NPC);
addCondMinLevel(70, getNoQuestMsg(null));
addCondMinLevel(Config.PLAYER_MAXIMUM_LEVEL /* 70 */, getNoQuestMsg(null));
}
}

View File

@ -16,6 +16,7 @@
*/
package quests.not_done;
import org.l2jmobius.Config;
import org.l2jmobius.gameserver.model.quest.Quest;
/**
@ -30,6 +31,6 @@ public class Q10870_UnfinishedDevice extends Quest
super(10870);
addStartNpc(START_NPC);
addTalkId(START_NPC);
addCondMinLevel(70, getNoQuestMsg(null));
addCondMinLevel(Config.PLAYER_MAXIMUM_LEVEL /* 70 */, getNoQuestMsg(null));
}
}

View File

@ -16,6 +16,7 @@
*/
package quests.not_done;
import org.l2jmobius.Config;
import org.l2jmobius.gameserver.model.quest.Quest;
/**
@ -30,6 +31,6 @@ public class Q10871_DeathToThePirateKing extends Quest
super(10871);
addStartNpc(START_NPC);
addTalkId(START_NPC);
addCondMinLevel(70, getNoQuestMsg(null));
addCondMinLevel(Config.PLAYER_MAXIMUM_LEVEL /* 70 */, getNoQuestMsg(null));
}
}

View File

@ -16,6 +16,7 @@
*/
package quests.not_done;
import org.l2jmobius.Config;
import org.l2jmobius.gameserver.model.quest.Quest;
/**
@ -30,6 +31,6 @@ public class Q00630_PirateTreasureHunt extends Quest
super(630);
addStartNpc(START_NPC);
addTalkId(START_NPC);
addCondMinLevel(70, getNoQuestMsg(null));
addCondMinLevel(Config.PLAYER_MAXIMUM_LEVEL /* 70 */, getNoQuestMsg(null));
}
}

View File

@ -16,6 +16,7 @@
*/
package quests.not_done;
import org.l2jmobius.Config;
import org.l2jmobius.gameserver.model.quest.Quest;
/**
@ -30,7 +31,7 @@ public class Q00657_MonsterArenaTrialForWarriors extends Quest
super(657);
addStartNpc(START_NPC);
addTalkId(START_NPC);
addCondMinLevel(60, getNoQuestMsg(null));
addCondMaxLevel(70, getNoQuestMsg(null));
addCondMinLevel(Config.PLAYER_MAXIMUM_LEVEL /* 60 */, getNoQuestMsg(null));
// addCondMaxLevel(70, getNoQuestMsg(null));
}
}

View File

@ -16,6 +16,7 @@
*/
package quests.not_done;
import org.l2jmobius.Config;
import org.l2jmobius.gameserver.model.quest.Quest;
/**
@ -30,6 +31,6 @@ public class Q00658_MonsterArenaTrialForEliteWarriors extends Quest
super(658);
addStartNpc(START_NPC);
addTalkId(START_NPC);
addCondMinLevel(60, getNoQuestMsg(null));
addCondMinLevel(Config.PLAYER_MAXIMUM_LEVEL /* 60 */, getNoQuestMsg(null));
}
}

View File

@ -16,6 +16,7 @@
*/
package quests.not_done;
import org.l2jmobius.Config;
import org.l2jmobius.gameserver.model.quest.Quest;
/**
@ -30,6 +31,6 @@ public class Q00664_QuarrelsTime extends Quest
super(664);
addStartNpc(START_NPC);
addTalkId(START_NPC);
addCondMinLevel(70, getNoQuestMsg(null));
addCondMinLevel(Config.PLAYER_MAXIMUM_LEVEL /* 70 */, getNoQuestMsg(null));
}
}

View File

@ -16,6 +16,7 @@
*/
package quests.not_done;
import org.l2jmobius.Config;
import org.l2jmobius.gameserver.model.quest.Quest;
/**
@ -30,6 +31,6 @@ public class Q10861_MonsterArenaTheBirthOfAWarrior extends Quest
super(10861);
addStartNpc(START_NPC);
addTalkId(START_NPC);
addCondMinLevel(60, getNoQuestMsg(null));
addCondMinLevel(Config.PLAYER_MAXIMUM_LEVEL /* 60 */, getNoQuestMsg(null));
}
}

View File

@ -16,6 +16,7 @@
*/
package quests.not_done;
import org.l2jmobius.Config;
import org.l2jmobius.gameserver.model.quest.Quest;
/**
@ -30,6 +31,6 @@ public class Q10862_MonsterArenaChallenge10Battles extends Quest
super(10862);
addStartNpc(START_NPC);
addTalkId(START_NPC);
addCondMinLevel(60, getNoQuestMsg(null));
addCondMinLevel(Config.PLAYER_MAXIMUM_LEVEL /* 60 */, getNoQuestMsg(null));
}
}

View File

@ -16,6 +16,7 @@
*/
package quests.not_done;
import org.l2jmobius.Config;
import org.l2jmobius.gameserver.model.quest.Quest;
/**
@ -30,6 +31,6 @@ public class Q10863_MonsterArenaNewChallenge15Battles extends Quest
super(10863);
addStartNpc(START_NPC);
addTalkId(START_NPC);
addCondMinLevel(60, getNoQuestMsg(null));
addCondMinLevel(Config.PLAYER_MAXIMUM_LEVEL /* 60 */, getNoQuestMsg(null));
}
}

View File

@ -16,6 +16,7 @@
*/
package quests.not_done;
import org.l2jmobius.Config;
import org.l2jmobius.gameserver.model.quest.Quest;
/**
@ -30,6 +31,6 @@ public class Q10864_MonsterArenaBraveWarrior25Battles extends Quest
super(10864);
addStartNpc(START_NPC);
addTalkId(START_NPC);
addCondMinLevel(60, getNoQuestMsg(null));
addCondMinLevel(Config.PLAYER_MAXIMUM_LEVEL /* 60 */, getNoQuestMsg(null));
}
}

View File

@ -16,6 +16,7 @@
*/
package quests.not_done;
import org.l2jmobius.Config;
import org.l2jmobius.gameserver.model.quest.Quest;
/**
@ -30,6 +31,6 @@ public class Q10865_MonsterArenaLastCall40Battles extends Quest
super(10865);
addStartNpc(START_NPC);
addTalkId(START_NPC);
addCondMinLevel(60, getNoQuestMsg(null));
addCondMinLevel(Config.PLAYER_MAXIMUM_LEVEL /* 60 */, getNoQuestMsg(null));
}
}

View File

@ -16,6 +16,7 @@
*/
package quests.not_done;
import org.l2jmobius.Config;
import org.l2jmobius.gameserver.model.quest.Quest;
/**
@ -30,6 +31,6 @@ public class Q10867_GoneMissing extends Quest
super(10867);
addStartNpc(START_NPC);
addTalkId(START_NPC);
addCondMinLevel(70, getNoQuestMsg(null));
addCondMinLevel(Config.PLAYER_MAXIMUM_LEVEL /* 70 */, getNoQuestMsg(null));
}
}

View File

@ -16,6 +16,7 @@
*/
package quests.not_done;
import org.l2jmobius.Config;
import org.l2jmobius.gameserver.model.quest.Quest;
/**
@ -30,6 +31,6 @@ public class Q10868_TheDarkSideOfPower extends Quest
super(10868);
addStartNpc(START_NPC);
addTalkId(START_NPC);
addCondMinLevel(70, getNoQuestMsg(null));
addCondMinLevel(Config.PLAYER_MAXIMUM_LEVEL /* 70 */, getNoQuestMsg(null));
}
}

View File

@ -16,6 +16,7 @@
*/
package quests.not_done;
import org.l2jmobius.Config;
import org.l2jmobius.gameserver.model.quest.Quest;
/**
@ -30,6 +31,6 @@ public class Q10870_UnfinishedDevice extends Quest
super(10870);
addStartNpc(START_NPC);
addTalkId(START_NPC);
addCondMinLevel(70, getNoQuestMsg(null));
addCondMinLevel(Config.PLAYER_MAXIMUM_LEVEL /* 70 */, getNoQuestMsg(null));
}
}

View File

@ -16,6 +16,7 @@
*/
package quests.not_done;
import org.l2jmobius.Config;
import org.l2jmobius.gameserver.model.quest.Quest;
/**
@ -30,6 +31,6 @@ public class Q10871_DeathToThePirateKing extends Quest
super(10871);
addStartNpc(START_NPC);
addTalkId(START_NPC);
addCondMinLevel(70, getNoQuestMsg(null));
addCondMinLevel(Config.PLAYER_MAXIMUM_LEVEL /* 70 */, getNoQuestMsg(null));
}
}

View File

@ -16,6 +16,7 @@
*/
package quests.not_done;
import org.l2jmobius.Config;
import org.l2jmobius.gameserver.model.quest.Quest;
/**
@ -30,6 +31,6 @@ public class Q00630_PirateTreasureHunt extends Quest
super(630);
addStartNpc(START_NPC);
addTalkId(START_NPC);
addCondMinLevel(70, getNoQuestMsg(null));
addCondMinLevel(Config.PLAYER_MAXIMUM_LEVEL /* 70 */, getNoQuestMsg(null));
}
}

View File

@ -16,6 +16,7 @@
*/
package quests.not_done;
import org.l2jmobius.Config;
import org.l2jmobius.gameserver.model.quest.Quest;
/**
@ -30,6 +31,6 @@ public class Q00664_QuarrelsTime extends Quest
super(664);
addStartNpc(START_NPC);
addTalkId(START_NPC);
addCondMinLevel(70, getNoQuestMsg(null));
addCondMinLevel(Config.PLAYER_MAXIMUM_LEVEL /* 70 */, getNoQuestMsg(null));
}
}

View File

@ -16,6 +16,7 @@
*/
package quests.not_done;
import org.l2jmobius.Config;
import org.l2jmobius.gameserver.model.quest.Quest;
/**
@ -30,6 +31,6 @@ public class Q10861_MonsterArenaTheBirthOfAWarrior extends Quest
super(10861);
addStartNpc(START_NPC);
addTalkId(START_NPC);
addCondMinLevel(60, getNoQuestMsg(null));
addCondMinLevel(Config.PLAYER_MAXIMUM_LEVEL /* 60 */, getNoQuestMsg(null));
}
}

View File

@ -16,6 +16,7 @@
*/
package quests.not_done;
import org.l2jmobius.Config;
import org.l2jmobius.gameserver.model.quest.Quest;
/**
@ -30,6 +31,6 @@ public class Q10862_MonsterArenaChallenge10Battles extends Quest
super(10862);
addStartNpc(START_NPC);
addTalkId(START_NPC);
addCondMinLevel(60, getNoQuestMsg(null));
addCondMinLevel(Config.PLAYER_MAXIMUM_LEVEL /* 60 */, getNoQuestMsg(null));
}
}

View File

@ -16,6 +16,7 @@
*/
package quests.not_done;
import org.l2jmobius.Config;
import org.l2jmobius.gameserver.model.quest.Quest;
/**
@ -30,6 +31,6 @@ public class Q10863_MonsterArenaNewChallenge15Battles extends Quest
super(10863);
addStartNpc(START_NPC);
addTalkId(START_NPC);
addCondMinLevel(60, getNoQuestMsg(null));
addCondMinLevel(Config.PLAYER_MAXIMUM_LEVEL /* 60 */, getNoQuestMsg(null));
}
}

View File

@ -16,6 +16,7 @@
*/
package quests.not_done;
import org.l2jmobius.Config;
import org.l2jmobius.gameserver.model.quest.Quest;
/**
@ -30,6 +31,6 @@ public class Q10864_MonsterArenaBraveWarrior25Battles extends Quest
super(10864);
addStartNpc(START_NPC);
addTalkId(START_NPC);
addCondMinLevel(60, getNoQuestMsg(null));
addCondMinLevel(Config.PLAYER_MAXIMUM_LEVEL /* 60 */, getNoQuestMsg(null));
}
}

View File

@ -16,6 +16,7 @@
*/
package quests.not_done;
import org.l2jmobius.Config;
import org.l2jmobius.gameserver.model.quest.Quest;
/**
@ -30,6 +31,6 @@ public class Q10865_MonsterArenaLastCall40Battles extends Quest
super(10865);
addStartNpc(START_NPC);
addTalkId(START_NPC);
addCondMinLevel(60, getNoQuestMsg(null));
addCondMinLevel(Config.PLAYER_MAXIMUM_LEVEL /* 60 */, getNoQuestMsg(null));
}
}

View File

@ -16,6 +16,7 @@
*/
package quests.not_done;
import org.l2jmobius.Config;
import org.l2jmobius.gameserver.model.quest.Quest;
/**
@ -30,6 +31,6 @@ public class Q10867_GoneMissing extends Quest
super(10867);
addStartNpc(START_NPC);
addTalkId(START_NPC);
addCondMinLevel(70, getNoQuestMsg(null));
addCondMinLevel(Config.PLAYER_MAXIMUM_LEVEL /* 70 */, getNoQuestMsg(null));
}
}

View File

@ -16,6 +16,7 @@
*/
package quests.not_done;
import org.l2jmobius.Config;
import org.l2jmobius.gameserver.model.quest.Quest;
/**
@ -30,6 +31,6 @@ public class Q10868_TheDarkSideOfPower extends Quest
super(10868);
addStartNpc(START_NPC);
addTalkId(START_NPC);
addCondMinLevel(70, getNoQuestMsg(null));
addCondMinLevel(Config.PLAYER_MAXIMUM_LEVEL /* 70 */, getNoQuestMsg(null));
}
}

View File

@ -16,6 +16,7 @@
*/
package quests.not_done;
import org.l2jmobius.Config;
import org.l2jmobius.gameserver.model.quest.Quest;
/**
@ -30,6 +31,6 @@ public class Q10870_UnfinishedDevice extends Quest
super(10870);
addStartNpc(START_NPC);
addTalkId(START_NPC);
addCondMinLevel(70, getNoQuestMsg(null));
addCondMinLevel(Config.PLAYER_MAXIMUM_LEVEL /* 70 */, getNoQuestMsg(null));
}
}

View File

@ -16,6 +16,7 @@
*/
package quests.not_done;
import org.l2jmobius.Config;
import org.l2jmobius.gameserver.model.quest.Quest;
/**
@ -30,6 +31,6 @@ public class Q10871_DeathToThePirateKing extends Quest
super(10871);
addStartNpc(START_NPC);
addTalkId(START_NPC);
addCondMinLevel(70, getNoQuestMsg(null));
addCondMinLevel(Config.PLAYER_MAXIMUM_LEVEL /* 70 */, getNoQuestMsg(null));
}
}

View File

@ -16,6 +16,7 @@
*/
package quests.not_done;
import org.l2jmobius.Config;
import org.l2jmobius.gameserver.model.quest.Quest;
/**
@ -30,6 +31,6 @@ public class Q00630_PirateTreasureHunt extends Quest
super(630);
addStartNpc(START_NPC);
addTalkId(START_NPC);
addCondMinLevel(70, getNoQuestMsg(null));
addCondMinLevel(Config.PLAYER_MAXIMUM_LEVEL /* 70 */, getNoQuestMsg(null));
}
}

View File

@ -16,6 +16,7 @@
*/
package quests.not_done;
import org.l2jmobius.Config;
import org.l2jmobius.gameserver.model.quest.Quest;
/**
@ -30,6 +31,6 @@ public class Q00664_QuarrelsTime extends Quest
super(664);
addStartNpc(START_NPC);
addTalkId(START_NPC);
addCondMinLevel(70, getNoQuestMsg(null));
addCondMinLevel(Config.PLAYER_MAXIMUM_LEVEL /* 70 */, getNoQuestMsg(null));
}
}

View File

@ -16,6 +16,7 @@
*/
package quests.not_done;
import org.l2jmobius.Config;
import org.l2jmobius.gameserver.model.quest.Quest;
/**
@ -30,6 +31,6 @@ public class Q10861_MonsterArenaTheBirthOfAWarrior extends Quest
super(10861);
addStartNpc(START_NPC);
addTalkId(START_NPC);
addCondMinLevel(60, getNoQuestMsg(null));
addCondMinLevel(Config.PLAYER_MAXIMUM_LEVEL /* 60 */, getNoQuestMsg(null));
}
}

View File

@ -16,6 +16,7 @@
*/
package quests.not_done;
import org.l2jmobius.Config;
import org.l2jmobius.gameserver.model.quest.Quest;
/**
@ -30,6 +31,6 @@ public class Q10862_MonsterArenaChallenge10Battles extends Quest
super(10862);
addStartNpc(START_NPC);
addTalkId(START_NPC);
addCondMinLevel(60, getNoQuestMsg(null));
addCondMinLevel(Config.PLAYER_MAXIMUM_LEVEL /* 60 */, getNoQuestMsg(null));
}
}

View File

@ -16,6 +16,7 @@
*/
package quests.not_done;
import org.l2jmobius.Config;
import org.l2jmobius.gameserver.model.quest.Quest;
/**
@ -30,6 +31,6 @@ public class Q10863_MonsterArenaNewChallenge15Battles extends Quest
super(10863);
addStartNpc(START_NPC);
addTalkId(START_NPC);
addCondMinLevel(60, getNoQuestMsg(null));
addCondMinLevel(Config.PLAYER_MAXIMUM_LEVEL /* 60 */, getNoQuestMsg(null));
}
}

View File

@ -16,6 +16,7 @@
*/
package quests.not_done;
import org.l2jmobius.Config;
import org.l2jmobius.gameserver.model.quest.Quest;
/**
@ -30,6 +31,6 @@ public class Q10864_MonsterArenaBraveWarrior25Battles extends Quest
super(10864);
addStartNpc(START_NPC);
addTalkId(START_NPC);
addCondMinLevel(60, getNoQuestMsg(null));
addCondMinLevel(Config.PLAYER_MAXIMUM_LEVEL /* 60 */, getNoQuestMsg(null));
}
}

View File

@ -16,6 +16,7 @@
*/
package quests.not_done;
import org.l2jmobius.Config;
import org.l2jmobius.gameserver.model.quest.Quest;
/**
@ -30,6 +31,6 @@ public class Q10865_MonsterArenaLastCall40Battles extends Quest
super(10865);
addStartNpc(START_NPC);
addTalkId(START_NPC);
addCondMinLevel(60, getNoQuestMsg(null));
addCondMinLevel(Config.PLAYER_MAXIMUM_LEVEL /* 60 */, getNoQuestMsg(null));
}
}

View File

@ -16,6 +16,7 @@
*/
package quests.not_done;
import org.l2jmobius.Config;
import org.l2jmobius.gameserver.model.quest.Quest;
/**
@ -30,6 +31,6 @@ public class Q10867_GoneMissing extends Quest
super(10867);
addStartNpc(START_NPC);
addTalkId(START_NPC);
addCondMinLevel(70, getNoQuestMsg(null));
addCondMinLevel(Config.PLAYER_MAXIMUM_LEVEL /* 70 */, getNoQuestMsg(null));
}
}

View File

@ -16,6 +16,7 @@
*/
package quests.not_done;
import org.l2jmobius.Config;
import org.l2jmobius.gameserver.model.quest.Quest;
/**
@ -30,6 +31,6 @@ public class Q10868_TheDarkSideOfPower extends Quest
super(10868);
addStartNpc(START_NPC);
addTalkId(START_NPC);
addCondMinLevel(70, getNoQuestMsg(null));
addCondMinLevel(Config.PLAYER_MAXIMUM_LEVEL /* 70 */, getNoQuestMsg(null));
}
}

View File

@ -16,6 +16,7 @@
*/
package quests.not_done;
import org.l2jmobius.Config;
import org.l2jmobius.gameserver.model.quest.Quest;
/**
@ -30,6 +31,6 @@ public class Q10870_UnfinishedDevice extends Quest
super(10870);
addStartNpc(START_NPC);
addTalkId(START_NPC);
addCondMinLevel(70, getNoQuestMsg(null));
addCondMinLevel(Config.PLAYER_MAXIMUM_LEVEL /* 70 */, getNoQuestMsg(null));
}
}

View File

@ -16,6 +16,7 @@
*/
package quests.not_done;
import org.l2jmobius.Config;
import org.l2jmobius.gameserver.model.quest.Quest;
/**
@ -30,6 +31,6 @@ public class Q10871_DeathToThePirateKing extends Quest
super(10871);
addStartNpc(START_NPC);
addTalkId(START_NPC);
addCondMinLevel(70, getNoQuestMsg(null));
addCondMinLevel(Config.PLAYER_MAXIMUM_LEVEL /* 70 */, getNoQuestMsg(null));
}
}

View File

@ -16,6 +16,7 @@
*/
package quests.not_done;
import org.l2jmobius.Config;
import org.l2jmobius.gameserver.model.quest.Quest;
/**
@ -30,6 +31,6 @@ public class Q00630_PirateTreasureHunt extends Quest
super(630);
addStartNpc(START_NPC);
addTalkId(START_NPC);
addCondMinLevel(70, getNoQuestMsg(null));
addCondMinLevel(Config.PLAYER_MAXIMUM_LEVEL /* 70 */, getNoQuestMsg(null));
}
}

View File

@ -16,6 +16,7 @@
*/
package quests.not_done;
import org.l2jmobius.Config;
import org.l2jmobius.gameserver.model.quest.Quest;
/**
@ -30,7 +31,7 @@ public class Q00657_MonsterArenaTrialForWarriors extends Quest
super(657);
addStartNpc(START_NPC);
addTalkId(START_NPC);
addCondMinLevel(60, getNoQuestMsg(null));
addCondMaxLevel(70, getNoQuestMsg(null));
addCondMinLevel(Config.PLAYER_MAXIMUM_LEVEL /* 60 */, getNoQuestMsg(null));
// addCondMaxLevel(70, getNoQuestMsg(null));
}
}

View File

@ -16,6 +16,7 @@
*/
package quests.not_done;
import org.l2jmobius.Config;
import org.l2jmobius.gameserver.model.quest.Quest;
/**
@ -30,6 +31,6 @@ public class Q00658_MonsterArenaTrialForEliteWarriors extends Quest
super(658);
addStartNpc(START_NPC);
addTalkId(START_NPC);
addCondMinLevel(60, getNoQuestMsg(null));
addCondMinLevel(Config.PLAYER_MAXIMUM_LEVEL /* 60 */, getNoQuestMsg(null));
}
}

View File

@ -16,6 +16,7 @@
*/
package quests.not_done;
import org.l2jmobius.Config;
import org.l2jmobius.gameserver.model.quest.Quest;
/**
@ -30,6 +31,6 @@ public class Q00664_QuarrelsTime extends Quest
super(664);
addStartNpc(START_NPC);
addTalkId(START_NPC);
addCondMinLevel(70, getNoQuestMsg(null));
addCondMinLevel(Config.PLAYER_MAXIMUM_LEVEL /* 70 */, getNoQuestMsg(null));
}
}

View File

@ -16,6 +16,7 @@
*/
package quests.not_done;
import org.l2jmobius.Config;
import org.l2jmobius.gameserver.model.quest.Quest;
/**
@ -30,7 +31,7 @@ public class Q00910_RequestFromTheRedLibraGuildBasic extends Quest
super(910);
addStartNpc(START_NPC);
addTalkId(START_NPC);
addCondMinLevel(1, getNoQuestMsg(null));
addCondMaxLevel(20, getNoQuestMsg(null));
addCondMinLevel(Config.PLAYER_MAXIMUM_LEVEL /* 1 */, getNoQuestMsg(null));
// addCondMaxLevel(20, getNoQuestMsg(null));
}
}

View File

@ -16,6 +16,7 @@
*/
package quests.not_done;
import org.l2jmobius.Config;
import org.l2jmobius.gameserver.model.quest.Quest;
/**
@ -30,7 +31,7 @@ public class Q00911_RequestFromTheRedLibraGuildIntermediate extends Quest
super(911);
addStartNpc(START_NPC);
addTalkId(START_NPC);
addCondMinLevel(21, getNoQuestMsg(null));
addCondMaxLevel(40, getNoQuestMsg(null));
addCondMinLevel(Config.PLAYER_MAXIMUM_LEVEL /* 21 */, getNoQuestMsg(null));
// addCondMaxLevel(40, getNoQuestMsg(null));
}
}

View File

@ -16,6 +16,7 @@
*/
package quests.not_done;
import org.l2jmobius.Config;
import org.l2jmobius.gameserver.model.quest.Quest;
/**
@ -30,7 +31,7 @@ public class Q00912_RequestFromTheRedLibraGuildAdvanced extends Quest
super(912);
addStartNpc(START_NPC);
addTalkId(START_NPC);
addCondMinLevel(41, getNoQuestMsg(null));
addCondMaxLevel(60, getNoQuestMsg(null));
addCondMinLevel(Config.PLAYER_MAXIMUM_LEVEL /* 41 */, getNoQuestMsg(null));
// addCondMaxLevel(60, getNoQuestMsg(null));
}
}

View File

@ -16,6 +16,7 @@
*/
package quests.not_done;
import org.l2jmobius.Config;
import org.l2jmobius.gameserver.model.quest.Quest;
/**
@ -30,6 +31,6 @@ public class Q00913_RequestFromTheRedLibraGuildSuperAdvanced extends Quest
super(913);
addStartNpc(START_NPC);
addTalkId(START_NPC);
addCondMinLevel(61, getNoQuestMsg(null));
addCondMinLevel(Config.PLAYER_MAXIMUM_LEVEL /* 61 */, getNoQuestMsg(null));
}
}

View File

@ -16,6 +16,7 @@
*/
package quests.not_done;
import org.l2jmobius.Config;
import org.l2jmobius.gameserver.model.quest.Quest;
/**
@ -30,6 +31,6 @@ public class Q10861_MonsterArenaTheBirthOfAWarrior extends Quest
super(10861);
addStartNpc(START_NPC);
addTalkId(START_NPC);
addCondMinLevel(60, getNoQuestMsg(null));
addCondMinLevel(Config.PLAYER_MAXIMUM_LEVEL /* 60 */, getNoQuestMsg(null));
}
}

View File

@ -16,6 +16,7 @@
*/
package quests.not_done;
import org.l2jmobius.Config;
import org.l2jmobius.gameserver.model.quest.Quest;
/**
@ -30,6 +31,6 @@ public class Q10862_MonsterArenaChallenge10Battles extends Quest
super(10862);
addStartNpc(START_NPC);
addTalkId(START_NPC);
addCondMinLevel(60, getNoQuestMsg(null));
addCondMinLevel(Config.PLAYER_MAXIMUM_LEVEL /* 60 */, getNoQuestMsg(null));
}
}

View File

@ -16,6 +16,7 @@
*/
package quests.not_done;
import org.l2jmobius.Config;
import org.l2jmobius.gameserver.model.quest.Quest;
/**
@ -30,6 +31,6 @@ public class Q10863_MonsterArenaNewChallenge15Battles extends Quest
super(10863);
addStartNpc(START_NPC);
addTalkId(START_NPC);
addCondMinLevel(60, getNoQuestMsg(null));
addCondMinLevel(Config.PLAYER_MAXIMUM_LEVEL /* 60 */, getNoQuestMsg(null));
}
}

View File

@ -16,6 +16,7 @@
*/
package quests.not_done;
import org.l2jmobius.Config;
import org.l2jmobius.gameserver.model.quest.Quest;
/**
@ -30,6 +31,6 @@ public class Q10864_MonsterArenaBraveWarrior25Battles extends Quest
super(10864);
addStartNpc(START_NPC);
addTalkId(START_NPC);
addCondMinLevel(60, getNoQuestMsg(null));
addCondMinLevel(Config.PLAYER_MAXIMUM_LEVEL /* 60 */, getNoQuestMsg(null));
}
}

View File

@ -16,6 +16,7 @@
*/
package quests.not_done;
import org.l2jmobius.Config;
import org.l2jmobius.gameserver.model.quest.Quest;
/**
@ -30,6 +31,6 @@ public class Q10865_MonsterArenaLastCall40Battles extends Quest
super(10865);
addStartNpc(START_NPC);
addTalkId(START_NPC);
addCondMinLevel(60, getNoQuestMsg(null));
addCondMinLevel(Config.PLAYER_MAXIMUM_LEVEL /* 60 */, getNoQuestMsg(null));
}
}

View File

@ -16,6 +16,7 @@
*/
package quests.not_done;
import org.l2jmobius.Config;
import org.l2jmobius.gameserver.model.quest.Quest;
/**
@ -30,6 +31,6 @@ public class Q10867_GoneMissing extends Quest
super(10867);
addStartNpc(START_NPC);
addTalkId(START_NPC);
addCondMinLevel(70, getNoQuestMsg(null));
addCondMinLevel(Config.PLAYER_MAXIMUM_LEVEL /* 70 */, getNoQuestMsg(null));
}
}

View File

@ -16,6 +16,7 @@
*/
package quests.not_done;
import org.l2jmobius.Config;
import org.l2jmobius.gameserver.model.quest.Quest;
/**
@ -30,6 +31,6 @@ public class Q10868_TheDarkSideOfPower extends Quest
super(10868);
addStartNpc(START_NPC);
addTalkId(START_NPC);
addCondMinLevel(70, getNoQuestMsg(null));
addCondMinLevel(Config.PLAYER_MAXIMUM_LEVEL /* 70 */, getNoQuestMsg(null));
}
}

View File

@ -16,6 +16,7 @@
*/
package quests.not_done;
import org.l2jmobius.Config;
import org.l2jmobius.gameserver.model.quest.Quest;
/**
@ -30,6 +31,6 @@ public class Q10870_UnfinishedDevice extends Quest
super(10870);
addStartNpc(START_NPC);
addTalkId(START_NPC);
addCondMinLevel(70, getNoQuestMsg(null));
addCondMinLevel(Config.PLAYER_MAXIMUM_LEVEL /* 70 */, getNoQuestMsg(null));
}
}

View File

@ -16,6 +16,7 @@
*/
package quests.not_done;
import org.l2jmobius.Config;
import org.l2jmobius.gameserver.model.quest.Quest;
/**
@ -30,6 +31,6 @@ public class Q10871_DeathToThePirateKing extends Quest
super(10871);
addStartNpc(START_NPC);
addTalkId(START_NPC);
addCondMinLevel(70, getNoQuestMsg(null));
addCondMinLevel(Config.PLAYER_MAXIMUM_LEVEL /* 70 */, getNoQuestMsg(null));
}
}