summaryrefslogtreecommitdiff
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
parent5583a85812287e266991b88686d27a9a6798ea8d (diff)
downloadserverdata-1508bda0f83cae103b65f02c4a6417e0e384596f.tar.gz
serverdata-1508bda0f83cae103b65f02c4a6417e0e384596f.tar.bz2
serverdata-1508bda0f83cae103b65f02c4a6417e0e384596f.tar.xz
serverdata-1508bda0f83cae103b65f02c4a6417e0e384596f.zip
Sailors
-rw-r--r--db/quest_db.conf4
-rw-r--r--npc/005-1/_import.txt1
-rw-r--r--npc/005-1/sailors.txt24
3 files changed, 29 insertions, 0 deletions
diff --git a/db/quest_db.conf b/db/quest_db.conf
index f80fe4eee..184db5487 100644
--- a/db/quest_db.conf
+++ b/db/quest_db.conf
@@ -190,6 +190,10 @@ quest_db: (
Name: "CandorQuest_Barrel"
},
{
+ Id: 41
+ Name: "CandorQuest_Sailors"
+},
+{
Id: 1000
Name: "Test_testing1"
},
diff --git a/npc/005-1/_import.txt b/npc/005-1/_import.txt
index fe3f5737c..730921ac0 100644
--- a/npc/005-1/_import.txt
+++ b/npc/005-1/_import.txt
@@ -6,6 +6,7 @@
"npc/005-1/ayasha.txt",
"npc/005-1/liana.txt",
"npc/005-1/maya.txt",
+"npc/005-1/sailors.txt",
"npc/005-1/ship.txt",
"npc/005-1/soul-menhir.txt",
"npc/005-1/warpcandorbattle.txt",
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;
+}