diff options
-rw-r--r-- | LuaSL/src/LSL.lua | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/LuaSL/src/LSL.lua b/LuaSL/src/LSL.lua index 9b52d8c..4916047 100644 --- a/LuaSL/src/LSL.lua +++ b/LuaSL/src/LSL.lua | |||
@@ -288,10 +288,10 @@ function LSL.llUnSit(--[[key]] avatar) end; | |||
288 | function LSL.llDialog(--[[key]] avatar, --[[string]] caption, --[[list]] arseBackwardsMenu,--[[integer]] channel) end; | 288 | function LSL.llDialog(--[[key]] avatar, --[[string]] caption, --[[list]] arseBackwardsMenu,--[[integer]] channel) end; |
289 | function --[[integer]] LSL.llListen(--[[integer]] channel, --[[string]] name, --[[key]] id, --[[string]] msg) return 0 end; | 289 | function --[[integer]] LSL.llListen(--[[integer]] channel, --[[string]] name, --[[key]] id, --[[string]] msg) return 0 end; |
290 | function LSL.llListenRemove(--[[integer]] handle) end; | 290 | function LSL.llListenRemove(--[[integer]] handle) end; |
291 | function LSL.llOwnerSay(--[[string]] text) end; | 291 | function LSL.llOwnerSay(--[[string]] text) print("Owner say: " .. text); end; |
292 | function LSL.llSay(--[[integer]] channel, --[[string]] text) end; | 292 | function LSL.llSay(--[[integer]] channel, --[[string]] text) print("Channel say" .. channel .. ": " .. text); end; |
293 | function LSL.llShout(--[[integer]] channel, --[[string]] text) end; | 293 | function LSL.llShout(--[[integer]] channel, --[[string]] text) print("Channel shout" .. channel .. ": " .. text); end; |
294 | function LSL.llWhisper(--[[integer]] channel, --[[string]] text) end; | 294 | function LSL.llWhisper(--[[integer]] channel, --[[string]] text) print("Channel whisper" .. channel .. ": " .. text); end; |
295 | 295 | ||
296 | function LSL.llMessageLinked(--[[integer]] link,--[[integer]] num, --[[string]] text, --[[key]] aKey) end; | 296 | function LSL.llMessageLinked(--[[integer]] link,--[[integer]] num, --[[string]] text, --[[key]] aKey) end; |
297 | 297 | ||
@@ -343,6 +343,5 @@ function LSL.vectorTypecast(x) | |||
343 | return x; | 343 | return x; |
344 | end | 344 | end |
345 | 345 | ||
346 | |||
347 | return LSL; | 346 | return LSL; |
348 | 347 | ||