Difference between revisions of "LlTeleportAgentHome"

From Second Life Wiki
Jump to navigation Jump to search
(The owner must be an EM, not the owner. At least in my testing.)
(If this were true it would be a breaking change (main land security systems would fail). The suggestion SVC-6360 seeks to allow EMs usage of this function and it's unresolved (as of last month).)
Line 8: Line 8:
|p1_name=avatar
|p1_name=avatar
|func_desc=Teleports {{LSLP|avatar}} on owner's land to their home location without any warning, similar to a [[God Summons]] or [[death|dying]].
|func_desc=Teleports {{LSLP|avatar}} on owner's land to their home location without any warning, similar to a [[God Summons]] or [[death|dying]].
|func_footnote=The object owner must also be an estate manager.. If the land is deeded to a group the object will need to be deeded to the same group for this function to work.
|func_footnote=The object owner must also be the land owner. If the land is deeded to a group the object will need to be deeded to the same group for this function to work.
|spec
|spec
|caveats
|caveats

Revision as of 01:18, 28 July 2012

Summary

Function: llTeleportAgentHome( key avatar );

Teleports avatar on owner's land to their home location without any warning, similar to a God Summons or dying.

• key avatar avatar UUID that is in the same region

The object owner must also be the land owner. If the land is deeded to a group the object will need to be deeded to the same group for this function to work.

Caveats

  • This function causes the script to sleep for 5.0 seconds.
All Issues ~ Search JIRA for related Bugs

Examples

<lsl>default { state_entry() { llSetText("Don't touch me!", <1,0,0>, 5.0); } touch_start(integer total_number) { llTeleportAgentHome(llDetectedKey(0)); // Teleports the Agent home }

}</lsl>

Deep Notes

All Issues

~ Search JIRA for related Issues
   New Feature Request - llTeleportAgent

Signature

function void llTeleportAgentHome( key avatar );