mcbot/mcbot_shell.lua
author Mikael Berthe <mikael@lilotux.net>
Sun, 23 Oct 2011 13:54:17 +0200
changeset 54 be04d7241ef6
parent 1 cca972635e5e
child 66 d9c00a9fe9d5
permissions -rwxr-xr-x
New command: littre

#! /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")