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

From Second Life Wiki
Jump to navigation Jump to search
(Created page with '{{Template:RLV_Documentation/Command |command=@sendchannel_sec|type=Restriction |usage=@sendchannel_sec[:<channel>]=<y/n> |purpose= Complimentary of @sendchat, this command preve...')
 
(fixed source, clarification)
Line 1: Line 1:
{{Template:RLV_Documentation/Command
{{Template:RLV_Documentation/Command
|command=@sendchannel_sec|type=Restriction
|command=@sendchannel_sec|type=Restriction
|usage=@sendchannel_sec[:<channel>]=<y/n>
|usage=@sendchannel_sec=<y/n>
|purpose= Complimentary of @sendchat, this command prevents the user from sending messages on non-public channels. If channel is specified, it becomes an exception to the aforementioned restriction. It does not prevent the viewer automatic replies like @version=nnnn, @getstatus=nnnn etc. This particular command only accepts exceptions issued from the same object, opposed to its non-secure version which accepts exceptions from any other object.
|purpose=Complimentary of @sendchat, this command prevents the user from sending messages on non-public channels. It does not prevent the viewer automatic replies like @version=nnnn, @getstatus=nnnn etc. This particular command only allows exceptions issued from the same object, opposed to its non-secure version which allows exceptions from any other object.
|version=1.10 (1.21?)
|version=1.10 (1.21?)
|seealso=sendchannel
|seealso=sendchannel
Line 19: Line 19:
         {
         {
             listenHandle = llListen(11223344, "", llGetOwner(), "");
             listenHandle = llListen(11223344, "", llGetOwner(), "");
             llOwnerSay("@redirchat:11223344=add,sendchannel_sec:11223344=n");
             llOwnerSay("@redirchat:11223344=add,sendchannel_sec=n,sendchannel:11223344=add");
             llSay(0, "Chat redirected to channel 11223344, and all other channels are restricted.");
             llSay(0, "Chat redirected to channel 11223344, and all other channels are restricted.");
         }
         }
Line 25: Line 25:
         {
         {
             llListenRemove(listenHandle);
             llListenRemove(listenHandle);
             llOwnerSay("@redirchat:11223344=rem,sendchannel_sec:11223344=y");
             llOwnerSay("@redirchat:11223344=rem,sendchannel_sec=n,sendchannel:11223344=rem");
             llSay(0, "Chat back on public channel, and all channels are again free.");
             llSay(0, "Chat back on public channel, and all channels are again free.");
         }
         }

Revision as of 13:10, 7 July 2010


@sendchannel sec

Type

Restriction

Implemented

Implemented since RLV version 1.10 (1.21?)

Usage

@sendchannel_sec=<y/n>

Purpose

Complimentary of @sendchat, this command prevents the user from sending messages on non-public channels. It does not prevent the viewer automatic replies like @version=nnnn, @getstatus=nnnn etc. This particular command only allows exceptions issued from the same object, opposed to its non-secure version which allows exceptions from any other object.


See Also

Example

<lsl>integer listenHandle;

integer redirect = FALSE;

default {

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

       redirect = 1-redirect;

       if(redirect)
       {
           listenHandle = llListen(11223344, "", llGetOwner(), "");
           llOwnerSay("@redirchat:11223344=add,sendchannel_sec=n,sendchannel:11223344=add");
           llSay(0, "Chat redirected to channel 11223344, and all other channels are restricted.");
       }
       else
       {
           llListenRemove(listenHandle);
           llOwnerSay("@redirchat:11223344=rem,sendchannel_sec=n,sendchannel:11223344=rem");
           llSay(0, "Chat back on public channel, and all channels are again free.");
       }
   }

   listen(integer channel, string name, key id, string message)
   {
       llSay(0, name + ": " + message);
   }

}

</lsl>