minecraft-cc-tools/libs/notify.lua
2024-05-26 20:37:25 +02:00

21 lines
387 B
Lua

local net = require('libs/net')
local notify = {}
local DEFAULT_PREFIX = 'chatBox'
notify.SERVER = 'notify.com'
notify.sendChatMessage = function(message, prefix)
prefix = prefix or os.getComputerLabel() or DEFAULT_PREFIX
return net.sendQuery(notify.SERVER, {
type = 'notify-chat',
payload = {
prefix = prefix,
message = message
}
})
end
return notify