aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
-rw-r--r--LuaSL/src/constants.lsl24
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";
21rotation ZERO_ROTATION = <0.0, 0.0, 0.0, 1.0>; 21rotation ZERO_ROTATION = <0.0, 0.0, 0.0, 1.0>;
22vector ZERO_VECTOR = <0.0, 0.0, 0.0>; 22vector ZERO_VECTOR = <0.0, 0.0, 0.0>;
23 23
24// Functions.
25
26vector llGetPos(){}
27rotation llGetRot(){}
28string llGetObjectDesc(){}
29 llSetObjectDesc(string text){}
30
31rotation llEuler2Rot(vector vec){}
32
33
34string llGetSubString(string text, integer start, integer end){}
35list llParseString2List(string in, list l, list l1){}
36
37integer llList2Integer(list l, integer index){}
38string llList2String(list l, integer index){}
39list llCSV2List(string text){}
40
41key llGetKey(){}
42
43 llSay(integer channel, string text){}
44 llOwnerSay(string text){}
45
46 llMessageLinked(integer link, integer num, string text, key aKey){}
47