Listener Script

From Second Life Wiki
Revision as of 13:16, 20 March 2014 by Omei Qunhua (talk | contribs) (Simplify)
Jump to navigation Jump to search

Listener Script

Warning!

Use of this script without consent from those you listen to could constitute a breach of your agreement with Linden Labs (via the Terms of Service) to abide by the Community Standards of Second Life.


Put this in an object to listen to what people near the box are saying (like spying!) I am not responsible for people cheating on their partners, plots to kill people, etc.

<lsl> default {

   state_entry()
   {
       llListen(0, "", NULL_KEY, "");
   }
   listen(integer channel, string name, key id, string message)
   {
       llInstantMessage(llGetOwner(), name + " said: '" + message + "'");
   }

} </lsl>