diff options
Diffstat (limited to 'OpenSim/Region/ScriptEngine/LSOEngine/LSO/LSO_Enums.cs')
-rw-r--r-- | OpenSim/Region/ScriptEngine/LSOEngine/LSO/LSO_Enums.cs | 564 |
1 files changed, 0 insertions, 564 deletions
diff --git a/OpenSim/Region/ScriptEngine/LSOEngine/LSO/LSO_Enums.cs b/OpenSim/Region/ScriptEngine/LSOEngine/LSO/LSO_Enums.cs deleted file mode 100644 index c721267..0000000 --- a/OpenSim/Region/ScriptEngine/LSOEngine/LSO/LSO_Enums.cs +++ /dev/null | |||
@@ -1,564 +0,0 @@ | |||
1 | /* | ||
2 | * Copyright (c) Contributors, http://opensimulator.org/ | ||
3 | * See CONTRIBUTORS.TXT for a full list of copyright holders. | ||
4 | * | ||
5 | * Redistribution and use in source and binary forms, with or without | ||
6 | * modification, are permitted provided that the following conditions are met: | ||
7 | * * Redistributions of source code must retain the above copyright | ||
8 | * notice, this list of conditions and the following disclaimer. | ||
9 | * * Redistributions in binary form must reproduce the above copyright | ||
10 | * notice, this list of conditions and the following disclaimer in the | ||
11 | * documentation and/or other materials provided with the distribution. | ||
12 | * * Neither the name of the OpenSim Project nor the | ||
13 | * names of its contributors may be used to endorse or promote products | ||
14 | * derived from this software without specific prior written permission. | ||
15 | * | ||
16 | * THIS SOFTWARE IS PROVIDED BY THE DEVELOPERS ``AS IS AND ANY | ||
17 | * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED | ||
18 | * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE | ||
19 | * DISCLAIMED. IN NO EVENT SHALL THE CONTRIBUTORS BE LIABLE FOR ANY | ||
20 | * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES | ||
21 | * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; | ||
22 | * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND | ||
23 | * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | ||
24 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS | ||
25 | * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | ||
26 | */ | ||
27 | |||
28 | /* Original code: Tedd Hansen */ | ||
29 | using System; | ||
30 | |||
31 | namespace OpenSim.Region.ScriptEngine.LSOEngine.LSO | ||
32 | { | ||
33 | public static class LSO_Enums | ||
34 | { | ||
35 | //public System.Collections.Generic.Dictionary<Byte, Type> OpCode_Add_Types; | ||
36 | |||
37 | //LSO_Enums() | ||
38 | //{ | ||
39 | // OpCode_Add_Types.Add(51, typeof(String)); | ||
40 | // OpCode_Add_Types.Add(17, typeof(UInt32)); | ||
41 | //} | ||
42 | |||
43 | [Serializable] | ||
44 | public enum OpCode_Add_TypeDefs | ||
45 | { | ||
46 | String = 51, | ||
47 | UInt32 = 17 | ||
48 | } | ||
49 | |||
50 | [Serializable] | ||
51 | public enum OpCode_Cast_TypeDefs | ||
52 | { | ||
53 | String = 19 | ||
54 | } | ||
55 | |||
56 | [Serializable] | ||
57 | public struct Key | ||
58 | { | ||
59 | public string KeyString; | ||
60 | } | ||
61 | |||
62 | [Serializable] | ||
63 | public struct Vector | ||
64 | { | ||
65 | public UInt32 Z; | ||
66 | public UInt32 Y; | ||
67 | public UInt32 X; | ||
68 | } | ||
69 | |||
70 | [Serializable] | ||
71 | public struct Rotation | ||
72 | { | ||
73 | public UInt32 S; | ||
74 | public UInt32 Z; | ||
75 | public UInt32 Y; | ||
76 | public UInt32 X; | ||
77 | } | ||
78 | |||
79 | [Serializable] | ||
80 | public enum Variable_Type_Codes | ||
81 | { | ||
82 | Void = 0, | ||
83 | Integer = 1, | ||
84 | Float = 2, | ||
85 | String = 3, | ||
86 | Key = 4, | ||
87 | Vector = 5, | ||
88 | Rotation = 6, | ||
89 | List = 7, | ||
90 | Null = 8 | ||
91 | } | ||
92 | |||
93 | [Serializable] | ||
94 | public enum Event_Mask_Values | ||
95 | { | ||
96 | state_entry = 0, | ||
97 | state_exit = 1, | ||
98 | touch_start = 2, | ||
99 | touch = 3, | ||
100 | touch_end = 4, | ||
101 | collision_start = 5, | ||
102 | collision = 6, | ||
103 | collision_end = 7, | ||
104 | land_collision_start = 8, | ||
105 | land_collision = 9, | ||
106 | land_collision_end = 10, | ||
107 | timer = 11, | ||
108 | listen = 12, | ||
109 | on_rez = 13, | ||
110 | sensor = 14, | ||
111 | no_sensor = 15, | ||
112 | control = 16, | ||
113 | money = 17, | ||
114 | email = 18, | ||
115 | at_target = 19, | ||
116 | not_at_target = 20, | ||
117 | at_rot_target = 21, | ||
118 | not_at_rot_target = 22, | ||
119 | run_time_permissions = 23, | ||
120 | changed = 24, | ||
121 | attach = 25, | ||
122 | dataserver = 26, | ||
123 | link_message = 27, | ||
124 | moving_start = 28, | ||
125 | moving_end = 29, | ||
126 | object_rez = 30, | ||
127 | remote_data = 31, | ||
128 | http_response = 32 | ||
129 | } | ||
130 | |||
131 | [Serializable] | ||
132 | public enum Operation_Table | ||
133 | { | ||
134 | NOOP = 0x0, | ||
135 | POP = 0x1, | ||
136 | POPS = 0x2, | ||
137 | POPL = 0x3, | ||
138 | POPV = 0x4, | ||
139 | POPQ = 0x5, | ||
140 | POPARG = 0x6, | ||
141 | POPIP = 0x7, | ||
142 | POPBP = 0x8, | ||
143 | POPSP = 0x9, | ||
144 | POPSLR = 0xa, | ||
145 | DUP = 0x20, | ||
146 | DUPS = 0x21, | ||
147 | DUPL = 0x22, | ||
148 | DUPV = 0x23, | ||
149 | DUPQ = 0x24, | ||
150 | STORE = 0x30, | ||
151 | STORES = 0x31, | ||
152 | STOREL = 0x32, | ||
153 | STOREV = 0x33, | ||
154 | STOREQ = 0x34, | ||
155 | STOREG = 0x35, | ||
156 | STOREGS = 0x36, | ||
157 | STOREGL = 0x37, | ||
158 | STOREGV = 0x38, | ||
159 | STOREGQ = 0x39, | ||
160 | LOADP = 0x3a, | ||
161 | LOADSP = 0x3b, | ||
162 | LOADLP = 0x3c, | ||
163 | LOADVP = 0x3d, | ||
164 | LOADQP = 0x3e, | ||
165 | LOADGP = 0x3f, | ||
166 | LOADGSP = 0x40, | ||
167 | LOADGLP = 0x41, | ||
168 | LOADGVP = 0x42, | ||
169 | LOADGQP = 0x43, | ||
170 | PUSH = 0x50, | ||
171 | PUSHS = 0x51, | ||
172 | PUSHL = 0x52, | ||
173 | PUSHV = 0x53, | ||
174 | PUSHQ = 0x54, | ||
175 | PUSHG = 0x55, | ||
176 | PUSHGS = 0x56, | ||
177 | PUSHGL = 0x57, | ||
178 | PUSHGV = 0x58, | ||
179 | PUSHGQ = 0x59, | ||
180 | PUSHIP = 0x5a, | ||
181 | PUSHBP = 0x5b, | ||
182 | PUSHSP = 0x5c, | ||
183 | PUSHARGB = 0x5d, | ||
184 | PUSHARGI = 0x5e, | ||
185 | PUSHARGF = 0x5f, | ||
186 | PUSHARGS = 0x60, | ||
187 | PUSHARGV = 0x61, | ||
188 | PUSHARGQ = 0x62, | ||
189 | PUSHE = 0x63, | ||
190 | PUSHEV = 0x64, | ||
191 | PUSHEQ = 0x65, | ||
192 | PUSHARGE = 0x66, | ||
193 | ADD = 0x70, | ||
194 | SUB = 0x71, | ||
195 | MUL = 0x72, | ||
196 | DIV = 0x73, | ||
197 | MOD = 0x74, | ||
198 | EQ = 0x75, | ||
199 | NEQ = 0x76, | ||
200 | LEQ = 0x77, | ||
201 | GEQ = 0x78, | ||
202 | LESS = 0x79, | ||
203 | GREATER = 0x7a, | ||
204 | BITAND = 0x7b, | ||
205 | BITOR = 0x7c, | ||
206 | BITXOR = 0x7d, | ||
207 | BOOLAND = 0x7e, | ||
208 | BOOLOR = 0x7f, | ||
209 | NEG = 0x80, | ||
210 | BITNOT = 0x81, | ||
211 | BOOLNOT = 0x82, | ||
212 | JUMP = 0x90, | ||
213 | JUMPIF = 0x91, | ||
214 | JUMPNIF = 0x92, | ||
215 | STATE = 0x93, | ||
216 | CALL = 0x94, | ||
217 | RETURN = 0x95, | ||
218 | CAST = 0xa0, | ||
219 | STACKTOS = 0xb0, | ||
220 | STACKTOL = 0xb1, | ||
221 | PRINT = 0xc0, | ||
222 | CALLLIB = 0xd0, | ||
223 | CALLLIB_TWO_BYTE = 0xd1, | ||
224 | SHL = 0xe0, | ||
225 | SHR = 0xe1 | ||
226 | } | ||
227 | |||
228 | [Serializable] | ||
229 | public enum BuiltIn_Functions | ||
230 | { | ||
231 | llSin = 0, | ||
232 | llCos = 1, | ||
233 | llTan = 2, | ||
234 | llAtan2 = 3, | ||
235 | llSqrt = 4, | ||
236 | llPow = 5, | ||
237 | llAbs = 6, | ||
238 | llFabs = 7, | ||
239 | llFrand = 8, | ||
240 | llFloor = 9, | ||
241 | llCeil = 10, | ||
242 | llRound = 11, | ||
243 | llVecMag = 12, | ||
244 | llVecNorm = 13, | ||
245 | llVecDist = 14, | ||
246 | llRot2Euler = 15, | ||
247 | llEuler2Rot = 16, | ||
248 | llAxes2Rot = 17, | ||
249 | llRot2Fwd = 18, | ||
250 | llRot2Left = 19, | ||
251 | llRot2Up = 20, | ||
252 | llRotBetween = 21, | ||
253 | llWhisper = 22, | ||
254 | llSay = 23, | ||
255 | llShout = 24, | ||
256 | llListen = 25, | ||
257 | llListenControl = 26, | ||
258 | llListenRemove = 27, | ||
259 | llSensor = 28, | ||
260 | llSensorRepeat = 29, | ||
261 | llSensorRemove = 30, | ||
262 | llDetectedName = 31, | ||
263 | llDetectedKey = 32, | ||
264 | llDetectedOwner = 33, | ||
265 | llDetectedType = 34, | ||
266 | llDetectedPos = 35, | ||
267 | llDetectedVel = 36, | ||
268 | llDetectedGrab = 37, | ||
269 | llDetectedRot = 38, | ||
270 | llDetectedGroup = 39, | ||
271 | llDetectedLinkNumber = 40, | ||
272 | llDie = 41, | ||
273 | llGround = 42, | ||
274 | llCloud = 43, | ||
275 | llWind = 44, | ||
276 | llSetStatus = 45, | ||
277 | llGetStatus = 46, | ||
278 | llSetScale = 47, | ||
279 | llGetScale = 48, | ||
280 | llSetColor = 49, | ||
281 | llGetAlpha = 50, | ||
282 | llSetAlpha = 51, | ||
283 | llGetColor = 52, | ||
284 | llSetTexture = 53, | ||
285 | llScaleTexture = 54, | ||
286 | llOffsetTexture = 55, | ||
287 | llRotateTexture = 56, | ||
288 | llGetTexture = 57, | ||
289 | llSetPos = 58, | ||
290 | llGetPos = 59, | ||
291 | llGetLocalPos = 60, | ||
292 | llSetRot = 61, | ||
293 | llGetRot = 62, | ||
294 | llGetLocalRot = 63, | ||
295 | llSetForce = 64, | ||
296 | llGetForce = 65, | ||
297 | llTarget = 66, | ||
298 | llTargetRemove = 67, | ||
299 | llRotTarget = 68, | ||
300 | llRotTargetRemove = 69, | ||
301 | llMoveToTarget = 70, | ||
302 | llStopMoveToTarget = 71, | ||
303 | llApplyImpulse = 72, | ||
304 | llApplyRotationalImpulse = 73, | ||
305 | llSetTorque = 74, | ||
306 | llGetTorque = 75, | ||
307 | llSetForceAndTorque = 76, | ||
308 | llGetVel = 77, | ||
309 | llGetAccel = 78, | ||
310 | llGetOmega = 79, | ||
311 | llGetTimeOfDay = 80, | ||
312 | llGetWallclock = 81, | ||
313 | llGetTime = 82, | ||
314 | llResetTime = 83, | ||
315 | llGetAndResetTime = 84, | ||
316 | llSound = 85, | ||
317 | llPlaySound = 86, | ||
318 | llLoopSound = 87, | ||
319 | llLoopSoundMaster = 88, | ||
320 | llLoopSoundSlave = 89, | ||
321 | llPlaySoundSlave = 90, | ||
322 | llTriggerSound = 91, | ||
323 | llStopSound = 92, | ||
324 | llPreloadSound = 93, | ||
325 | llGetSubString = 94, | ||
326 | llDeleteSubString = 95, | ||
327 | llInsertString = 96, | ||
328 | llToUpper = 97, | ||
329 | llToLower = 98, | ||
330 | llGiveMoney = 99, | ||
331 | llMakeExplosion = 100, | ||
332 | llMakeFountain = 101, | ||
333 | llMakeSmoke = 102, | ||
334 | llMakeFire = 103, | ||
335 | llRezObject = 104, | ||
336 | llLookAt = 105, | ||
337 | llStopLookAt = 106, | ||
338 | llSetTimerEvent = 107, | ||
339 | llSleep = 108, | ||
340 | llGetMass = 109, | ||
341 | llCollisionFilter = 110, | ||
342 | llTakeControls = 111, | ||
343 | llReleaseControls = 112, | ||
344 | llAttachToAvatar = 113, | ||
345 | llDetachFromAvatar = 114, | ||
346 | llTakeCamera = 115, | ||
347 | llReleaseCamera = 116, | ||
348 | llGetOwner = 117, | ||
349 | llInstantMessage = 118, | ||
350 | llEmail = 119, | ||
351 | llGetNextEmail = 120, | ||
352 | llGetKey = 121, | ||
353 | llSetBuoyancy = 122, | ||
354 | llSetHoverHeight = 123, | ||
355 | llStopHover = 124, | ||
356 | llMinEventDelay = 125, | ||
357 | llSoundPreload = 126, | ||
358 | llRotLookAt = 127, | ||
359 | llStringLength = 128, | ||
360 | llStartAnimation = 129, | ||
361 | llStopAnimation = 130, | ||
362 | llPointAt = 131, | ||
363 | llStopPointAt = 132, | ||
364 | llTargetOmega = 133, | ||
365 | llGetStartParameter = 134, | ||
366 | llGodLikeRezObject = 135, | ||
367 | llRequestPermissions = 136, | ||
368 | llGetPermissionsKey = 137, | ||
369 | llGetPermissions = 138, | ||
370 | llGetLinkNumber = 139, | ||
371 | llSetLinkColor = 140, | ||
372 | llCreateLink = 141, | ||
373 | llBreakLink = 142, | ||
374 | llBreakAllLinks = 143, | ||
375 | llGetLinkKey = 144, | ||
376 | llGetLinkName = 145, | ||
377 | llGetInventoryNumber = 146, | ||
378 | llGetInventoryName = 147, | ||
379 | llSetScriptState = 148, | ||
380 | llGetEnergy = 149, | ||
381 | llGiveInventory = 150, | ||
382 | llRemoveInventory = 151, | ||
383 | llSetText = 152, | ||
384 | llWater = 153, | ||
385 | llPassTouches = 154, | ||
386 | llRequestAgentData = 155, | ||
387 | llRequestInventoryData = 156, | ||
388 | llSetDamage = 157, | ||
389 | llTeleportAgentHome = 158, | ||
390 | llModifyLand = 159, | ||
391 | llCollisionSound = 160, | ||
392 | llCollisionSprite = 161, | ||
393 | llGetAnimation = 162, | ||
394 | llResetScript = 163, | ||
395 | llMessageLinked = 164, | ||
396 | llPushObject = 165, | ||
397 | llPassCollisions = 166, | ||
398 | llGetScriptName = 167, | ||
399 | llGetNumberOfSides = 168, | ||
400 | llAxisAngle2Rot = 169, | ||
401 | llRot2Axis = 170, | ||
402 | llRot2Angle = 171, | ||
403 | llAcos = 172, | ||
404 | llAsin = 173, | ||
405 | llAngleBetween = 174, | ||
406 | llGetInventoryKey = 175, | ||
407 | llAllowInventoryDrop = 176, | ||
408 | llGetSunDirection = 177, | ||
409 | llGetTextureOffset = 178, | ||
410 | llGetTextureScale = 179, | ||
411 | llGetTextureRot = 180, | ||
412 | llSubStringIndex = 181, | ||
413 | llGetOwnerKey = 182, | ||
414 | llGetCenterOfMass = 183, | ||
415 | llListSort = 184, | ||
416 | llGetListLength = 185, | ||
417 | llList2Integer = 186, | ||
418 | llList2Float = 187, | ||
419 | llList2String = 188, | ||
420 | llList2Key = 189, | ||
421 | llList2Vector = 190, | ||
422 | llList2Rot = 191, | ||
423 | llList2List = 192, | ||
424 | llDeleteSubList = 193, | ||
425 | llGetListEntryType = 194, | ||
426 | llList2CSV = 195, | ||
427 | llCSV2List = 196, | ||
428 | llListRandomize = 197, | ||
429 | llList2ListStrided = 198, | ||
430 | llGetRegionCorner = 199, | ||
431 | llListInsertList = 200, | ||
432 | llListFindList = 201, | ||
433 | llGetObjectName = 202, | ||
434 | llSetObjectName = 203, | ||
435 | llGetDate = 204, | ||
436 | llEdgeOfWorld = 205, | ||
437 | llGetAgentInfo = 206, | ||
438 | llAdjustSoundVolume = 207, | ||
439 | llSetSoundQueueing = 208, | ||
440 | llSetSoundRadius = 209, | ||
441 | llKey2Name = 210, | ||
442 | llSetTextureAnim = 211, | ||
443 | llTriggerSoundLimited = 212, | ||
444 | llEjectFromLand = 213, | ||
445 | llParseString2List = 214, | ||
446 | llOverMyLand = 215, | ||
447 | llGetLandOwnerAt = 216, | ||
448 | llGetNotecardLine = 217, | ||
449 | llGetAgentSize = 218, | ||
450 | llSameGroup = 219, | ||
451 | llUnSit = 220, | ||
452 | llGroundSlope = 221, | ||
453 | llGroundNormal = 222, | ||
454 | llGroundContour = 223, | ||
455 | llGetAttached = 224, | ||
456 | llGetFreeMemory = 225, | ||
457 | llGetRegionName = 226, | ||
458 | llGetRegionTimeDilation = 227, | ||
459 | llGetRegionFPS = 228, | ||
460 | llParticleSystem = 229, | ||
461 | llGroundRepel = 230, | ||
462 | llGiveInventoryList = 231, | ||
463 | llSetVehicleType = 232, | ||
464 | llSetVehicleFloatParam = 233, | ||
465 | llSetVehicleVectorParam = 234, | ||
466 | llSetVehicleRotationParam = 235, | ||
467 | llSetVehicleFlags = 236, | ||
468 | llRemoveVehicleFlags = 237, | ||
469 | llSitTarget = 238, | ||
470 | llAvatarOnSitTarget = 239, | ||
471 | llAddToLandPassList = 240, | ||
472 | llSetTouchText = 241, | ||
473 | llSetSitText = 242, | ||
474 | llSetCameraEyeOffset = 243, | ||
475 | llSetCameraAtOffset = 244, | ||
476 | llDumpList2String = 245, | ||
477 | llScriptDanger = 246, | ||
478 | llDialog = 247, | ||
479 | llVolumeDetect = 248, | ||
480 | llResetOtherScript = 249, | ||
481 | llGetScriptState = 250, | ||
482 | llRemoteLoadScript = 251, | ||
483 | llSetRemoteScriptAccessPin = 252, | ||
484 | llRemoteLoadScriptPin = 253, | ||
485 | llOpenRemoteDataChannel = 254, | ||
486 | llSendRemoteData = 255, | ||
487 | llRemoteDataReply = 256, | ||
488 | llCloseRemoteDataChannel = 257, | ||
489 | llMD5String = 258, | ||
490 | llSetPrimitiveParams = 259, | ||
491 | llStringToBase64 = 260, | ||
492 | llBase64ToString = 261, | ||
493 | llXorBase64Strings = 262, | ||
494 | llRemoteDataSetRegion = 263, | ||
495 | llLog10 = 264, | ||
496 | llLog = 265, | ||
497 | llGetAnimationList = 266, | ||
498 | llSetParcelMusicURL = 267, | ||
499 | llGetRootPosition = 268, | ||
500 | llGetRootRotation = 269, | ||
501 | llGetObjectDesc = 270, | ||
502 | llSetObjectDesc = 271, | ||
503 | llGetCreator = 272, | ||
504 | llGetTimestamp = 273, | ||
505 | llSetLinkAlpha = 274, | ||
506 | llGetNumberOfPrims = 275, | ||
507 | llGetNumberOfNotecardLines = 276, | ||
508 | llGetBoundingBox = 277, | ||
509 | llGetGeometricCenter = 278, | ||
510 | llGetPrimitiveParams = 279, | ||
511 | llIntegerToBase64 = 280, | ||
512 | llBase64ToInteger = 281, | ||
513 | llGetGMTclock = 282, | ||
514 | llGetSimulatorHostname = 283, | ||
515 | llSetLocalRot = 284, | ||
516 | llParseStringKeepNulls = 285, | ||
517 | llRezAtRoot = 286, | ||
518 | llGetObjectPermMask = 287, | ||
519 | llSetObjectPermMask = 288, | ||
520 | llGetInventoryPermMask = 289, | ||
521 | llSetInventoryPermMask = 290, | ||
522 | llGetInventoryCreator = 291, | ||
523 | llOwnerSay = 292, | ||
524 | llRequestSimulatorData = 293, | ||
525 | llForceMouselook = 294, | ||
526 | llGetObjectMass = 295, | ||
527 | llListReplaceList = 296, | ||
528 | llLoadURL = 297, | ||
529 | llParcelMediaCommandList = 298, | ||
530 | llParcelMediaQuery = 299, | ||
531 | llModPow = 300, | ||
532 | llGetInventoryType = 301, | ||
533 | llSetPayPrice = 302, | ||
534 | llGetCameraPos = 303, | ||
535 | llGetCameraRot = 304, | ||
536 | llSetPrimURL = 305, | ||
537 | llRefreshPrimURL = 306, | ||
538 | llEscapeURL = 307, | ||
539 | llUnescapeURL = 308, | ||
540 | llMapDestination = 309, | ||
541 | llAddToLandBanList = 310, | ||
542 | llRemoveFromLandPassList = 311, | ||
543 | llRemoveFromLandBanList = 312, | ||
544 | llSetCameraParams = 313, | ||
545 | llClearCameraParams = 314, | ||
546 | llListStatistics = 315, | ||
547 | llGetUnixTime = 316, | ||
548 | llGetParcelFlags = 317, | ||
549 | llGetRegionFlags = 318, | ||
550 | llXorBase64StringsCorrect = 319, | ||
551 | llHTTPRequest = 320, | ||
552 | llResetLandBanList = 321, | ||
553 | llResetLandPassList = 322, | ||
554 | llGetParcelPrimCount = 323, | ||
555 | llGetParcelPrimOwners = 324, | ||
556 | llGetObjectPrimCount = 325, | ||
557 | llGetParcelMaxPrims = 326, | ||
558 | llGetParcelDetails = 327, | ||
559 | llSetLinkTexture = 328, | ||
560 | llStringTrim = 329, | ||
561 | llGetObjectDetails = 330 | ||
562 | } | ||
563 | } | ||
564 | } | ||