Difference between revisions of "LlGodLikeRezObject"

From Second Life Wiki
Jump to navigation Jump to search
(is this the way it's supposed to work? or should the function template define the type variable? since it doesn't...)
m
Line 7: Line 7:
|spec
|spec
|caveats
|caveats
|examples
|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>
|helpers
|helpers
|related
|related

Revision as of 14:12, 26 July 2010

  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

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 );