User:Toy Wylie/RLV Documentation/recvemote

From Second Life Wiki
Jump to navigation Jump to search


@recvemote

Type

# Restriction
  1. Exception

Implemented

Implemented since RLV version 1.19

Usage

# @recvemote=<y/n>
  1. @recvemote:<UUID>=<add/rem>

Purpose

# When prevented (@recvemote=n), emotes will be discarded.
  1. Exceptions can be made too by using @recvemote:<UUID>=<rem/add>.


Example

<lsl>default

{

   touch_start(integer total_number)
   {
       if (llDetectedKey(0) != llGetOwner()) return;

       llSay(0, "/me is hiding the chat, will then send a test message.");
       llSleep(0.5);
       llOwnerSay("@recvemote=n");
       llSay(0, "/me sends the test message.");
       llSleep(0.5);
       llOwnerSay("@recvemote=y");
       llSay(0, "/me enables chat once again readable, but hiding the chat again, but this time, add an exception for this prim.");
       llSleep(0.5);
       llOwnerSay("@recvemote=n,recvemote:" + (string)llGetKey() + "=add");
       llSay(0, "/me sends another test message with the exception added.");
       llOwnerSay("@recvemote=y,recvemote:" + (string)llGetKey() + "=rem");
       llSay(0, "/me lift the restrictions.");
   }

}

</lsl>