Difference between revisions of "Template:LSL Constants/Object Details"

From Second Life Wiki
Jump to navigation Jump to search
(OBJECT_OWNER returns the avatar's key if id is an avatar (does not return NULL_KEY))
m (kills the p tag)
Line 50: Line 50:
{{!}}{{LSL Const|OBJECT_OWNER|integer|6|c=Gets the object's owner key.}}
{{!}}{{LSL Const|OBJECT_OWNER|integer|6|c=Gets the object's owner key.}}
{{!}}{{#var:value}}
{{!}}{{#var:value}}
{{!}}Gets an object's {{LSLGC|Owner|owner}} key.<br/>
{{!}}Gets an object's {{LSLGC|Owner|owner}} key.<br/>If '''id''' is an avatar, that avatar's key is returned (which is the same as '''id''').<br/>If '''id''' is group-owned, a {{LSL Constant/NULL_KEY}} is returned.
If '''id''' is an avatar, that avatar's key is returned (which is the same as '''id''').<br/>
If '''id''' is group-owned, a {{LSL Constant/NULL_KEY}} is returned.
{{!}}(36 Characters)
{{!}}(36 Characters)
{{!}}[[key]]
{{!}}[[key]]

Revision as of 01:21, 16 April 2009

Flags Description Max Length Return Alternatives
OBJECT_NAME 1 Gets the prim's name. 63 Characters string
OBJECT_DESC 2 Gets the prim's description.
If id is an avatar, an empty string is returned.
127 Characters string
OBJECT_POS 3 Gets the prim's position in region coordinates. (36 Characters) vector
OBJECT_ROT 4 Gets the prim's rotation. (48 Characters) rotation
OBJECT_VELOCITY 5 Gets the object's velocity. (36 Characters) vector
OBJECT_OWNER 6 Gets an object's owner key.
If id is an avatar, that avatar's key is returned (which is the same as id).
If id is group-owned, a NULL_KEY is returned.
(36 Characters) key
OBJECT_GROUP 7 Gets the prims's group key.
If id is an avatar, a NULL_KEY is returned.
(36 Characters) key Group
OBJECT_CREATOR 8 Gets the prims's creator key.
If id is an avatar, a NULL_KEY is returned.
(36 Characters) key Creator
Max Lengths in parentheses represent how many characters required when it is typecast to a string.