LlListenRemove
From Second Life Wiki
| LSL Portal | | | Functions | | | Events | | | Types | | | Operators | | | Constants | | | Flow Control | | | Script Library | | | Tutorials |
Function: llListenRemove( integer number );
Caveats
- On state change or script reset all listens are removed automaticaly.
- A state change can be used as a shortcut to releasing all listens in the script.
- No error is thrown if number has already been released or is invalid.
Examples
integer olf; default { //Repeats one line of text then stops listening state_entry() { olf = llListen(0, "", llGetOwner(), ""); } listen(integer channel, string name, key id, string message) { llOwnerSay(message); llListenRemove(olf); } }

