OsGetInventoryDesc
From OpenSimulator
(Difference between revisions)
m (Added permissions and delay information) |
m (Added note stating which version of OpenSim introduced this function) |
||
Line 15: | Line 15: | ||
</source> | </source> | ||
|description=Returns a string that is the description of inventory item "name" | |description=Returns a string that is the description of inventory item "name" | ||
− | + | |additional_info=This function was added in 0.7.4-post-fixes | |
− | + | Implemented March, 17 2012 in GIT# 4a57112f19c0e4eb3545fdc0cbbbd68ce46c6eaa | |
− | + | ||
}} | }} |
Revision as of 08:38, 15 October 2018
string osGetInventoryDesc(string name)
| |
Returns a string that is the description of inventory item "name" | |
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) | |
default { state_entry() { string name= llGetInventoryName( INVENTORY_LANDMARK, 0 ); string decription = osGetInventoryDesc(name) } } | |
Notes | |
This function was added in 0.7.4-post-fixes
Implemented March, 17 2012 in GIT# 4a57112f19c0e4eb3545fdc0cbbbd68ce46c6eaa |