INVENTORY LANDMARK

From Second Life Wiki
Revision as of 08:52, 2 January 2012 by Shadow Siamendes (talk | contribs)
Jump to navigation Jump to search

Description

Constant: integer INVENTORY_LANDMARK = 3;

The integer constant INVENTORY_LANDMARK has the value 3

Used with Inventory functions and specifies inventory items of LANDMARK type will be retrieved by the function.

Examples

<lsl>//Gives inventory only to agents with the same active group default {

   touch_start(integer total_number)
   {
       integer number = 0;
       do
       {
           if (llDetectedGroup(number)) //same as llSameGroup(llDetectedKey(number)) (with llSameGroup, detected must be in the sim)
               llGiveInventory(llDetectedKey(number), llGetInventoryName(INVENTORY_LANDMARK,0));
           else
               llSay(0, "Wrong active group!");
       }while(total_number > ++number);
   }

}</lsl>

Deep Notes

Search JIRA for related Issues

Signature

integer INVENTORY_LANDMARK = 3;