summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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;
+}