aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorDavid Walter Seikel2012-01-21 16:08:09 +1000
committerDavid Walter Seikel2012-01-21 16:08:09 +1000
commite1a6e29164faa6a7a1bff9aa748c54ee5fc7fe87 (patch)
tree75bbae55e385b8852bd4484caf1f497b304f89e3
parentMake typecast parse. (diff)
downloadSledjHamr-e1a6e29164faa6a7a1bff9aa748c54ee5fc7fe87.zip
SledjHamr-e1a6e29164faa6a7a1bff9aa748c54ee5fc7fe87.tar.gz
SledjHamr-e1a6e29164faa6a7a1bff9aa748c54ee5fc7fe87.tar.bz2
SledjHamr-e1a6e29164faa6a7a1bff9aa748c54ee5fc7fe87.tar.xz
Add some function calls to the LSL constants script.
-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