diff options
-rw-r--r-- | LuaSL/src/LSL.lua | 6 |
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 | |||
443 | function --[[integer]] LSL.llGetInventoryType(--[[string]] name) return LSL.INVENTORY_SCRIPT end; | 443 | function --[[integer]] LSL.llGetInventoryType(--[[string]] name) return LSL.INVENTORY_SCRIPT end; |
444 | 444 | ||
445 | 445 | ||
446 | -- LSL collision / detect / sensor functions | ||
447 | function --[[key]] LSL.llDetectedKey(--[[integer]] index) | ||
448 | return detectedKeys[index + 1] | ||
449 | end | ||
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; |