mcbot/mcbot_shell.lua
author Mikael Berthe <mikael@lilotux.net>
Sun, 25 Nov 2012 19:29:32 +0100
changeset 65 2cefbe9f3ac6
parent 1 cca972635e5e
child 66 d9c00a9fe9d5
permissions -rwxr-xr-x
shortenurl: cosmetical change

#! /usr/bin/env lua

require "mcbot_engine"

local function mcbot_mainloop (BotName)
    local data = { ["nickname"] = BotName }
    while true do
        local l = io.stdin:read'*l'
        if l == nil then break end
        local res, errmsg = process(l, data, false)
        if res then
            print(res)
        else
            if errmsg then print(errmsg) end
        end
    end
end

mcbot_mainloop("mcbot")