Difference between revisions of "LlAgentInExperience"

From Second Life Wiki
Jump to navigation Jump to search
m
m
Line 13: Line 13:
|also_functions=
|also_functions=
*[[llGetExperienceDetails]]
*[[llGetExperienceDetails]]
|examples=<lsl>default
|examples=<lsl>
  {
default
      touch_start(integer total_number)
{
      {
touch_start(integer total_number)
          if(llAgentInExperience(llDetectedKey(0)))
{
          {
if(llAgentInExperience(llDetectedKey(0)))
              llOwnerSay(llDetectedName(0)+ " is not in my experience");
{
              llRequestExperiencePermissions(llDetectedKey(0), "");
llOwnerSay(llDetectedName(0)+ " is in my experience");
          }
}
          else
else
          {
{
              llOwnerSay(llDetectedName(0)+ " is in my experience");
llOwnerSay(llDetectedName(0)+ " is not in my experience");
          }
}
      }  
}  
  }</lsl>
}</lsl>
|cat1=Experience
|cat1=Experience
}}
}}

Revision as of 09:02, 20 July 2014

Summary

Function: integer llAgentInExperience( key agent );

Determines whether or not the specified agent is in the script's experience.
Returns a boolean (an integer) that is TRUE if the agent is in the experience and the experience can run in the current region.

• key agent avatar UUID that is in the same region to query.

Examples

<lsl> default { touch_start(integer total_number) { if(llAgentInExperience(llDetectedKey(0))) { llOwnerSay(llDetectedName(0)+ " is in my experience"); } else { llOwnerSay(llDetectedName(0)+ " is not in my experience"); } }

}</lsl>

See Also

Deep Notes

Search JIRA for related Issues

Signature

function integer llAgentInExperience( key agent );