Skip to content
Snippets Groups Projects
Commit 31c03c0d authored by Zealar's avatar Zealar
Browse files

Add missing text file for adventures guide

parent b0282874
No related branches found
No related tags found
No related merge requests found
<html><body>Adventurers' Guide:<br>
Are you weary from your long journey?<br>
Perhaps I can help strengthen you in your never-ending battle against the forces of evil.<br>
Even now, the monster attacks on this village grow stronger each day; it is only due to your tireless efforts that we have remained safe this long.<br>
<a action="bypass -h Quest NewbieGuide buffs-player.htm">Check the list of available supplemental magic.</a><br>
<a action="bypass -h Quest NewbieGuide buffs-pet.htm">Check the list of supplement magic available for servitors.</a><br>
<a action="bypass -h Quest NewbieGuide pk-protection-001.htm">Receive Blessing of Protection.</a>
</body></html>
\ No newline at end of file
...@@ -67,7 +67,7 @@ public final class NewbieGuide extends AbstractNpcAI ...@@ -67,7 +67,7 @@ public final class NewbieGuide extends AbstractNpcAI
private static final int NEWBIE_GUIDE_KAMAEL = 32135; private static final int NEWBIE_GUIDE_KAMAEL = 32135;
private static final int NEWBIE_GUIDE_GLUDIN = 31076; private static final int NEWBIE_GUIDE_GLUDIN = 31076;
private static final int NEWBIE_GUIDE_GLUDIO = 31077; private static final int NEWBIE_GUIDE_GLUDIO = 31077;
private static final int ADVENTURERS_GUIDE_ADEN = 32327; private static final int ADVENTURERS_GUIDE = 32327;
private static final int GUIDE_MISSION = 41; private static final int GUIDE_MISSION = 41;
...@@ -100,7 +100,7 @@ public final class NewbieGuide extends AbstractNpcAI ...@@ -100,7 +100,7 @@ public final class NewbieGuide extends AbstractNpcAI
private static final int ACCESORIES_MULTISELL = 305986002; private static final int ACCESORIES_MULTISELL = 305986002;
private static final Map<Integer, List<Location>> TELEPORT_MAP = new HashMap<>(); private static final Map<Integer, List<Location>> TELEPORT_MAP = new HashMap<>();
static static
{ {
Location TALKING_ISLAND_VILLAGE = new Location(-84081, 243227, -3723); Location TALKING_ISLAND_VILLAGE = new Location(-84081, 243227, -3723);
...@@ -132,7 +132,7 @@ public final class NewbieGuide extends AbstractNpcAI ...@@ -132,7 +132,7 @@ public final class NewbieGuide extends AbstractNpcAI
NEWBIE_GUIDE_KAMAEL, NEWBIE_GUIDE_KAMAEL,
NEWBIE_GUIDE_GLUDIN, NEWBIE_GUIDE_GLUDIN,
NEWBIE_GUIDE_GLUDIO, NEWBIE_GUIDE_GLUDIO,
ADVENTURERS_GUIDE_ADEN ADVENTURERS_GUIDE
}; };
addStartNpc(newbieList); addStartNpc(newbieList);
addFirstTalkId(newbieList); addFirstTalkId(newbieList);
...@@ -145,6 +145,10 @@ public final class NewbieGuide extends AbstractNpcAI ...@@ -145,6 +145,10 @@ public final class NewbieGuide extends AbstractNpcAI
QuestState qs = player.getQuestState(Q00255_Tutorial.class.getSimpleName()); QuestState qs = player.getQuestState(Q00255_Tutorial.class.getSimpleName());
if (qs != null) if (qs != null)
{ {
if (npc.getId() == ADVENTURERS_GUIDE)
{
return "32327.htm";
}
return talkGuide(player, qs); return talkGuide(player, qs);
} }
return super.onFirstTalk(npc, player); return super.onFirstTalk(npc, player);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment