Tough Road quest reward fix.
Contributed by spider.
This commit is contained in:
parent
239453a134
commit
4d18c11ce9
@ -32,8 +32,13 @@ import com.l2jserver.gameserver.model.quest.State;
|
|||||||
*/
|
*/
|
||||||
public class Q10332_ToughRoad extends Quest
|
public class Q10332_ToughRoad extends Quest
|
||||||
{
|
{
|
||||||
|
// Npcs
|
||||||
private static final int BATHIS = 30332;
|
private static final int BATHIS = 30332;
|
||||||
private static final int KAKAI = 30565;
|
private static final int KAKAI = 30565;
|
||||||
|
// Rewards
|
||||||
|
private static final int ADENA_REWARD = 700;
|
||||||
|
private static final int EXP_REWARD = 90000;
|
||||||
|
private static final int SP_REWARD = 21;
|
||||||
|
|
||||||
public Q10332_ToughRoad()
|
public Q10332_ToughRoad()
|
||||||
{
|
{
|
||||||
@ -74,8 +79,8 @@ public class Q10332_ToughRoad extends Quest
|
|||||||
}
|
}
|
||||||
case "30332-03.html":
|
case "30332-03.html":
|
||||||
{
|
{
|
||||||
giveAdena(player, 70000, true);
|
giveAdena(player, ADENA_REWARD, true);
|
||||||
addExpAndSp(player, 90000, 21);
|
addExpAndSp(player, EXP_REWARD, SP_REWARD);
|
||||||
qs.exitQuest(false, true);
|
qs.exitQuest(false, true);
|
||||||
htmltext = event;
|
htmltext = event;
|
||||||
break;
|
break;
|
||||||
|
Loading…
Reference in New Issue
Block a user