Added new LSL constants (keywords). OBJECT_SCRIPT_TIME, PARCEL_DETAILS_ID, etc

This commit is contained in:
Shyotl
2011-09-02 04:07:39 -05:00
parent 2d0b2a82ef
commit 5d21e676c6
8 changed files with 308 additions and 17 deletions

View File

@@ -1182,6 +1182,10 @@ OBJECT_VELOCITY
OBJECT_OWNER
OBJECT_GROUP
OBJECT_CREATOR
OBJECT_RUNNING_SCRIPT_COUNT
OBJECT_TOTAL_SCRIPT_COUNT
OBJECT_SCRIPT_MEMORY
OBJECT_SCRIPT_TIME
VEHICLE_TYPE_NONE
VEHICLE_TYPE_SLED
VEHICLE_TYPE_CAR
@@ -1478,6 +1482,8 @@ PARCEL_DETAILS_DESC
PARCEL_DETAILS_OWNER
PARCEL_DETAILS_GROUP
PARCEL_DETAILS_AREA
PARCEL_DETAILS_ID
PARCEL_DETAILS_SEE_AVATARS
STRING_TRIM_HEAD
STRING_TRIM_TAIL
STRING_TRIM

View File

@@ -162,6 +162,10 @@ OBJECT_VELOCITY Used with llGetObjectDetails to get an object's velocity.
OBJECT_OWNER Used with llGetObjectDetails to get an object's owner's key. Will be NULL_KEY if group owned.
OBJECT_GROUP Used with llGetObjectDetails to get an object's group's key.
OBJECT_CREATOR Used with llGetObjectDetails to get an object's creator's key.
OBJECT_RUNNING_SCRIPT_COUNT Used with llGetObjectDetails to get an object's velocity.
OBJECT_TOTAL_SCRIPT_COUNT Used with llGetObjectDetails to get an object's owner's key. Will be NULL_KEY if group owned.
OBJECT_SCRIPT_MEMORY Used with llGetObjectDetails to get an object's group's key.
OBJECT_SCRIPT_TIME Used with llGetObjectDetails to get an object's creator's key.
# some vehicle params
VEHICLE_TYPE_NONE
@@ -502,6 +506,8 @@ PARCEL_DETAILS_DESC Used with llGetParcelDetails to get the parcel description.
PARCEL_DETAILS_OWNER Used with llGetParcelDetails to get the parcel owner id.
PARCEL_DETAILS_GROUP Used with llGetParcelDetails to get the parcel group id.
PARCEL_DETAILS_AREA Used with llGetParcelDetails to get the parcel area in square meters.
PARCEL_DETAILS_ID Used with llGetParcelDetails to get the parcel id.
PARCEL_DETAILS_SEE_AVATARS Used with llGetParcelDetails to get the avatars visibility setting.
STRING_TRIM_HEAD Used with llStringTrim to trim leading spaces from a string.
STRING_TRIM_TAIL Used with llStringTrim to trim trailing spaces from a string.