aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/LuaSL/src/LSL.lua
diff options
context:
space:
mode:
Diffstat (limited to 'LuaSL/src/LSL.lua')
-rw-r--r--LuaSL/src/LSL.lua6
1 files changed, 6 insertions, 0 deletions
diff --git a/LuaSL/src/LSL.lua b/LuaSL/src/LSL.lua
index be1c7fd..5f103fc 100644
--- a/LuaSL/src/LSL.lua
+++ b/LuaSL/src/LSL.lua
@@ -443,6 +443,12 @@ newFunc("float", "llSleep", "float seconds") -- Faked return type, it actually
443function --[[integer]] LSL.llGetInventoryType(--[[string]] name) return LSL.INVENTORY_SCRIPT end; 443function --[[integer]] LSL.llGetInventoryType(--[[string]] name) return LSL.INVENTORY_SCRIPT end;
444 444
445 445
446-- LSL collision / detect / sensor functions
447function --[[key]] LSL.llDetectedKey(--[[integer]] index)
448 return detectedKeys[index + 1]
449end
450
451
446-- LSL list functions. 452-- LSL list functions.
447 453
448--function --[[list]] LSL.llCSV2List(--[[string]] text) return {} end; 454--function --[[list]] LSL.llCSV2List(--[[string]] text) return {} end;