Difference between revisions of "LlListenRemove"

From Second Life Wiki
Jump to navigation Jump to search
m
Line 6: Line 6:
|return_text
|return_text
|spec
|spec
|caveats=*On [[state]] change or script reset all listens are released.
|caveats=*On [[state]] change or script reset all listens are removed.
**A state change can be used as a shortcut to releasing listens.
**A state change can be used as a shortcut to releasing listens.
|constants
|constants

Revision as of 18:36, 5 July 2007

Summary

Function: llListenRemove( integer number );

Removes listen event callback number

• integer number

Caveats

  • On state change or script reset all listens are removed.
    • A state change can be used as a shortcut to releasing listens.
All Issues ~ Search JIRA for related Bugs

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)
    {
        llSay(0, message);
        llListenRemove(olf);
    }
}

See Also

Events

• listen

Functions

•  llListen
•  llListenControl

Deep Notes

Search JIRA for related Issues

Signature

function void llListenRemove( integer number );