summaryrefslogtreecommitdiff
path: root/npc/001-2-14/teleport.txt
diff options
context:
space:
mode:
Diffstat (limited to 'npc/001-2-14/teleport.txt')
-rw-r--r--npc/001-2-14/teleport.txt18
1 files changed, 18 insertions, 0 deletions
diff --git a/npc/001-2-14/teleport.txt b/npc/001-2-14/teleport.txt
new file mode 100644
index 00000000..4face176
--- /dev/null
+++ b/npc/001-2-14/teleport.txt
@@ -0,0 +1,18 @@
+// Evol scripts.
+// Author:
+// Travolta
+// Description:
+// Invisible NPC to teleport player back to the Ship.
+
+
+- script Teleporter -1,{
+
+OnCraftyDeath:
+ if (playerattached())
+ {
+ warp "000-2-1",50,38;
+ message strcharinfo(0), l("What a strange dream.");
+ }
+ end;
+
+}