Unofficial LSL Reference

[[user:sei:llsensor_research]]


Unofficial LSL reference

User Tools

Login

You are currently not logged in! Enter your authentication credentials below to log in. You need to have cookies enabled to log in.

Login

Forgotten your password? Get a new one: Set new password

This is an old revision of the document!


llSensor flag Types of objects that can be detected (with their llDetectedType)
0 Function silently fails (no event is triggered)
AGENT (1) Returns a llDetectedType of AGENT|ACTIVE if agent not sitting in an object
Returns a llDetectedType of AGENT|PASSIVE if agent sitting in an object, but not on ground
ACTIVE (2) Returns a llDetectedType of ACTIVE for unscripted physical objects that are moving
Returns a llDetectedType of ACTIVE|SCRIPTED for physical objects with active scripts (*), or scripted physical objects that are moving.
Returns a llDetectedType of PASSIVE|SCRIPTED for non-physical objects with active scripts (*)
AGENT|ACTIVE (3) Includes everything that AGENT and ACTIVE detect separately.
PASSIVE (4) Detects only the objects that ACTIVE doesn't detect.
Returns a llDetectedType of ACTIVE for physical non-moving unscripted objects.
Returns a llDetectedType of ACTIVE|SCRIPTED for physical non-moving objects with an inactive script (*).
Returns a llDetectedType of PASSIVE for non-physical unscripted objects.
Returns a llDetectedType of PASSIVE|SCRIPTED for non-physical objects with an inactive script (*).
AGENT|PASSIVE (5) Includes everything that AGENT and PASSIVE detect separately.
ACTIVE|PASSIVE (6) Includes every object (everything that PASSIVE and ACTIVE detect separately)
AGENT|ACTIVE|PASSIVE (7) Includes every object and agent (everything that each flag detects separately)
SCRIPTED (8) Like ACTIVE but excludes unscripted physical objects.
Returns a llDetectedType of PASSIVE|SCRIPTED for non-physical objects with an active script (*).
Returns a llDetectedType of ACTIVE|SCRIPTED for physical objects with active scripts (*), or scripted physical objects that are moving.
AGENT|SCRIPTED (9)
ACTIVE|SCRIPTED (10)
AGENT|ACTIVE|SCRIPTED (11)
Same as SCRIPTED. The AGENT and ACTIVE flags have no effect when combined with SCRIPTED.
PASSIVE|SCRIPTED (12) Returns a llDetectedType of PASSIVE|SCRIPTED for non-physical scripted objects (with scripts active or not)
Returns a llDetectedType of ACTIVE|SCRIPTED for physical scripted objects (with scripts active or not)
AGENT|PASSIVE|SCRIPTED (13)
ACTIVE|PASSIVE|SCRIPTED (14)
AGENT|ACTIVE|PASSIVE|SCRIPTED (15)
Same as PASSIVE|SCRIPTED. The AGENT and ACTIVE flags have no effect when combined with SCRIPTED.

(*) Active script: a script with an active llSetTimerEvent, llSensorRepeat, llListen (no matter if the listen is disabled by llListenControl), llTarget, llRotTarget and possibly more, or actively executing code at the time of scanning (e.g. in a tight loop, in llSleep, etc.)

Although not tested, presumably AGENT_BY_USERNAME works like AGENT with respect to the types of objects detected.