IRC library for Lua. Contribute to JakobOvrum/LuaIRC development by creating an account on GitHub.
github.com
Должна работать на муне.
Луашники в папку moonloader/lib/irc и дальше по документации идёшь. Код ниже не тестировался.
Lua:
require "irc"local s = irc.new{nick ="example"}
s:hook("OnChat",function(user, channel, message)print(("[%s] %s: %s"):format(channel, user.nick, message))end)
s:connect(--[[ link or link, port or ip, port ]])
s:join("#example")-- channel name-- в mainwhiletruedowait(0)
s:think()end
IRC library for Lua. Contribute to JakobOvrum/LuaIRC development by creating an account on GitHub.
github.com
Должна работать на муне.
Луашники в папку moonloader/lib/irc и дальше по документации идёшь. Код ниже не тестировался.
Lua:
require "irc"local s = irc.new{nick ="example"}
s:hook("OnChat",function(user, channel, message)print(("[%s] %s: %s"):format(channel, user.nick, message))end)
s:connect(--[[ link or link, port or ip, port ]])
s:join("#example")-- channel name-- в mainwhiletruedowait(0)
s:think()end