summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoseph Botosh <rumly111@gmail.com>2015-10-27 20:05:48 +0200
committerJoseph Botosh <rumly111@gmail.com>2015-10-27 20:05:48 +0200
commit85e0094d38ca6f77da86fa5582bdb30a864f4aed (patch)
tree335162080f379ead403f80127e94b87d3595d662
parent79e43e2dc4e0647e903700b3b0e697c5a5a33309 (diff)
downloadserverdata-85e0094d38ca6f77da86fa5582bdb30a864f4aed.tar.gz
serverdata-85e0094d38ca6f77da86fa5582bdb30a864f4aed.tar.bz2
serverdata-85e0094d38ca6f77da86fa5582bdb30a864f4aed.tar.xz
serverdata-85e0094d38ca6f77da86fa5582bdb30a864f4aed.zip
Remove teleporting back when Crafty is killed
-rw-r--r--npc/001-2-14/_import.txt1
-rw-r--r--npc/001-2-14/_mobs.txt2
-rw-r--r--npc/001-2-14/teleport.txt19
3 files changed, 1 insertions, 21 deletions
diff --git a/npc/001-2-14/_import.txt b/npc/001-2-14/_import.txt
index 88d6e67c..9177d66c 100644
--- a/npc/001-2-14/_import.txt
+++ b/npc/001-2-14/_import.txt
@@ -1,5 +1,4 @@
npc: npc/001-2-14/mapflags.txt
npc: npc/001-2-14/_warps.txt
npc: npc/001-2-14/_mobs.txt
-npc: npc/001-2-14/teleport.txt
npc: npc/001-2-14/bacchus.txt
diff --git a/npc/001-2-14/_mobs.txt b/npc/001-2-14/_mobs.txt
index 76ab85c4..a183ab99 100644
--- a/npc/001-2-14/_mobs.txt
+++ b/npc/001-2-14/_mobs.txt
@@ -1,4 +1,4 @@
// 001-2-14 mobs
// Crafty
-001-2-14.gat,32,32,7,4 monster Crafty 1018,6,30000,15000,"Teleporter::OnCraftyDeath"
+001-2-14.gat,32,32,7,4 monster Crafty 1018,6,30000,15000
diff --git a/npc/001-2-14/teleport.txt b/npc/001-2-14/teleport.txt
deleted file mode 100644
index be3e12a5..00000000
--- a/npc/001-2-14/teleport.txt
+++ /dev/null
@@ -1,19 +0,0 @@
-// 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;
- clientcommand "turndown";
- message strcharinfo(0), l("What a strange dream.");
- }
- end;
-
-}