G Geral

Give Object To Same Group Script

Give Object To Same Group Script
Detalhes
Destaques
Conteúdo
Resenhas

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

Veja o item no Second Life
Classificação média: estrela cheia estrela cheia estrela cheia meia estrela estrela vazia
  • 5 estrela(s):
  • 4 estrela(s):
  • 3 estrela(s):
  • 2 estrela(s):
  • 1 estrela(s):
Does not work
estrela cheia estrela vazia estrela vazia estrela vazia estrela vazia Postado(s) 06/11/2018 por malagabi

Don't waste your money

Esta resenha foi útil?
DOESNT WORK
estrela cheia estrela vazia estrela vazia estrela vazia estrela vazia Postado(s) 09/09/2016 por Kirzatalia

doesnt work at all!

Esta resenha foi útil?
:(
estrela cheia estrela vazia estrela vazia estrela vazia estrela vazia Postado(s) 27/02/2015 por scarini

doesn't work

Esta resenha foi útil?
complete waste of time
estrela cheia estrela vazia estrela vazia estrela vazia estrela vazia Postado(s) 07/01/2012 por DizWunzaKilla

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

Esta resenha foi útil?
thank you
estrela cheia estrela cheia estrela cheia estrela cheia estrela cheia Postado(s) 03/12/2010 por Lili Bristol

thank you for this script

Esta resenha foi útil?
estrela cheia estrela vazia estrela vazia estrela vazia estrela vazia Postado(s) 12/09/2009 por 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!");
}
}
}

Esta resenha foi útil?