Difference between revisions of "LlRemoveInventory"

From Second Life Wiki
Jump to navigation Jump to search
(<lsl> example)
Line 8: Line 8:
|caveats=*If the current script is removed it will continue to run for a short period of time after this call.
|caveats=*If the current script is removed it will continue to run for a short period of time after this call.
|constants
|constants
|examples=Remove the current script from the object
|examples=
<Pre>
<lsl>// Remove the current script from the object
 
default
default
{
{
Line 16: Line 17:
         llRemoveInventory(llGetScriptName());
         llRemoveInventory(llGetScriptName());
     }
     }
}
}</lsl>
</Pre>
|helpers
|helpers
|also_functions
|also_functions

Revision as of 23:05, 3 March 2008

Summary

Function: llRemoveInventory( string item );

Remove the named inventory item

• string item an item in the inventory of the prim this script is in

Caveats

  • If item is missing from the prim's inventory then an error is shouted on DEBUG_CHANNEL.
  • If the current script is removed it will continue to run for a short period of time after this call.
All Issues ~ Search JIRA for related Bugs

Examples

<lsl>// Remove the current script from the object

default {

   state_entry()
   {
       llRemoveInventory(llGetScriptName());
   }
}</lsl>

Deep Notes

Search JIRA for related Issues

Signature

function void llRemoveInventory( string item );