llLinksetDataWrite

From Second Life Wiki
Revision as of 12:32, 13 October 2022 by Rider Linden (talk | contribs) (Created page with "{{LSL_Function |func_sleep=0.0|func_energy=10.0 |func=llLinksetDataWrite |p1_type=string|p1_name=name|p1_desc=The name of the link set data key to be updated or created. |p2_t...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Summary

Function: llLinksetDataWrite( string name, string value );

The llLinksetDataWrite function creates or updates a key in the link set datastore, assigning it the string specified in the value parameter. If the value parameter is an empty string, the key is deleted.

When this function is called the linkset_data event is triggered in all scripts running in the link set with an action of LINKSETDATA_UPDATE, or LINKSETDATA_DELETE if the key value pair is deleted.

• string name The name of the link set data key to be updated or created.
• string value The value to assign to the named key

Examples

Deep Notes

Search JIRA for related Issues

Signature

function void llLinksetDataWrite( string name, string value );