summaryrefslogtreecommitdiff
path: root/npc/005-1/sailors.txt
diff options
context:
space:
mode:
authorjesusalva <cpntb1@ymail.com>2018-02-12 21:46:28 -0200
committerjesusalva <cpntb1@ymail.com>2018-02-12 21:46:28 -0200
commit1508bda0f83cae103b65f02c4a6417e0e384596f (patch)
tree0a5796808b6459768370d883102e2fb7ba2b9b2d /npc/005-1/sailors.txt
parent5583a85812287e266991b88686d27a9a6798ea8d (diff)
downloadserverdata-1508bda0f83cae103b65f02c4a6417e0e384596f.tar.gz
serverdata-1508bda0f83cae103b65f02c4a6417e0e384596f.tar.bz2
serverdata-1508bda0f83cae103b65f02c4a6417e0e384596f.tar.xz
serverdata-1508bda0f83cae103b65f02c4a6417e0e384596f.zip
Sailors
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;
+}