Give it the following values:
Key: Targetname
Value: teleporter

Now pretty up your map...
Thats it for the mapping, wasn't that hard?
Now for the scripting...
Make a new text document and name it (yourmapname).gsc
Put this in it...
Code: Select all
main()
{
thread teleporter();
}
teleporter()
{
trigger = getent ("teleporter", "targetname");
while(1)
{
trigger waittill ("trigger",user);
user iprintlnbold ("Now Teleporting...");
wait(1);
user setOrigin( (-104, -64, 12) );
wait(1);
}
}
( (X, Y, Z) )

THAT'S IT!