Posted by Pele on June 14, 1998 at 02:18:16:
In Reply to: Re: Teleportation posted by Jediian on June 13, 1998 at 21:16:10:
#This cog will teleport player when crossing an adjoin to a ghost thingflags=0x240
symbols
message crossed
thing ghostloc
surface crossme
end
code
crossed:If(GetSourceRef()!=GetLocalPlayerThing()) Return;
TeleportThing(GetLocalPlayerThing(), ghostloc);
return;
end