aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/LuaSL/src/LSL.lua
diff options
context:
space:
mode:
authorDavid Walter Seikel2012-02-04 23:16:40 +1000
committerDavid Walter Seikel2012-02-04 23:16:40 +1000
commit2f4de629559dae7b9094e73e000b3b2c52ec1877 (patch)
treeb98b4166701a8bdcbc5d0ac5050a2fdd77e5fdaf /LuaSL/src/LSL.lua
parentChange the test script into a proper LSL script. (diff)
downloadSledjHamr-2f4de629559dae7b9094e73e000b3b2c52ec1877.zip
SledjHamr-2f4de629559dae7b9094e73e000b3b2c52ec1877.tar.gz
SledjHamr-2f4de629559dae7b9094e73e000b3b2c52ec1877.tar.bz2
SledjHamr-2f4de629559dae7b9094e73e000b3b2c52ec1877.tar.xz
Half arsed implementations of the LSL output functions.
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