Difference between revisions of "LlSameGroupOwner"

From Second Life Wiki
Jump to navigation Jump to search
(New page: {{LSL Function |func=llSameGroupOwner |sort=SameGroupOwner |func_id|mode=request|func_sleep=0.0|func_energy=10.0 |return_type=integer |p1_type=key |p1_name=agent |p1_desc=must be in the sa...)
 
m
Line 41: Line 41:
|also_articles
|also_articles
|notes
|notes
|cat1=Avatar
|cat2=Group
|cat3
|cat4
}}
}}

Revision as of 10:44, 9 July 2008

Emblem-important-yellow.png LSL Feature Request
The described function does not exist. This article is a feature request.

Summary

Function: integer llSameGroupOwner( key agent );
REQUEST Function ID
0.0 Forced Delay
10.0 Energy

Returns an integer boolean, that is TRUE if agent is owner of the same group than the object, otherwise FALSE

• key agent must be in the same sim and must carry the appropriate group tag

Also returns TRUE if the object is deeded to the group of which agent is an owner

Examples

<lsl>// Gives inventory object only to owners of the same group than the object default {

   touch_start(integer number)
   {
       for (; number >= 0; --number)
       {
           key avatar = llDetectedKey(number);
           if (llSameGroupOwner(avatar))
           {
             llGiveInventory(avatar, llGetInventoryName(INVENTORY_OBJECT, 0));
           }
           else
           {
             llSay(0, "You are not an owner of my group!"
           }
       }
   }
}</lsl>

See Also

Functions

•  llDetectedGroup Used in conjunction with detection events
•  llSameGroup
•  llSameGroupOfficer

Deep Notes

Search JIRA for related Issues

Signature

//function integer llSameGroupOwner( key agent );