Difference between revisions of "User:Toy Wylie/RLV Documentation/acceptpermission"

From Second Life Wiki
Jump to navigation Jump to search
m (corrected version)
m (removed usage which is now automated)
Line 2: Line 2:
|command=@acceptpermission|type=Exception
|command=@acceptpermission|type=Exception
|purpose=Removes the permission dialog that normally comes up when an object asks for taking over the user's controls or attach to the avatar. Permission will always be granted. Your script still needs to request permissions. It does not override a possible @denypermission rule.
|purpose=Removes the permission dialog that normally comes up when an object asks for taking over the user's controls or attach to the avatar. Permission will always be granted. Your script still needs to request permissions. It does not override a possible @denypermission rule.
|usage=@acceptpermission=add, @acceptpermission=rem
|version=1.16
|version=1.16
|seealso=[[User:Toy_Wylie/RLV_Documentation/denypermission|@denypermission]]
|seealso=[[User:Toy_Wylie/RLV_Documentation/denypermission|@denypermission]]

Revision as of 12:36, 6 July 2010


@acceptpermission

Type

Exception

Implemented

Implemented since RLV version 1.16

Usage

Purpose

Removes the permission dialog that normally comes up when an object asks for taking over the user's controls or attach to the avatar. Permission will always be granted. Your script still needs to request permissions. It does not override a possible @denypermission rule.


See Also

Example

Note: This script only works if it's owned by the person to attach to.

<lsl>default {

   on_rez(integer num)
   {
       llResetScript();
   }
   state_entry()
   {
       llOwnerSay("@acceptpermission=add");
   }
   touch_start(integer num)
   {
       if(llDetectedKey(0)==llGetOwner())
       {
           llRequestPermissions(llGetOwner(),PERMISSION_ATTACH);
       }
   }
   run_time_permissions(integer perms)
   {
       if(perms & PERMISSION_ATTACH)
       {
           llAttachToAvatar(ATTACH_RHAND);
       }
   }
}</lsl>