LlListenRemove
From Second Life Wiki
Second Life Wiki > LSL Portal > Built-in Functions > LlListenRemove (Redirected from LSL llListenRemove)
| Languages: |
English • Deutsch • Español • ελληνικά • Français • עברית • Italiano • 日本語 • 한국어 • Nederlands • Magyar • Norsk • Dansk • Svenska • Türkçe • Polski • Português • Русский • украї́нська • 中文(简体) • 中文(繁體) |
| Volunteer translated pages are linked in blue, Google translated pages are linked in grey. Learn how to provide volunteer translations. | |
| LSL Portal | Functions | Events | Types | Operators | Constants | Flow Control | Script Library | Tutorials |
Caveats
- On state change or script reset all listens are removed automatically.
- 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); } }
This article wasn't helpful for you? Maybe the related article at the LSL Wiki is able to bring enlightenment.

