LlSetObjectDesc - Second Life Wiki

LlSetObjectDesc

From Second Life Wiki

(Redirected from LSL llSetObjectDesc)
Jump to: navigation, search

Contents

Description

Function: llSetObjectDesc( string desc );
271 Function ID
0.0 Delay
10.0 Energy

Sets the prims description

• string desc

Caveats

  • The object description is limited to 127 bytes, any string longer then that will be truncated.
  • According to VWR-437 if you set the description to longer then 256 bytes the object may no longer be rezzable. Use caution if using this field to store data.

Examples

//store the owner's name in the prim description
default
{
    touch_start(integer total_number)
    {
        string temp;
 
        temp = llKey2Name(llGetOwner());
 
        llSetObjectDesc(temp);
    }
}

See Also

Functions

•  llGetObjectDesc Gets the prim description.
•  llGetObjectName Gets the prim name.
•  llSetObjectName Sets the prim name.

Articles

•  Prim Attribute Overloading