summaryrefslogtreecommitdiff
path: root/npc/000-2-3
diff options
context:
space:
mode:
authorReid <reidyaro@gmail.com>2012-06-13 21:54:05 +0200
committerReid <reidyaro@gmail.com>2012-06-13 21:54:05 +0200
commit33813a1389e23952d5821b0b56bc00a7302e66d0 (patch)
tree9d9e9a4f6fade8e31eee84c5aed5d57e39eb0024 /npc/000-2-3
parentb57db5ddac56d20fd01d7f9f68195c0dc495b1b9 (diff)
downloadserverdata-33813a1389e23952d5821b0b56bc00a7302e66d0.tar.gz
serverdata-33813a1389e23952d5821b0b56bc00a7302e66d0.tar.bz2
serverdata-33813a1389e23952d5821b0b56bc00a7302e66d0.tar.xz
serverdata-33813a1389e23952d5821b0b56bc00a7302e66d0.zip
Remove fake savepoint 000-2-3 hammock,
Rename savepoint to hammock on 000-2-3, Remove savepoint function dialogue.
Diffstat (limited to 'npc/000-2-3')
-rw-r--r--npc/000-2-3/_import.txt2
-rw-r--r--npc/000-2-3/hammock.txt23
-rw-r--r--npc/000-2-3/savepoint.txt46
3 files changed, 24 insertions, 47 deletions
diff --git a/npc/000-2-3/_import.txt b/npc/000-2-3/_import.txt
index 0c0f4a02..d5067ace 100644
--- a/npc/000-2-3/_import.txt
+++ b/npc/000-2-3/_import.txt
@@ -5,5 +5,5 @@ 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
-npc: npc/000-2-3/savepoint.txt
+npc: npc/000-2-3/hammock.txt
npc: npc/000-2-3/box.txt \ No newline at end of file
diff --git a/npc/000-2-3/hammock.txt b/npc/000-2-3/hammock.txt
new file mode 100644
index 00000000..1afd66d8
--- /dev/null
+++ b/npc/000-2-3/hammock.txt
@@ -0,0 +1,23 @@
+// Evol scripts.
+// Authors:
+// Reid
+// Description:
+// Animated hammock of top level of the Ship.
+
+000-2-3.gat,28,24,0,2 script #name 904,1,0{
+
+OnTouchFirst:
+ setnpcdir 4;
+ close;
+
+OnUnTouchAll:
+ setnpcdir 2;
+ initnpctimer;
+ close;
+
+OnTimer5440:
+ setnpcdir 4;
+ stopnpctimer;
+ end;
+
+} \ No newline at end of file
diff --git a/npc/000-2-3/savepoint.txt b/npc/000-2-3/savepoint.txt
deleted file mode 100644
index 4f7a6b03..00000000
--- a/npc/000-2-3/savepoint.txt
+++ /dev/null
@@ -1,46 +0,0 @@
-// Evol scripts.
-// Authors:
-// Reid
-// Description:
-// Fake save point in nard's room.
-
-000-2-3.gat,28,24,0,2 script #name 906,1,0;2{
-
- 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 a few 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;
-
-OnTouchFirst:
- setnpcdir 4;
- close;
-
-OnUnTouchAll:
- setnpcdir 2;
- initnpctimer;
- close;
-
-OnTimer5440:
- setnpcdir 4;
- stopnpctimer;
- end;
-
-} \ No newline at end of file