G 全般

Give Object To Same Group Script

Give Object To Same Group Script
詳細
設備
コンテンツ
レビュー

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

Second Life の商品を表示
評価平均: 塗りつぶしの星 塗りつぶしの星 塗りつぶしの星 半分の星 空の星
  • 5 スター:
  • 4 スター:
  • 3 スター:
  • 2 スター:
  • 1 スター:
Does not work
塗りつぶしの星 空の星 空の星 空の星 空の星 掲載済み 2018/11/06 : malagabi

Don't waste your money

このレビューはお役に立ちましたか?
DOESNT WORK
塗りつぶしの星 空の星 空の星 空の星 空の星 掲載済み 2016/09/09 : Kirzatalia

doesnt work at all!

このレビューはお役に立ちましたか?
:(
塗りつぶしの星 空の星 空の星 空の星 空の星 掲載済み 2015/02/27 : scarini

doesn't work

このレビューはお役に立ちましたか?
complete waste of time
塗りつぶしの星 空の星 空の星 空の星 空の星 掲載済み 2012/01/07 : DizWunzaKilla

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

このレビューはお役に立ちましたか?
thank you
塗りつぶしの星 塗りつぶしの星 塗りつぶしの星 塗りつぶしの星 塗りつぶしの星 掲載済み 2010/12/03 : Lili Bristol

thank you for this script

このレビューはお役に立ちましたか?
塗りつぶしの星 空の星 空の星 空の星 空の星 掲載済み 2009/09/12 : 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!");
}
}
}

このレビューはお役に立ちましたか?