Difference between revisions of "AGENT AUTOPILOT"

From Second Life Wiki
Jump to navigation Jump to search
m (<lsl> tag to <source>)
m (Replaced <source> with <syntaxhighlight>)
 
Line 12: Line 12:
|pb
|pb
|examples=
|examples=
<source lang="lsl2">
<syntaxhighlight lang="lsl2">
     if (llGetAgentInfo( llGetOwner() ) & AGENT_AUTOPILOT)     
     if (llGetAgentInfo( llGetOwner() ) & AGENT_AUTOPILOT)     
         llSay(0, "Oops, sorry, don't blame me, it was my auto-pilot!");
         llSay(0, "Oops, sorry, don't blame me, it was my auto-pilot!");
</source>
</syntaxhighlight>
|constants=
|constants=
{{LSL ConstRow|AGENT_FLYING}}
{{LSL ConstRow|AGENT_FLYING}}

Latest revision as of 09:53, 12 October 2023

Description

Constant: integer AGENT_AUTOPILOT = 0x2000;

The integer constant AGENT_AUTOPILOT has the value 0x2000

This value is set when the user selects "Go Here" on the ground, or uses the optional Double-Click Auto-Pilot feature.

Under Viewer 2.0 and later, it is also set when:

  • the user selects "Sit Here" on the ground.
  • an object is selected or edited, and that selection can trigger a control (CONTROL_ROT_RIGHT and CONTROL_ROT_LEFT can be activated when selecting an object near the far right or left edge of the screen).

Related Articles

Constants

•  AGENT_FLYING
•  AGENT_IN_AIR
•  AGENT_WALKING
•  AGENT_ALWAYS_RUN

Functions

•  llGetAgentInfo

Examples

    if (llGetAgentInfo( llGetOwner() ) & AGENT_AUTOPILOT)    
        llSay(0, "Oops, sorry, don't blame me, it was my auto-pilot!");

Deep Notes

History

Search JIRA for related Issues

Signature

integer AGENT_AUTOPILOT = 0x2000;