summaryrefslogtreecommitdiff
path: root/npc/031-1/frozenbeard.txt
diff options
context:
space:
mode:
Diffstat (limited to 'npc/031-1/frozenbeard.txt')
-rw-r--r--npc/031-1/frozenbeard.txt22
1 files changed, 22 insertions, 0 deletions
diff --git a/npc/031-1/frozenbeard.txt b/npc/031-1/frozenbeard.txt
new file mode 100644
index 00000000..4b380d79
--- /dev/null
+++ b/npc/031-1/frozenbeard.txt
@@ -0,0 +1,22 @@
+
+031-1,96,113,0 script Frozenbeard NPC138,{
+
+ mes "[Frozenbeard]";
+ mes "\"Yar! Do you need something, matey?\"";
+ goto L_Main;
+
+L_Main:
+ menu
+ "Can you explain the Ferry?", L_Explain,
+ "Nothing I guess", L_close;
+
+L_Explain:
+ mes "[Frozenbeard]";
+ mes "\"Arrr mate! I pioneered the trade routes between Nivalis and the rest of the World, so now merchants and adventurers can travel to and fro without any hassle other than the harsh weather up here, yarr.\"";
+ next;
+ callfunc "FerryHelp";
+ goto L_Main;
+
+L_close:
+ close;
+}