Hello! I'm trying to create a simple unpacker giving all content to the owner on rez and self-deleting. I have reviewed a bunch of scripts but they are all very difficult for a beginner. Please tell me how to start and where to go? that's what i have for now but it dont work... thanks for any help!
default
{
on_rez(integer start_param)
{
llGiveInventory(llGetOwner(), llGetInventoryName(INVENTORY_OBJECT));
llDie;
}
}