G General

Give Object To Same Group Script

Give Object To Same Group Script
Details
Features
Contents
Reviews

Give Object To Same Group Script

This script will give inventory to avatars with the same active group as the object being clicked. Great for group gift freebies.

Please note all scripts are delivered contained within a notecard

See item in Second Life
Average rating: full star full star full star half star empty star
  • 5 star:
  • 4 star:
  • 3 star:
  • 2 star:
  • 1 star:
Does not work
full star empty star empty star empty star empty star Posted November 06, 2018 by malagabi

Don't waste your money

Was this review helpful?
DOESNT WORK
full star empty star empty star empty star empty star Posted September 09, 2016 by Kirzatalia

doesnt work at all!

Was this review helpful?
:(
full star empty star empty star empty star empty star Posted February 27, 2015 by scarini

doesn't work

Was this review helpful?
complete waste of time
full star empty star empty star empty star empty star Posted January 07, 2012 by DizWunzaKilla

only reason im leaving this review is in the hope people read before they buy.

Was this review helpful?
thank you
full star full star full star full star full star Posted December 03, 2010 by Lili Bristol

thank you for this script

Was this review helpful?
full star empty star empty star empty star empty star Posted September 12, 2009 by Kianta Silverfall

It's good to copy and paste the script of Second life, but the better way is to copy the good things......

// Gives inventory object only to agents with the same active group
default
{
touch_start(integer total_number)
{
integer i;

for (i = 0; i < total_number; i++)
{
if (llSameGroup(llDetectedKey(i))) // same as llDetectedGroup(i) (with llDetectedGroup, detected does not need to be in the sim)
llGiveInventory(llDetectedKey(i), llGetInventoryName(INVENTORY_OBJECT, 0));
else
llSay(0, "Wrong active group!");
}
}
}

Was this review helpful?