User:Toy Wylie/RLV Documentation/sendchannel
Jump to navigation
Jump to search
@sendchannel
Type
# Restriction
- Exception
Implemented
Implemented since RLV version 1.10
Usage
# @sendchannel=<y/n>
- @sendchannel:<channel number>=<add/rem>
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.
- You can also set an exception to the aforementioned restriction for a given channel.
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=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=y,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>