Lua / Love2D /LÖVE脚本没有收到IRC消息

时间:2018-03-22 22:58:53

标签: lua irc twitch love2d

我一直在尝试使用Love2D连接到Twitch聊天IRC。它设法连接(if connect == 1 then)。我只是不确定如何接收发送给我的任何IRC消息(love.update())。

function love.load()
    oauth = "oauth:someoauthhere"
    user = "botname"
    channel = "channeltojoin"

    love.graphics.setFont(love.graphics.newFont(32))

    socket = require("socket")
    irc = socket.tcp()
    connect = irc:connect("irc.chat.twitch.tv", 6667)
    if connect == 1 then -- MAKES IT PAST THIS
        irc_messages = {}
        irc:send("PASS " .. oauth)
        irc:send("USER " .. user)
        irc:send("JOIN #" .. channel)
    end
end

function update(dt)
    line, err = irc:receive() --> Returns nothing
    if line then
        table.insert(irc_messages, line)
    end
end

function love.draw()
    if not next(irc_messages) == nil then
        love.graphics.printf(table.concat(irc_messages, "\n"), 0, 0)
    end
end

1 个答案:

答案 0 :(得分:1)

我花了很长时间搜索后找到了解决方案。 而不是这个:
apipie.rb
我需要这个:
config.translate = false