summaryrefslogtreecommitdiff
path: root/indra/newview/scripts/lua/require/LLChat.lua
blob: 78dca765e80073ec980dcb10727d34ce16bb1337 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
local leap = require 'leap'

local LLChat = {}

function LLChat.sendNearby(msg)
    leap.send('LLChatBar', {op='sendChat', message=msg})
end

function LLChat.sendWhisper(msg)
    leap.send('LLChatBar', {op='sendChat', type='whisper', message=msg})
end

function LLChat.sendShout(msg)
    leap.send('LLChatBar', {op='sendChat', type='shout', message=msg})
end

return LLChat