Jump to content

RLV forced TP


Mako Brune
 Share

You are about to reply to a thread that has been inactive for 4551 days.

Please take a moment to consider if this thread is worth bumping.

Recommended Posts

If you simply want to accept teleport invitations automatically -- that is, your friend sends you a TP request, and you don't see any notification or get a chance to accept or decline;  you find yourself whooshing across the grid to join him or her -- all you need is

key uuid = "your friend's uuid here";default{	attach(key attached)	{		if(attached){			llOwnerSay("@accepttp:"+uuid+"=add");		}		else{			llOwnerSay("@clear");		}	}}

 

Link to comment
Share on other sites

  • 2 months later...
  • 1 year later...
  • 1 year later...

just pop this in a prim and wear as a hud....clicking the hud disables it...either reset the script or reattach to enable it again.

 

default
{
on_rez(integer num)
{
llResetScript();
}

state_entry()
{
llOwnerSay("@accepttp=add");
llOwnerSay("You can now be teleported by everyone without being able to deny the teleport request.");
}

touch_start(integer num)
{
if(llDetectedKey(0)==llGetOwner())
{
llOwnerSay("@accepttp=rem");
llOwnerSay("The teleport exception has been removed.");
}
}
}

Link to comment
Share on other sites

You are about to reply to a thread that has been inactive for 4551 days.

Please take a moment to consider if this thread is worth bumping.

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now
 Share

×
×
  • Create New...