OsGetInventoryName

From OpenSimulator

Jump to: navigation, search
string osGetInventoryName(key itemId)
Returns a string that is the name of inventory item
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)
//
// osGetInventoryName Script Exemple
// Author: djphil
//
 
default
{
    state_entry()
    {
        llSay(PUBLIC_CHANNEL, "Touch me to see osGetInventoryName usage.");
    }
 
    touch_start(integer number)
    {
        key ItemKey = osGetInventoryItemKey("MyItemName");
 
        if (ItemKey != NULL_KEY)
        {
            llSay(PUBLIC_CHANNEL, "Item name is " + osGetInventoryName(ItemKey));
        }
 
        else
        {
            llSay(PUBLIC_CHANNEL, "The item key is a NULL_KEY, item not found or owner has no rights ...");
        }
    }
}
Notes
This function was added in 0.9.1.0 Dev

Implemented February, 22 2019 in GIT# bd27573130d4a40d678c81c687591708ab4e4f34


See Also

Personal tools
General
About This Wiki