A B C D E F I J K L M N O R S T U V W
Li Ll

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...

llGiveMoney

llGiveMoney(key destination, integer amount) Transfers amount of Linden dollars from the script owner to destination. Requires the PERMISSION_DEBIT run-time permission. destination can only be an avatar, not an object or a group. The recipient does not need to be in...

llInstantMessage

llInstantMessage(key user, string message) Sends an IM to user containing message and delays the script for 2 seconds. This delay exists to prevent IM spamming. To message the object owner, llOwnerSay(messsage) is the best option as it does not delay the script. To...

llKey2Name

string llKey2Name(key id)  If the object or agent identified by the key id is in the same simulator as the object containing the script, this function returns their name. Otherwise, an empty string (“”) is returned. This can be misleading, because it...

llOwnerSay

llOwnerSay(string message) Says message to only the owner of the object running the script if the owner has been within the object’s simulator since logging into Second Life, regardless of where they may be in-world. Note: When the owner is not in the same sim...

llPointAt

llPointAt(vector pos) Depreciated in LSL. never implemented in OSSL. Makes the object owner’s avatar point towards position pos. Use llStopPointAt to stop pointing. Note: This function is still broken as of 1.6. It...