diff options
Diffstat (limited to '')
-rw-r--r-- | LuaSL/src/constants.lsl | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/LuaSL/src/constants.lsl b/LuaSL/src/constants.lsl index 3b2f5a8..2c17940 100644 --- a/LuaSL/src/constants.lsl +++ b/LuaSL/src/constants.lsl | |||
@@ -21,3 +21,27 @@ string EOF = "\n\n\n"; | |||
21 | rotation ZERO_ROTATION = <0.0, 0.0, 0.0, 1.0>; | 21 | rotation ZERO_ROTATION = <0.0, 0.0, 0.0, 1.0>; |
22 | vector ZERO_VECTOR = <0.0, 0.0, 0.0>; | 22 | vector ZERO_VECTOR = <0.0, 0.0, 0.0>; |
23 | 23 | ||
24 | // Functions. | ||
25 | |||
26 | vector llGetPos(){} | ||
27 | rotation llGetRot(){} | ||
28 | string llGetObjectDesc(){} | ||
29 | llSetObjectDesc(string text){} | ||
30 | |||
31 | rotation llEuler2Rot(vector vec){} | ||
32 | |||
33 | |||
34 | string llGetSubString(string text, integer start, integer end){} | ||
35 | list llParseString2List(string in, list l, list l1){} | ||
36 | |||
37 | integer llList2Integer(list l, integer index){} | ||
38 | string llList2String(list l, integer index){} | ||
39 | list llCSV2List(string text){} | ||
40 | |||
41 | key llGetKey(){} | ||
42 | |||
43 | llSay(integer channel, string text){} | ||
44 | llOwnerSay(string text){} | ||
45 | |||
46 | llMessageLinked(integer link, integer num, string text, key aKey){} | ||
47 | |||