Difference between revisions of "Afro Relay"
From Pool's Closed Wiki
(New page: A simple script to relay commands over and entire region. Good for remotely controlling scripts or to avoid channels often monitored by HUDs. === Afro Relay === <lsl> default { state_...) |
(No difference)
|
Revision as of 04:26, 16 May 2009
A simple script to relay commands over and entire region. Good for remotely controlling scripts or to avoid channels often monitored by HUDs.
Afro Relay
<lsl> default {
state_entry() { key id = llGetOwner(); llListen(99999,"",llGetOwner(),""); }
listen(integer chan, string name, key id, string message) { llRegionSay(-6666, message); }
} </lsl>