summaryrefslogtreecommitdiff
path: root/npc/000-2-3
diff options
context:
space:
mode:
authorReid <reidyaro@gmail.com>2012-04-09 23:56:59 +0200
committerReid <reidyaro@gmail.com>2012-04-09 23:56:59 +0200
commit4406b26d8d636f73a4956170f2c9da8321021ef3 (patch)
tree941e6aad6fbd47e0db7165c52e9be082a44e47ab /npc/000-2-3
parent7ac77d0b913dac0748f237a1851d564bbb32e25d (diff)
downloadserverdata-4406b26d8d636f73a4956170f2c9da8321021ef3.tar.gz
serverdata-4406b26d8d636f73a4956170f2c9da8321021ef3.tar.bz2
serverdata-4406b26d8d636f73a4956170f2c9da8321021ef3.tar.xz
serverdata-4406b26d8d636f73a4956170f2c9da8321021ef3.zip
Add new savepoint in 000-2-1 map,
Add fake savepoint in Nard's room.
Diffstat (limited to 'npc/000-2-3')
-rw-r--r--npc/000-2-3/_import.txt3
-rw-r--r--npc/000-2-3/savepoint.txt31
2 files changed, 33 insertions, 1 deletions
diff --git a/npc/000-2-3/_import.txt b/npc/000-2-3/_import.txt
index cea912c0..f70330bd 100644
--- a/npc/000-2-3/_import.txt
+++ b/npc/000-2-3/_import.txt
@@ -4,4 +4,5 @@ npc: npc/000-2-3/_warps.txt
npc: npc/000-2-3/piousrocket.txt
npc: npc/000-2-3/sailors.txt
npc: npc/000-2-3/elmo.txt
-npc: npc/000-2-3/nard.txt \ No newline at end of file
+npc: npc/000-2-3/nard.txt
+npc: npc/000-2-3/savepoint.txt \ No newline at end of file
diff --git a/npc/000-2-3/savepoint.txt b/npc/000-2-3/savepoint.txt
new file mode 100644
index 00000000..a6a96f66
--- /dev/null
+++ b/npc/000-2-3/savepoint.txt
@@ -0,0 +1,31 @@
+// Evol scripts.
+// Authors:
+// Reid
+// Description:
+// Fake save point in nard's room.
+
+000-2-3.gat,28,24,0,2 script #name 999,{
+
+ mesn "Narrator";
+ mes col(l("There is a nice place to stay beside you."), 9);
+ next;
+ mes col(l("What do you wish to do?"), 9);
+ next;
+
+ menu
+ l("Take a nap"), -,
+ l("Nothing"), L_Return;
+
+ mes " ";
+ mesn "Narrator";
+ mes col(l("You close your eyes some seconds..."), 9);
+ next;
+ mes col(l("..."), 9);
+ next;
+ mesn "Nard";
+ mesq l("Hey, you can't sleep here, it's my room.");
+
+L_Return:
+ close;
+
+}