Difference between revisions of "LlGodLikeRezObject"

From Second Life Wiki
Jump to navigation Jump to search
m (<lsl> tag to <source>)
 
(7 intermediate revisions by 6 users not shown)
Line 1: Line 1:
{{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
|func_desc=Rez directly off of [[UUID]] if owner has dog-bit set.
|func_desc=Rez directly off of [[UUID]] if owner has god-bit set.
|sort=GodLikeRezObject
|return_text
|return_text
|spec
|spec
|caveats
|caveats
|examples
|examples=
<source lang="lsl2">
// 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
</source>
|helpers
|helpers
|related
|related
Line 12: Line 20:
|notes
|notes
|mode=god
|mode=god
|cat1
|cat1=Rez
|cat2
|cat2
|cat3
|cat3
|cat4
|cat4
}}
}}

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