aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/linden/indra/llcommon/lllslconstants.h
diff options
context:
space:
mode:
authorMcCabe Maxsted2010-08-16 20:48:04 -0700
committerMcCabe Maxsted2010-08-26 11:22:07 -0700
commit0f7e19f3e885ab97a98ab219329a7e0c2da5a20b (patch)
tree69a43ff5968f4c20d395a626114e2435e3575c59 /linden/indra/llcommon/lllslconstants.h
parentApplied patch from #405: show avatar age in profile, Ansariel Hiller ported t... (diff)
downloadmeta-impy-0f7e19f3e885ab97a98ab219329a7e0c2da5a20b.zip
meta-impy-0f7e19f3e885ab97a98ab219329a7e0c2da5a20b.tar.gz
meta-impy-0f7e19f3e885ab97a98ab219329a7e0c2da5a20b.tar.bz2
meta-impy-0f7e19f3e885ab97a98ab219329a7e0c2da5a20b.tar.xz
Fixed some missing constants in the script editor and added llGetLinkNumberOfSides
Diffstat (limited to '')
-rw-r--r--linden/indra/llcommon/lllslconstants.h17
1 files changed, 17 insertions, 0 deletions
diff --git a/linden/indra/llcommon/lllslconstants.h b/linden/indra/llcommon/lllslconstants.h
index 7cd854f..fc5363f 100644
--- a/linden/indra/llcommon/lllslconstants.h
+++ b/linden/indra/llcommon/lllslconstants.h
@@ -48,6 +48,7 @@ const U32 AGENT_TYPING = 0x0200;
48const U32 AGENT_CROUCHING = 0x0400; 48const U32 AGENT_CROUCHING = 0x0400;
49const U32 AGENT_BUSY = 0x0800; 49const U32 AGENT_BUSY = 0x0800;
50const U32 AGENT_ALWAYS_RUN = 0x1000; 50const U32 AGENT_ALWAYS_RUN = 0x1000;
51const U32 AGENT_AUTOPILOT = 0x2000;
51 52
52const S32 LSL_REMOTE_DATA_CHANNEL = 1; 53const S32 LSL_REMOTE_DATA_CHANNEL = 1;
53const S32 LSL_REMOTE_DATA_REQUEST = 2; 54const S32 LSL_REMOTE_DATA_REQUEST = 2;
@@ -72,6 +73,9 @@ const S32 LSL_PRIM_TEXGEN = 22;
72const S32 LSL_PRIM_POINT_LIGHT = 23; 73const S32 LSL_PRIM_POINT_LIGHT = 23;
73const S32 LSL_PRIM_CAST_SHADOWS = 24; 74const S32 LSL_PRIM_CAST_SHADOWS = 24;
74const S32 LSL_PRIM_GLOW = 25; 75const S32 LSL_PRIM_GLOW = 25;
76const S32 LSL_PRIM_TEXT = 26;
77const S32 LSL_PRIM_NAME = 27;
78const S32 LSL_PRIM_DESC = 28;
75 79
76const S32 LSL_PRIM_TYPE_BOX = 0; 80const S32 LSL_PRIM_TYPE_BOX = 0;
77const S32 LSL_PRIM_TYPE_CYLINDER= 1; 81const S32 LSL_PRIM_TYPE_CYLINDER= 1;
@@ -201,5 +205,18 @@ const U32 CHANGED_OWNER = 0x80;
201const U32 CHANGED_REGION = 0x100; 205const U32 CHANGED_REGION = 0x100;
202const U32 CHANGED_TELEPORT = 0x200; 206const U32 CHANGED_TELEPORT = 0x200;
203const U32 CHANGED_REGION_START = 0x400; 207const U32 CHANGED_REGION_START = 0x400;
208const U32 CHANGED_MEDIA = 0x800;
209
210// Possible error results
211const U32 LSL_STATUS_OK = 0;
212const U32 LSL_STATUS_MALFORMED_PARAMS = 1000;
213const U32 LSL_STATUS_TYPE_MISMATCH = 1001;
214const U32 LSL_STATUS_BOUNDS_ERROR = 1002;
215const U32 LSL_STATUS_NOT_FOUND = 1003;
216const U32 LSL_STATUS_NOT_SUPPORTED = 1004;
217const U32 LSL_STATUS_INTERNAL_ERROR = 1999;
218
219// Start per-function errors below, starting at 2000:
220const U32 LSL_STATUS_WHITELIST_FAILED = 2001;
204 221
205#endif 222#endif