OsGetInventoryLastOwner
From OpenSimulator
(Difference between revisions)
(Update Script) |
|||
| Line 4: | Line 4: | ||
|delay=0 | |delay=0 | ||
|function_syntax=key osGetInventoryLastOwner(string itemName_or_itemId) | |function_syntax=key osGetInventoryLastOwner(string itemName_or_itemId) | ||
| + | |description=Returns the id(key) of the last owner of inventory item with id "itemName_or_itemId" if that parameter is a valid key or with that name if not. | ||
|ossl_example=<source lang="lsl"> | |ossl_example=<source lang="lsl"> | ||
| + | // | ||
| + | // osGetInventoryLastOwner Script Exemple | ||
| + | // | ||
| + | |||
default | default | ||
{ | { | ||
| + | state_entry() | ||
| + | { | ||
| + | llSay(PUBLIC_CHANNEL, "Drop a item to this primitive's inventory to see osGetInventoryLastOwner usage."); | ||
| + | llAllowInventoryDrop(TRUE); | ||
| + | } | ||
| − | + | changed(integer change) | |
| − | changed(integer | + | |
{ | { | ||
| − | if ( | + | if (change & CHANGED_INVENTORY) |
{ | { | ||
| + | llSay(PUBLIC_CHANNEL, "The inventory has changed ..."); | ||
| + | } | ||
| + | |||
| + | if (change & CHANGED_ALLOWED_DROP) | ||
| + | { | ||
| + | llSay(PUBLIC_CHANNEL, "An item has been dropped in this primitive's inventory"); | ||
| + | |||
key id = osGetLastChangedEventKey(); | key id = osGetLastChangedEventKey(); | ||
| − | if(id != "") | + | |
| + | if (id != "") | ||
{ | { | ||
| − | |||
| − | |||
| − | |||
key who = osGetInventoryLastOwner(id); | key who = osGetInventoryLastOwner(id); | ||
| − | llSay( | + | llSay(PUBLIC_CHANNEL, "I got inventory dropped item " + (string)id); |
| + | llSay(PUBLIC_CHANNEL, "Item dropped by "+ (string)who + " (" + llKey2Name(who) + ")"); | ||
| + | llSay(PUBLIC_CHANNEL, "The item name is " + osGetInventoryName(id)); | ||
| + | llSay(PUBLIC_CHANNEL, "The item description is " + osGetInventoryDesc(id)); | ||
| + | } | ||
| + | |||
| + | else | ||
| + | { | ||
| + | llSay(PUBLIC_CHANNEL, "This item id is empty ..."); | ||
} | } | ||
} | } | ||
| − | + | } | |
} | } | ||
</source> | </source> | ||
| − | |||
|additional_info=This function was added in 0.9.0.1 Dev | |additional_info=This function was added in 0.9.0.1 Dev | ||
Implemented February, 22 2019 in GIT# bd27573130d4a40d678c81c687591708ab4e4f34 | Implemented February, 22 2019 in GIT# bd27573130d4a40d678c81c687591708ab4e4f34 | ||
}} | }} | ||
Revision as of 08:06, 2 December 2020
key osGetInventoryLastOwner(string itemName_or_itemId)
| |
| Returns the id(key) of the last owner of inventory item with id "itemName_or_itemId" if that parameter is a valid key or with that name if not. | |
| 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) | |
// // osGetInventoryLastOwner Script Exemple // default { state_entry() { llSay(PUBLIC_CHANNEL, "Drop a item to this primitive's inventory to see osGetInventoryLastOwner usage."); llAllowInventoryDrop(TRUE); } changed(integer change) { if (change & CHANGED_INVENTORY) { llSay(PUBLIC_CHANNEL, "The inventory has changed ..."); } if (change & CHANGED_ALLOWED_DROP) { llSay(PUBLIC_CHANNEL, "An item has been dropped in this primitive's inventory"); key id = osGetLastChangedEventKey(); if (id != "") { key who = osGetInventoryLastOwner(id); llSay(PUBLIC_CHANNEL, "I got inventory dropped item " + (string)id); llSay(PUBLIC_CHANNEL, "Item dropped by "+ (string)who + " (" + llKey2Name(who) + ")"); llSay(PUBLIC_CHANNEL, "The item name is " + osGetInventoryName(id)); llSay(PUBLIC_CHANNEL, "The item description is " + osGetInventoryDesc(id)); } else { llSay(PUBLIC_CHANNEL, "This item id is empty ..."); } } } } | |
| Notes | |
| This function was added in 0.9.0.1 Dev
Implemented February, 22 2019 in GIT# bd27573130d4a40d678c81c687591708ab4e4f34 | |