LlListenRemove
From Second Life Wiki
| 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.

