Welcome to the Second Life Forums Archive

These forums are CLOSED. Please visit the new forums HERE

Bypassing SLURL map screen ?

Chris Widget
Widget Isles @ the Edge!
Join date: 22 Jan 2006
Posts: 67
01-07-2007 07:35
SLUrl is a great idea and is really helpful, but it is also terribly lagged at times and having to go to the map screen then click on the Teleport now button seems to be a roundabout way to accomplish the desired task. Is there a way to bypass the SLURL map screen ? Barring that is there a way to make the following actually teleport the av to the location versus simply putting up one of those red directional arrows?

secondlife://non/79/230/39/

Thanks in advance.
_____________________
---
Chris Widget
Non
Elsewhere Essex
Registered User
Join date: 8 Sep 2006
Posts: 50
01-07-2007 10:00
there is no way for one person to teleport another without that map screen. even when accessing LM's through a 3rd party interface liek a LM organiser, you have to deal with that map-to-location process.
Geuis Dassin
Filming Path creator
Join date: 3 May 2006
Posts: 565
01-07-2007 11:47
Yes chris.

There might be a small error or 2 in this, but I've done this before and it works just dandy. Im just writing this from memory.

Your url that you use from either the web, or even in SL via llLoadUrl, which then launches a browser window and loads this back into SL.
http://yourserver.com/sltp.php?location=non-79-230-39

In php(what would be in :

CODE

<?
$location = $_GET['location'];

$location = str_replace('-','/',$location);

header('Location:secondlife://'.$location);
?>