Difference between revisions of "AGENT BUSY"
Jump to navigation
Jump to search
(New page: {{#if: {{LSL_Constants/PrimitiveParams}} }}{{LSL Constant |name=AGENT_BUSY |type=integer |value=0x0800 |desc= |pa= |text= |pb= |examples |constants= <!--{{LSL ConstRow|CHANGED_SHAPE}}--> |...) |
m (<lsl> tag to <source>) |
||
(3 intermediate revisions by 3 users not shown) | |||
Line 1: | Line 1: | ||
{{LSL Constant | |||
|name=AGENT_BUSY | |name=AGENT_BUSY | ||
|type=integer | |type=integer | ||
|value=0x0800 | |value={{LSL Hex|0x0800}} | ||
|desc= | |desc= | ||
|pa= | |pa= | ||
|text= | |text= | ||
|pb= | |pb= | ||
|examples | |examples= | ||
<source lang="lsl2"> | |||
if (llGetAgentInfo( llGetOwner() ) & AGENT_BUSY) | |||
llSay(0, "Don't interrupt - I'm busy!"); | |||
</source> | |||
|constants= | |constants= | ||
<!--{{LSL ConstRow|CHANGED_SHAPE}}--> | <!--{{LSL ConstRow|CHANGED_SHAPE}}--> |
Latest revision as of 15:06, 22 January 2015
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
if (llGetAgentInfo( llGetOwner() ) & AGENT_BUSY)
llSay(0, "Don't interrupt - I'm busy!");