OsGetInventoryNames
From OpenSimulator
(Difference between revisions)
(Translated comments) |
|||
Line 4: | Line 4: | ||
|delay=0|function_syntax=osGetInventoryNames(integer type)<br> | |delay=0|function_syntax=osGetInventoryNames(integer type)<br> | ||
|ossl_example=<source lang="lsl"> | |ossl_example=<source lang="lsl"> | ||
− | // | + | // Example for osGetInventoryNames |
− | // | + | // This script uses the function osGetInventoryNames to return a list of inventory items by name |
− | // | + | // based on the inventory type (INVENTORY_ALL) |
− | // | + | // The found item names are output to owner chat |
− | // | + | // Define the inventory type constant |
integer INVENTORY_TYPE = INVENTORY_ALL; | integer INVENTORY_TYPE = INVENTORY_ALL; | ||
− | // Event handler, | + | // Event handler, that is executed on script start |
default | default | ||
{ | { | ||
state_entry() | state_entry() | ||
{ | { | ||
− | // | + | // Use osGetInventoryNames to fetch the list of inventory items by name |
list inventoryList = osGetInventoryNames(INVENTORY_TYPE); | list inventoryList = osGetInventoryNames(INVENTORY_TYPE); | ||
− | // | + | // Check if the list is empty |
if (llGetListLength(inventoryList) > 0) | if (llGetListLength(inventoryList) > 0) | ||
{ | { | ||
− | // | + | // Go through the list and output each item to chat |
integer numItems = llGetListLength(inventoryList); | integer numItems = llGetListLength(inventoryList); | ||
− | string itemNames = " | + | string itemNames = "Inventory item(s):\n"; |
integer i; | integer i; | ||
for (i = 0; i < numItems; ++i) | for (i = 0; i < numItems; ++i) | ||
Line 36: | Line 36: | ||
else | else | ||
{ | { | ||
− | // | + | // If the list is empty give indication as such |
− | llOwnerSay(" | + | llOwnerSay("Inventory is empty."); |
} | } | ||
} | } |
Revision as of 16:34, 26 February 2024
osGetInventoryNames(integer type)
| |
Return a list of items names by type (or INVENTORY_ALL) located in the prim inventory. | |
Threat Level | This function does not do a threat level check |
Permissions | Use of this function is always allowed by default |
Extra Delay | 0 seconds |
Example(s) | |
// Example for osGetInventoryNames // This script uses the function osGetInventoryNames to return a list of inventory items by name // based on the inventory type (INVENTORY_ALL) // The found item names are output to owner chat // Define the inventory type constant integer INVENTORY_TYPE = INVENTORY_ALL; // Event handler, that is executed on script start default { state_entry() { // Use osGetInventoryNames to fetch the list of inventory items by name list inventoryList = osGetInventoryNames(INVENTORY_TYPE); // Check if the list is empty if (llGetListLength(inventoryList) > 0) { // Go through the list and output each item to chat integer numItems = llGetListLength(inventoryList); string itemNames = "Inventory item(s):\n"; integer i; for (i = 0; i < numItems; ++i) { string itemName = llList2String(inventoryList, i); itemNames += itemName + "\n"; } llOwnerSay(itemNames); } else { // If the list is empty give indication as such llOwnerSay("Inventory is empty."); } } } | |
Notes | |
This function was added in 0.9.3.0 |