Afro Relay

From Pool's Closed Wiki
Jump to: navigation, search

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>