This commit is contained in:
Fred Beckhusen
2015-08-07 15:34:30 -05:00
parent ce47ec2f3e
commit fde850293c
8080 changed files with 0 additions and 2443112 deletions

View File

@@ -1,35 +0,0 @@
// :CATEGORY:Messaging
// :NAME:Broadcaster_Script
// :AUTHOR:Anonymous
// :CREATED:2010-01-10 05:20:56.000
// :EDITED:2013-09-18 15:38:49
// :ID:117
// :NUM:176
// :REV:1.0
// :WORLD:Second Life
// :DESCRIPTION:
// Broadcaster Script.lsl
// :CODE:
integer inchan = 13 ; // Input channel
integer bchan = -123456 ; // "Secret" channel/frequency message is sent on.
default
{
state_entry()
{
llListen(inchan,"","","");
// listens for just the owner, on channel 0
}
listen(integer chan, string name, key id, string mess)
{
if (id == llGetOwner())
{
llShout(bchan,llKey2Name(llGetOwner())+"> "+mess);
llOwnerSay(llKey2Name(llGetOwner())+"> "+mess);
}
}
}
// END //