0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Group Join のスクリプト

Posted at
GroupJoin.lsl

findgroupkey()
{
    list TempList = llGetObjectDetails(llGetKey(), [OBJECT_GROUP]);
    key groupkey = llList2Key(TempList, 0);
    if (groupkey == NULL_KEY)
    {
        llSay(0, "グループキーがみあたらんぞよ。。。");
    }
    else
    {
        llSay(0, "こちらをクリックしてグループにご参加ください。\n" + "secondlife:///app/group/" + (string) groupkey + "/about");
    }
}
 
default
{
    state_entry()
    {
        llSetText("Touch to Join", <1, 1, 1>, 1.0); // white and opaque floating text, optional
        findgroupkey();
    }
 
    touch_start(integer total_number)
    {
        findgroupkey();
    }
}

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?