Difference between revisions of "LlGodLikeRezObject"

From Second Life Wiki
Jump to navigation Jump to search
m (Don't ask me why i'm updating this.)
m (<lsl> tag to <source>)
 
Line 9: Line 9:
|caveats
|caveats
|examples=
|examples=
<lsl>
<source lang="lsl2">
// This will only work if you have the god-bit set.
// This will only work if you have the god-bit set.
key object = "a822ff2b-ff02-461d-b45d-dcd10a2de0c2"; // Our object key
key object = "a822ff2b-ff02-461d-b45d-dcd10a2de0c2"; // Our object key
vector pos = <127,127,50>; // Our object pos
vector pos = <127,127,50>; // Our object pos
llGodLikeRezObject(object, pos); // This will rez the object
llGodLikeRezObject(object, pos); // This will rez the object
</lsl>
</source>
|helpers
|helpers
|related
|related

Latest revision as of 11:21, 22 January 2015

  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

// 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

Deep Notes

Search JIRA for related Issues

Signature

function void llGodLikeRezObject( key inventory, vector pos );