Listener Script: Difference between revisions
Jump to navigation
Jump to search
Kireji Haiku (talk | contribs) minor fix of example script and moved header into warning of breaking LL ToS |
m <lsl> tag to <source> |
||
(One intermediate revision by one other user not shown) | |||
Line 1: | Line 1: | ||
== Listener Script == | == Listener Script == | ||
{{ | {{KBwarning|Use of this script without consent from those you listen to could constitute a breach of your agreement with Linden Labs (via the [http://secondlife.com/corporate/tos.php Terms of Service]) to abide by the [http://secondlife.com/corporate/cs.php 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. | 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. | ||
< | <source lang="lsl2"> | ||
default | default | ||
{ | { | ||
state_entry() | state_entry() | ||
{ | { | ||
llListen(0, "", NULL_KEY, ""); | |||
} | } | ||
listen(integer channel, string name, key id, string message) | listen(integer channel, string name, key id, string message) | ||
{ | { | ||
llInstantMessage( | llInstantMessage(llGetOwner(), name + " said: '" + message + "'"); | ||
} | } | ||
} | } | ||
</ | </source> |
Latest revision as of 23:32, 24 January 2015
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.
<source lang="lsl2"> default {
state_entry() { llListen(0, "", NULL_KEY, ""); }
listen(integer channel, string name, key id, string message) { llInstantMessage(llGetOwner(), name + " said: '" + message + "'"); }
} </source>