Project update.
This commit is contained in:
@ -1,14 +1,12 @@
|
||||
/*
|
||||
* Copyright (C) 2004-2015 L2J Server
|
||||
* This file is part of the L2J Mobius project.
|
||||
*
|
||||
* This file is part of L2J Server.
|
||||
*
|
||||
* L2J Server is free software: you can redistribute it and/or modify
|
||||
* 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.
|
||||
*
|
||||
* L2J Server is distributed in the hope that it will be useful,
|
||||
* 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.
|
||||
@ -21,13 +19,13 @@ package quests.Q10337_SakumsInfluence;
|
||||
import java.util.HashMap;
|
||||
import java.util.Map;
|
||||
|
||||
import com.l2jserver.gameserver.model.actor.L2Npc;
|
||||
import com.l2jserver.gameserver.model.actor.instance.L2PcInstance;
|
||||
import com.l2jserver.gameserver.model.quest.Quest;
|
||||
import com.l2jserver.gameserver.model.quest.QuestState;
|
||||
import com.l2jserver.gameserver.model.quest.State;
|
||||
import com.l2jserver.gameserver.network.serverpackets.ExQuestNpcLogList;
|
||||
import com.l2jserver.gameserver.util.Util;
|
||||
import com.l2jmobius.gameserver.model.actor.L2Npc;
|
||||
import com.l2jmobius.gameserver.model.actor.instance.L2PcInstance;
|
||||
import com.l2jmobius.gameserver.model.quest.Quest;
|
||||
import com.l2jmobius.gameserver.model.quest.QuestState;
|
||||
import com.l2jmobius.gameserver.model.quest.State;
|
||||
import com.l2jmobius.gameserver.network.serverpackets.ExQuestNpcLogList;
|
||||
import com.l2jmobius.gameserver.util.Util;
|
||||
|
||||
/**
|
||||
* Sakum's Influence (10337)
|
||||
@ -47,11 +45,13 @@ public class Q10337_SakumsInfluence extends Quest
|
||||
private static final int SCAVENGER_BAT = 20411;
|
||||
private static final int BAT = 27458; // for ruin bat & scavenger bat counter(client counter requires BAT id)
|
||||
private static final Map<Integer, Integer> MOBS_REQUIRED = new HashMap<>();
|
||||
|
||||
{
|
||||
MOBS_REQUIRED.put(SKELETON_WARRIOR, 10);
|
||||
MOBS_REQUIRED.put(RUIN_IMP, 20); // imp elder same counter
|
||||
MOBS_REQUIRED.put(BAT, 25); // & scavenger bat same counter
|
||||
}
|
||||
|
||||
// Rewards
|
||||
private static final int ADENA_REWARD = 1030;
|
||||
private static final int EXP_REWARD = 650000;
|
||||
@ -67,7 +67,6 @@ public class Q10337_SakumsInfluence extends Quest
|
||||
addTalkId(ADV_GUILDSMAN, SILVAN, LEF);
|
||||
addKillId(SKELETON_WARRIOR, RUIN_IMP, RUIN_IMP_ELDER, RUIN_BAT, SCAVENGER_BAT);
|
||||
addCondLevel(MIN_LEVEL, MAX_LEVEL, "no_level.htm");
|
||||
|
||||
}
|
||||
|
||||
@Override
|
||||
|
Reference in New Issue
Block a user