Improvements for quest Letters of Love (1) based on client information.

Contributed by Iris.
This commit is contained in:
MobiusDev 2019-03-07 08:46:34 +00:00
parent d59c373f67
commit cfc9b0ba90
2 changed files with 3 additions and 1 deletions

View File

@ -1,5 +1,5 @@
<html><body>Darin:<br>
What's more dangerous than a Knight's sword or a Wizard's staff? That thing we call love. More silently than a thief, swifter than a sunset it comes upon you and captures your soul. The minstrels were right; it's sweet and bitter all at once! One moment my heart soars to the heights of joy, the next it plummets into the depths of despair. Can you explain it?<br>
Ah, but I see you are focused on the world of adventure, not romance. Just remember: one day you too may fall under love's irresistible spell...<br>
(Only characters who are level 2 and above may undertake this quest.)
(Only characters who are level 2-5 may undertake this quest.)
</body></html>

View File

@ -40,6 +40,7 @@ public class Q00001_LettersOfLove extends Quest
private static final int NECKLACE_OF_KNOWLEDGE = 49039;
// Misc
private static final int MIN_LEVEL = 2;
private static final int MAX_LEVEL = 5;
public Q00001_LettersOfLove()
{
@ -47,6 +48,7 @@ public class Q00001_LettersOfLove extends Quest
addStartNpc(DARIN);
addTalkId(DARIN, ROXXY, BAULRO);
registerQuestItems(DARINS_LETTER, ROXXYS_KERCHIEF, DARINS_RECEIPT, BAULROS_POTION);
addCondMaxLevel(MAX_LEVEL, "30048-01.html");
}
@Override