summaryrefslogtreecommitdiff
path: root/npc/001-2-14/teleport.txt
blob: 4face1767b7ec14492e34a093d1528f9db391977 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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;

}