From e1a6e29164faa6a7a1bff9aa748c54ee5fc7fe87 Mon Sep 17 00:00:00 2001 From: David Walter Seikel Date: Sat, 21 Jan 2012 16:08:09 +1000 Subject: Add some function calls to the LSL constants script. --- LuaSL/src/constants.lsl | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) 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"; rotation ZERO_ROTATION = <0.0, 0.0, 0.0, 1.0>; vector ZERO_VECTOR = <0.0, 0.0, 0.0>; +// Functions. + +vector llGetPos(){} +rotation llGetRot(){} +string llGetObjectDesc(){} + llSetObjectDesc(string text){} + +rotation llEuler2Rot(vector vec){} + + +string llGetSubString(string text, integer start, integer end){} +list llParseString2List(string in, list l, list l1){} + +integer llList2Integer(list l, integer index){} +string llList2String(list l, integer index){} +list llCSV2List(string text){} + +key llGetKey(){} + + llSay(integer channel, string text){} + llOwnerSay(string text){} + + llMessageLinked(integer link, integer num, string text, key aKey){} + -- cgit v1.1