aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/LuaSL/src/LSL.lua
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--LuaSL/src/LSL.lua9
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;
288function LSL.llDialog(--[[key]] avatar, --[[string]] caption, --[[list]] arseBackwardsMenu,--[[integer]] channel) end; 288function LSL.llDialog(--[[key]] avatar, --[[string]] caption, --[[list]] arseBackwardsMenu,--[[integer]] channel) end;
289function --[[integer]] LSL.llListen(--[[integer]] channel, --[[string]] name, --[[key]] id, --[[string]] msg) return 0 end; 289function --[[integer]] LSL.llListen(--[[integer]] channel, --[[string]] name, --[[key]] id, --[[string]] msg) return 0 end;
290function LSL.llListenRemove(--[[integer]] handle) end; 290function LSL.llListenRemove(--[[integer]] handle) end;
291function LSL.llOwnerSay(--[[string]] text) end; 291function LSL.llOwnerSay(--[[string]] text) print("Owner say: " .. text); end;
292function LSL.llSay(--[[integer]] channel, --[[string]] text) end; 292function LSL.llSay(--[[integer]] channel, --[[string]] text) print("Channel say" .. channel .. ": " .. text); end;
293function LSL.llShout(--[[integer]] channel, --[[string]] text) end; 293function LSL.llShout(--[[integer]] channel, --[[string]] text) print("Channel shout" .. channel .. ": " .. text); end;
294function LSL.llWhisper(--[[integer]] channel, --[[string]] text) end; 294function LSL.llWhisper(--[[integer]] channel, --[[string]] text) print("Channel whisper" .. channel .. ": " .. text); end;
295 295
296function LSL.llMessageLinked(--[[integer]] link,--[[integer]] num, --[[string]] text, --[[key]] aKey) end; 296function 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;
344end 344end
345 345
346
347return LSL; 346return LSL;
348 347