aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/LuaSL/src/LSL.lua
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--LuaSL/src/LSL.lua6
1 files changed, 3 insertions, 3 deletions
diff --git a/LuaSL/src/LSL.lua b/LuaSL/src/LSL.lua
index 4916047..1b59cf3 100644
--- a/LuaSL/src/LSL.lua
+++ b/LuaSL/src/LSL.lua
@@ -289,9 +289,9 @@ function LSL.llDialog(--[[key]] avatar, --[[string]] caption, --[[list]] arseB
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) print("Owner say: " .. text); end; 291function LSL.llOwnerSay(--[[string]] text) print("Owner say: " .. text); end;
292function LSL.llSay(--[[integer]] channel, --[[string]] text) print("Channel say" .. channel .. ": " .. text); end; 292function LSL.llSay(--[[integer]] channel, --[[string]] text) print("Channel " .. channel .. " say: " .. text); end;
293function LSL.llShout(--[[integer]] channel, --[[string]] text) print("Channel shout" .. channel .. ": " .. text); end; 293function LSL.llShout(--[[integer]] channel, --[[string]] text) print("Channel " .. channel .. " shout: " .. text); end;
294function LSL.llWhisper(--[[integer]] channel, --[[string]] text) print("Channel whisper" .. channel .. ": " .. text); end; 294function LSL.llWhisper(--[[integer]] channel, --[[string]] text) print("Channel " .. channel .. " whisper: " .. 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