Basic Second Life scripts: Named specific item inventory giver.

March 7, 2024

Don’t you hate it when the simplest things take an hour to find an answer to because it’s so simple nobody bothers to give you an answer?

default
{
    touch_start(integer total_number)
    {  
       //gives a NAMED object, notecard, etc from object inventory.
       llGiveInventory(llDetectedKey(0), "Name of The Thing"); 
       llGiveInventory(llDetectedKey(0), "Name of Another Thing"); 
    }
}

Comments are closed.