llGetRegionAgentCount

Function: integer llGetRegionAgentCount( ); Returns an integer that is the number of avatars in the region. Caveats The value returned by this function is technically the average number of agents who were in the region for the past second, rounded to the nearest...

llDialog

llDialog(key id, string message, list buttons, integer chat_channel) Shows the user specified by id a popup dialog box (in the upper right corner of their viewer window)...

Agent and Avatar

The user’s presence in Opensim is represented by two entities: an agent and an avatar. An agent is a client’s presence within a simulator. All users connect to a sim as an agent. An agent is not an avatar, though it is represented on the client by one. An...

String

A string is a sequence of characters limited in length only by available memory. Strings are enclosed in quotation marks (“). LSL uses UTF-8 for its encoding standard for strings. Example: string foo = “bar”; // this defines a string named...

List

Instead of arrays, LSL uses lists. The list type is exactly what it sounds like: a heterogeneous list of the other data types. Lists are created via comma-separated values (CSV) of the other data types. enclosed by square brackets: “[” and “]”....