Difference between revisions of "LlGodLikeRezObject"

From Second Life Wiki
Jump to navigation Jump to search
m
m (Don't ask me why i'm updating this.)
Line 1: Line 1:
{{#vardefine:type|function}}{{LSL_Function|func_id=135|func_sleep=0.0|func_energy=10.0
{{LSL_Function|func_id=135|func_sleep=0.0|func_energy=10.0
|inject-2={{LSL Function/position|pos|region=*}}
|func=llGodLikeRezObject|sort=GodLikeRezObject
|func=llGodLikeRezObject|sort=GodLikeRezObject
|p1_type=key|p1_name=inventory|p2_type=vector|p2_name=pos
|p1_type=key|p1_name=inventory|p2_type=vector|p2_name=pos

Revision as of 21:48, 6 June 2012

  Requires God Mode

(This function can only be executed in God Mode.)

Summary

Function: llGodLikeRezObject( key inventory, vector pos );

Rez directly off of UUID if owner has god-bit set.

• key inventory
• vector pos position in region coordinates

Caveats

  • This function can only be executed in God Mode.
All Issues ~ Search JIRA for related Bugs

Examples

<lsl> // This will only work if you have the god-bit set. key object = "a822ff2b-ff02-461d-b45d-dcd10a2de0c2"; // Our object key vector pos = <127,127,50>; // Our object pos llGodLikeRezObject(object, pos); // This will rez the object

</lsl>

Deep Notes

Search JIRA for related Issues

Signature

function void llGodLikeRezObject( key inventory, vector pos );