summaryrefslogtreecommitdiff
path: root/npc/000-2-3
diff options
context:
space:
mode:
authorErik Schilling <ablu.erikschilling@googlemail.com>2012-01-07 18:22:56 +0100
committerErik Schilling <ablu.erikschilling@googlemail.com>2012-01-07 18:43:00 +0100
commit1412752c297d767361e2f81cebd3830cef1b4aa2 (patch)
treef9c1fee0f60992600896ffed037735de6482beea /npc/000-2-3
parentdcc648c4670649c45b8639865ff2d2c6b0f1f6e0 (diff)
downloadserverdata-1412752c297d767361e2f81cebd3830cef1b4aa2.tar.gz
serverdata-1412752c297d767361e2f81cebd3830cef1b4aa2.tar.bz2
serverdata-1412752c297d767361e2f81cebd3830cef1b4aa2.tar.xz
serverdata-1412752c297d767361e2f81cebd3830cef1b4aa2.zip
Made the sailor dialouge only appear the first time
Diffstat (limited to 'npc/000-2-3')
-rw-r--r--npc/000-2-3/sailors.txt11
1 files changed, 9 insertions, 2 deletions
diff --git a/npc/000-2-3/sailors.txt b/npc/000-2-3/sailors.txt
index 01ea7fb7..f94a74c4 100644
--- a/npc/000-2-3/sailors.txt
+++ b/npc/000-2-3/sailors.txt
@@ -1,11 +1,14 @@
// Evol scripts.
// Authors:
// Reid
+// Ablu
// Description:
// End of intro with Nard and Elmo talking about the player.
000-2-3.gat,20,26,0,0 script AreaTop 0,1,0,{
OnTouch:
+ if (geta(ShipQuests, ShipQuests_Door) == 1) end;
+ seta ShipQuests, ShipQuests_Door, 1;
mesn "Elmo";
mesq g(l("So it's why we wanted to warn you, maybe she comes from this guild, as the sign was on her raft."), l("So it's why we wanted to warn you, maybe he comes from this guild, as the sign was on his raft."));
next;
@@ -29,6 +32,8 @@ OnTouch:
000-2-3.gat,21,27,0,0 script AreaMiddle 0,0,0,{
OnTouch:
+ if (geta(ShipQuests, ShipQuests_Door) == 1) end;
+ seta ShipQuests, ShipQuests_Door, 1;
mesn "Elmo";
mesq g(l("So it's why we wanted to warn you, maybe she comes from this guild, as the sign was on her raft."), l("So it's why we wanted to warn you, maybe he comes from this guild, as the sign was on his raft."));
next;
@@ -50,8 +55,10 @@ OnTouch:
close;
}
-000-2-3.gat,20,28,0,0 script AreaBotton 0,1,0,{
+000-2-3.gat,20,28,0,0 script AreaBottom 0,1,0,{
OnTouch:
+ if (geta(ShipQuests, ShipQuests_Door) == 1) end;
+ seta ShipQuests, ShipQuests_Door, 1;
mesn "Elmo";
mesq g(l("So it's why we wanted to warn you, maybe she comes from this guild, as the sign was on her raft."), l("So it's why we wanted to warn you, maybe he comes from this guild, as the sign was on his raft."));
next;
@@ -71,4 +78,4 @@ OnTouch:
mesn "Elmo";
mesq l("Sure, cap'tain.");
close;
-} \ No newline at end of file
+}