LlTeleportAgentHome
From Second Life Wiki
| LSL Portal | Functions | Events | Types | Operators | Constants | Flow Control | Script Library | Tutorials |
Contents |
Summary
Function: llTeleportAgentHome( key avatar );| 158 | Function ID |
| 5.0 | Delay |
| 100.0 | Energy |
Teleports avatar on owner's land to their home location without any warning, similar to a God Summons or dying.
| • key | avatar | – | avatar UUID |
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.
Examples
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 } }
This article wasn't helpful for you? Maybe the related article at the LSL Wiki is able to bring enlightenment.

