summaryrefslogtreecommitdiff
path: root/npc/000-0-0/sailors.txt
diff options
context:
space:
mode:
authorReid <reidyaro@gmail.com>2011-12-29 04:00:23 +0100
committerReid <reidyaro@gmail.com>2011-12-29 04:00:23 +0100
commitb5aca9ae16e25402fd0ea1dc933c8d1b768eba0c (patch)
treeebbc1fda350c0f885eb3b00d639796bc8759570c /npc/000-0-0/sailors.txt
parent3fa8ab2cd804a023205b133e7efa9a20504b1839 (diff)
downloadserverdata-b5aca9ae16e25402fd0ea1dc933c8d1b768eba0c.tar.gz
serverdata-b5aca9ae16e25402fd0ea1dc933c8d1b768eba0c.tar.bz2
serverdata-b5aca9ae16e25402fd0ea1dc933c8d1b768eba0c.tar.xz
serverdata-b5aca9ae16e25402fd0ea1dc933c8d1b768eba0c.zip
Rename intro npc to sailors on 000-0-0,
Remove unused g(), #0, #1 from sailors script of 000-0-0, Add mapflags on 000-0 map, Change delay on Alige script.
Diffstat (limited to 'npc/000-0-0/sailors.txt')
-rw-r--r--npc/000-0-0/sailors.txt55
1 files changed, 55 insertions, 0 deletions
diff --git a/npc/000-0-0/sailors.txt b/npc/000-0-0/sailors.txt
new file mode 100644
index 00000000..3e4cc2e0
--- /dev/null
+++ b/npc/000-0-0/sailors.txt
@@ -0,0 +1,55 @@
+// Evol scripts.
+// Authors:
+// Ablu
+// Description:
+// Intro scene: Two sailors talking about how the player was found on his raft.
+
+000-0-0.gat,22,17,0,1 script Elmo 309,{
+OnTalk:
+ mesn "Elmo";
+ mes g(l("This girl is lucky, that we found her before a shark did. I have no idea where this came from. By the way, did you see the logo on her raft?"), l("This guy is lucky, that we found him before a shark did. I have no idea where this came from. By the way, did you see the logo on his raft?"));
+ next;
+ mesn "Magic Arpan";
+ mes l("Yeye, it's the logo of the warrior guild of Esperia, I wonder what this yiyyo was doing so far away from the coast.");
+ next;
+ mesn "Elmo";
+ mes l("I wonder too...");
+ next;
+ mesn "Magic Arpan";
+ mes l("Maybe he was one of these who got lost last month? The yoiis that got a secret quest from the Warrior guild, and from Esperia!");
+ next;
+ mesn "Elmo";
+ mes l("It makes sense, do you think we should inform the capt'n about it?");
+ next;
+ mesn "Magic Arpan";
+ mes l("Yeye.");
+ next;
+ mesn "Elmo";
+ mes g(l("Ok, I'm going to his room, keep an eye on her, we still don't know if she is an enemy or an ally..."), l("Ok, I'm going to his room, keep an eye on him, we still don't know if he is an enemy or an ally..."));
+ next;
+ mesn "Magic Arpan";
+ mes l("I will yaying do.");
+ next;
+ mesn "Elmo";
+ mes g(l("Oh, and give her some basic coats, poor girl, the one she had was much in worse condition that the ones we have!"), l("Oh, and give him some basic coats, poor guy, the one he had was much in worse condition that the ones we have!"));
+ next;
+ mesn "Magic Arpan";
+ mes l("Yayayaya, for the first time someone is dressed worse then us!");
+ next;
+ mesn "Elmo";
+ mes l("He he... OK, I'm going to the upper level, to inform the captain.");
+ next;
+ mesn "Magic Arpan";
+ mes g(l("I will give her everything she needs, don't worry."), l("I will give him everything he needs, don't worry."));
+ next;
+ mesn "Elmo";
+ mes g(l("OK, I think she's waking up, go see her."), l("OK, I think he's waking up, go see him."));
+ next;
+ warp "000-2-1.gat", 40, 38;
+ close;
+}
+
+000-0-0.gat,21,17,0,1 script Magic Arpan 307,{
+ doevent "Elmo::OnTalk"; // Elmo will handle dialogs between both npcs
+ close;
+}