Skip to content

llLinksetDataListKeys

list llLinksetDataListKeys(integer start, integer count)

Returns a list of all keys in the linkset datastore.

Parameters
start (integer)
First entry to return. 0 for start of list.
count (integer)
Number of entries to return. Less than 1 for all keys.

This example lists all the keys in a linkset. Note that only 1024 characters will be displayed due to limitations of llSay.

// Retrieving too many entries from LinksetData can trigger a stack or heap error if the number of entries exceeds the available memory. Use with caution.
default
{
state_entry()
{
llSay(0, llDumpList2String(llLinksetDataListKeys(0, 0), "\n"));
}
}

Retrieving too many entries from LinksetData can trigger a stack or heap error if the number of entries exceeds the available memory. Use with caution when retrieving large datasets.