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_...) |
|||
Line 17: | Line 17: | ||
} | } | ||
</lsl> | </lsl> | ||
+ | |||
+ | [[Category:Scripts]] |
Latest revision as of 05:13, 10 July 2010
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>