LlGodLikeRezObject: Difference between revisions

From Second Life Wiki
Jump to navigation Jump to search
Zai Lynch (talk | contribs)
is this the way it's supposed to work? or should the function template define the type variable? since it doesn't...
mNo edit summary
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 );
0.0 Forced Delay
10.0 Energy

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.

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

Signature

function void llGodLikeRezObject( key inventory, vector pos );