Advertisement
CidJacobs

Untitled

Dec 7th, 2024
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. touch_start(integer num_detected)
  2.     {
  3.         string thisScript = llGetScriptName();
  4.         list inventoryItems;
  5.         integer inventoryNumber = llGetInventoryNumber(INVENTORY_ALL);
  6.  
  7.         integer index;
  8.         for ( ; index < inventoryNumber; ++index )
  9.         {
  10.             string itemName = llGetInventoryName(INVENTORY_ALL, index);
  11.  
  12.             if (itemName != thisScript)
  13.             {
  14.                 if (llGetInventoryPermMask(itemName, MASK_OWNER) & PERM_COPY)
  15.                 {
  16.                     inventoryItems += itemName;
  17.                 }
  18.                 else
  19.                 {
  20.                     llSay(0, "Unable to copy the item named '" + itemName + "'.");
  21.                 }
  22.             }
  23.         }
  24.  
  25.         if (inventoryItems == [] )
  26.         {
  27.             llSay(0, "No copiable items found, sorry.");
  28.         }
  29.         else
  30.         {
  31.             llGiveInventoryList(llDetectedKey(0), llGetObjectName(), inventoryItems);    // 3.0 seconds delay
  32.         }
  33.     }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement