Difference between revisions of "AGENT BUSY"
Jump to navigation
Jump to search
m (hex) |
Omei Qunhua (talk | contribs) (add example) |
||
Line 7: | Line 7: | ||
|text= | |text= | ||
|pb= | |pb= | ||
|examples | |examples= | ||
<lsl> | |||
if (llGetAgentInfo( llGetOwner() ) & AGENT_BUSY) | |||
llSay(0, "Don't interrupt - I'm busy!"); | |||
</lsl> | |||
|constants= | |constants= | ||
<!--{{LSL ConstRow|CHANGED_SHAPE}}--> | <!--{{LSL ConstRow|CHANGED_SHAPE}}--> |
Revision as of 03:53, 23 December 2013
LSL Portal | Functions | Events | Types | Operators | Constants | Flow Control | Script Library | Categorized Library | Tutorials |
Description
Constant: integer AGENT_BUSY = 0x0800;The integer constant AGENT_BUSY has the value 0x0800
Caveats
Related Articles
Functions
• | llGetAgentInfo |
Examples
<lsl>
if (llGetAgentInfo( llGetOwner() ) & AGENT_BUSY) llSay(0, "Don't interrupt - I'm busy!");
</lsl>