summaryrefslogtreecommitdiff
path: root/indra/newview/scripts/lua/LLChat.lua
blob: 7db538e83780bf12527c288701f6291b38aa904e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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