Difference between revisions of "LlTeleportAgentHome"

From Second Life Wiki
Jump to navigation Jump to search
m (fixe)
(<lsl> example)
Line 11: Line 11:
|caveats
|caveats
|constants
|constants
|examples=<pre>
|examples=<lsl>// by Cory Bjornson
// by Cory Bjornson


default
default
Line 24: Line 23:
llTeleportAgentHome(llDetectedKey(0)); // Teleports the Agent home
llTeleportAgentHome(llDetectedKey(0)); // Teleports the Agent home
}
}
}
}</lsl>
</pre>
|helpers
|helpers
|also_functions
|also_functions

Revision as of 11:39, 4 March 2008

Summary

Function: llTeleportAgentHome( key agent );

Teleports agent on owner's land to their home location without any warning, similar to a God Summon or dieing.

• key agent

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>// by Cory Bjornson

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

Search JIRA for related Issues

Signature

function void llTeleportAgentHome( key agent );