Difference between revisions of "AGENT TYPING"
Jump to navigation
Jump to search
Vex Streeter (talk | contribs) (fix name) |
m (<lsl> tag to <source>) |
||
(2 intermediate revisions by 2 users not shown) | |||
Line 2: | Line 2: | ||
|name=AGENT_TYPING | |name=AGENT_TYPING | ||
|type=integer | |type=integer | ||
|value=0x0200 | |value={{LSL Hex|0x0200}} | ||
|desc= | |desc= | ||
|pa= | |pa= | ||
|text= | |text= | ||
|pb= | |pb= | ||
|examples | |examples= | ||
<source lang="lsl2"> | |||
// This is a code fragment only | |||
if (llGetAgentInfo( llGetOwner() ) & AGENT_AWAY) | |||
llSay(0, "Oh my poor fingers"); | |||
</source> | |||
|constants= | |constants= | ||
<!--{{LSL ConstRow|CHANGED_SHAPE}}--> | <!--{{LSL ConstRow|CHANGED_SHAPE}}--> |
Latest revision as of 15:10, 22 January 2015
LSL Portal | Functions | Events | Types | Operators | Constants | Flow Control | Script Library | Categorized Library | Tutorials |
Description
Constant: integer AGENT_TYPING = 0x0200;The integer constant AGENT_TYPING has the value 0x0200
Caveats
Related Articles
Functions
• | llGetAgentInfo |
Examples
// This is a code fragment only
if (llGetAgentInfo( llGetOwner() ) & AGENT_AWAY)
llSay(0, "Oh my poor fingers");