summaryrefslogtreecommitdiff
path: root/npc/018-1
diff options
context:
space:
mode:
Diffstat (limited to 'npc/018-1')
-rw-r--r--npc/018-1/george.txt20
1 files changed, 20 insertions, 0 deletions
diff --git a/npc/018-1/george.txt b/npc/018-1/george.txt
index 123089589..235151da9 100644
--- a/npc/018-1/george.txt
+++ b/npc/018-1/george.txt
@@ -49,6 +49,7 @@ L_Main:
rif(.@q == 3, l("Do you need any more help?")), L_RequestTwo,
rif(.@q == 4, l("About the items you asked me to collect...")), L_ProgressTwo,
rif(.@showShovel, l("Could you sell me a treasure map and a shovel?")), L_Shop,
+ rif(getq(HurnscaldQuest_PirateCave), l("About this pirate treasure map...")), L_PirateMap,
l("Nothing I guess"), L_Close;
// Context menu
@@ -198,6 +199,25 @@ L_Shop:
.@showShovel=false;
goto L_Main;
+L_PirateMap:
+ if (getq(HurnscaldQuest_PirateCave) >= 2) {
+ mesn l("George the Pirate");
+ mesq l("I'm not familiar with the Butterfly Caves. Try asking a local, maybe Arkim, they ought know the way.");
+ next;
+ goto L_Close;
+ }
+ mesn l("George the Pirate");
+ mesq l("Arr, that's a fine map ya got there! And these are definitely Hurnscald Caves, yarr!");
+ next;
+ mesn l("George the Pirate");
+ mesq l("However...");
+ next;
+ mesn l("George the Pirate");
+ mesq l("I'm not familiar with the Butterfly Caves. Try asking a local?");
+ setq HurnscaldQuest_PirateCave, 2;
+ next;
+ goto L_Close;
+
L_Close:
sailortalk;
closedialog;