OsGetInventoryDesc
From OpenSimulator
(Difference between revisions)
(Created page with "{{osslfunc |threat_level=None |function_syntax=string osGetInventoryDesc(string name) |ossl_example=<source lang="lsl"> default { state_entry() { string name= llGetI...") |
Revision as of 01:23, 21 March 2012
string osGetInventoryDesc(string name)
| |
Returns a string that is the description of inventory item "name"
Note: Implemented March, 17 2012 in GIT# 4a57112f19c0e4eb3545fdc0cbbbd68ce46c6eaa | |
Threat Level | None |
Permissions | No permissions specified |
Extra Delay | No function delay specified |
Example(s) | |
default { state_entry() { string name= llGetInventoryName( INVENTORY_LANDMARK, 0 ); string decription = osGetInventoryDesc(name) } } |