summaryrefslogtreecommitdiff
path: root/npc/005-1/sailors.txt
diff options
context:
space:
mode:
Diffstat (limited to 'npc/005-1/sailors.txt')
-rw-r--r--npc/005-1/sailors.txt24
1 files changed, 24 insertions, 0 deletions
diff --git a/npc/005-1/sailors.txt b/npc/005-1/sailors.txt
new file mode 100644
index 000000000..02df16ae3
--- /dev/null
+++ b/npc/005-1/sailors.txt
@@ -0,0 +1,24 @@
+// TMW2 scripts.
+// Authors:
+// Jesusalva
+// Description:
+// TODO
+
+005-1,95,99,0 script Sailors NPC_ELVEN_MAN_TRADER_SITTING,0,0,{
+ .@q = getq(CandorQuest_Sailors);
+ if (.@q == 1) mesn;
+ //goto L_Find;
+
+ mesn;
+ mesq l("Ahoy matey!");
+ next;
+ mesq l("Arr, it is always good to be on land after so much time in sea!");
+ next;
+ mesq l("I still can't believe we ran out of beer, though!");
+ close;
+
+OnInit:
+ .sex = G_OTHER;
+ .distance = 8;
+ end;
+}