AGENT TYPING: Difference between revisions
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> | |||
// This is a code fragment only | |||
if (llGetAgentInfo( llGetOwner() ) & AGENT_AWAY) | |||
llSay(0, "Oh my poor fingers"); | |||
</lsl> | |||
|constants= | |constants= | ||
<!--{{LSL ConstRow|CHANGED_SHAPE}}--> | <!--{{LSL ConstRow|CHANGED_SHAPE}}--> | ||
Revision as of 05:32, 23 December 2013
| 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
<lsl>
// This is a code fragment only
if (llGetAgentInfo( llGetOwner() ) & AGENT_AWAY)
llSay(0, "Oh my poor fingers");
</lsl>